Esempio n. 1
0
 public override String ToString()
 {
     try
     {
         System.IO.MemoryStream ms = new System.IO.MemoryStream();
         using (ZooKeeperNet.IO.EndianBinaryWriter writer =
                    new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8))
         {
             BinaryOutputArchive a_ =
                 new BinaryOutputArchive(writer);
             a_.StartRecord(this, string.Empty);
             a_.WriteInt(ProtocolVersion, "protocolVersion");
             a_.WriteLong(LastZxidSeen, "lastZxidSeen");
             a_.WriteInt(TimeOut, "timeOut");
             a_.WriteLong(SessionId, "sessionId");
             a_.WriteBuffer(Passwd, "passwd");
             a_.EndRecord(this, string.Empty);
             ms.Position = 0;
             return(System.Text.Encoding.UTF8.GetString(ms.ToArray()));
         }
     }
     catch (Exception ex)
     {
         log.Error(ex);
     }
     return("ERROR");
 }
Esempio n. 2
0
   public override String ToString()
   {
       try {
           System.IO.MemoryStream ms = new System.IO.MemoryStream();
           using (ZooKeeperNet.IO.EndianBinaryWriter writer =
                      new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8)){
               BinaryOutputArchive a_ =
                   new BinaryOutputArchive(writer);
               a_.StartRecord(this, string.Empty);
               a_.WriteString(Path, "path");
               a_.WriteBuffer(Data, "data");
               {
                   a_.StartVector(Acl, "acl");
                   if (Acl != null)
                   {
                       foreach (var e1 in Acl)
                       {
                           a_.WriteRecord(e1, "e1");
                       }
                   }
                   a_.EndVector(Acl, "acl");
               }
               a_.WriteInt(Flags, "flags");
               a_.EndRecord(this, string.Empty);
               ms.Position = 0;
               return(System.Text.Encoding.UTF8.GetString(ms.ToArray()));
           }
       } catch (Exception ex) {
   #if !NET_CORE
           log.Error(ex);
 #endif
       }
       return("ERROR");
   }
Esempio n. 3
0
 public override String ToString()
 {
     try {
         System.IO.MemoryStream ms = new System.IO.MemoryStream();
         using (ZooKeeperNet.IO.EndianBinaryWriter writer =
                    new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8)){
             BinaryOutputArchive a_ =
                 new BinaryOutputArchive(writer);
             a_.StartRecord(this, string.Empty);
             a_.WriteInt(Type, "type");
             a_.WriteLong(Zxid, "zxid");
             a_.WriteBuffer(Data, "data");
             {
                 a_.StartVector(Authinfo, "authinfo");
                 if (Authinfo != null)
                 {
                     foreach (var e1 in Authinfo)
                     {
                         a_.WriteRecord(e1, "e1");
                     }
                 }
                 a_.EndVector(Authinfo, "authinfo");
             }
             a_.EndRecord(this, string.Empty);
             ms.Position = 0;
             return(System.Text.Encoding.UTF8.GetString(ms.ToArray()));
         }
     } catch (Exception ex) {
         log.Error(ex);
     }
     return("ERROR");
 }
Esempio n. 4
0
 public override String ToString()
 {
     try {
         System.IO.MemoryStream ms = new System.IO.MemoryStream();
         using (ZooKeeperNet.IO.EndianBinaryWriter writer =
                    new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8)){
             BinaryOutputArchive a_ =
                 new BinaryOutputArchive(writer);
             a_.StartRecord(this, string.Empty);
             {
                 a_.StartVector(Children, "children");
                 if (Children != null)
                 {
                     foreach (var e1 in Children)
                     {
                         a_.WriteString(e1, e1);
                     }
                 }
                 a_.EndVector(Children, "children");
             }
             a_.WriteRecord(Stat, "stat");
             a_.EndRecord(this, string.Empty);
             ms.Position = 0;
             return(System.Text.Encoding.UTF8.GetString(ms.ToArray()));
         }
     } catch (Exception ex) {
         log.Error(ex);
     }
     return("ERROR");
 }
Esempio n. 5
0
 public override String ToString()
 {
     try {
         System.IO.MemoryStream ms = new System.IO.MemoryStream();
         using (ZooKeeperNet.IO.EndianBinaryWriter writer =
                    new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8)){
             BinaryOutputArchive a_ =
                 new BinaryOutputArchive(writer);
             a_.StartRecord(this, string.Empty);
             a_.WriteLong(Czxid, "czxid");
             a_.WriteLong(Mzxid, "mzxid");
             a_.WriteLong(Ctime, "ctime");
             a_.WriteLong(Mtime, "mtime");
             a_.WriteInt(Version, "version");
             a_.WriteInt(Cversion, "cversion");
             a_.WriteInt(Aversion, "aversion");
             a_.WriteLong(EphemeralOwner, "ephemeralOwner");
             a_.WriteLong(Pzxid, "pzxid");
             a_.EndRecord(this, string.Empty);
             ms.Position = 0;
             return(System.Text.Encoding.UTF8.GetString(ms.ToArray()));
         }
     } catch (Exception ex) {
         log.Error(ex);
     }
     return("ERROR");
 }
Esempio n. 6
0
        public override String ToString()
        {
            try
            {
                System.IO.MemoryStream ms = new System.IO.MemoryStream();
                using (ZooKeeperNet.IO.EndianBinaryWriter writer =
                           new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8))
                {
                    BinaryOutputArchive a_ =
                        new BinaryOutputArchive(writer);
                    a_.StartRecord(this, string.Empty);
#warning code here
                    //a_.WriteBuffer(Remark, "remark");
                    a_.WriteBuffer(Remark, "data");
                    a_.WriteRecord(Stat, "stat");
                    a_.EndRecord(this, string.Empty);
                    ms.Position = 0;
                    return(System.Text.Encoding.UTF8.GetString(ms.ToArray()));
                }
            }
            catch (Exception ex)
            {
                log.Error(ex);
            }
            return("ERROR");
        }
Esempio n. 7
0
 public override String ToString() {
   try {
     System.IO.MemoryStream ms = new System.IO.MemoryStream();
     using(ZooKeeperNet.IO.EndianBinaryWriter writer =
       new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8)){
     BinaryOutputArchive a_ = 
       new BinaryOutputArchive(writer);
     a_.StartRecord(this,string.Empty);
   {
     a_.StartVector(Acl,"acl");
     if (Acl!= null) {          foreach(var e1 in Acl) {
   a_.WriteRecord(e1,"e1");
         }
     }
     a_.EndVector(Acl,"acl");
   }
   a_.WriteRecord(Stat,"stat");
     a_.EndRecord(this,string.Empty);
     ms.Position = 0;
     return System.Text.Encoding.UTF8.GetString(ms.ToArray());
   }    } catch (Exception ex) {
     log.Error(ex);
   }
   return "ERROR";
 }
Esempio n. 8
0
   public override String ToString()
   {
       try {
           System.IO.MemoryStream ms = new System.IO.MemoryStream();
           using (ZooKeeperNet.IO.EndianBinaryWriter writer =
                      new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8)){
               BinaryOutputArchive a_ =
                   new BinaryOutputArchive(writer);
               a_.StartRecord(this, string.Empty);
               a_.WriteLong(ClientId, "clientId");
               a_.WriteInt(Cxid, "cxid");
               a_.WriteLong(Zxid, "zxid");
               a_.WriteLong(Time, "time");
               a_.WriteInt(Type, "type");
               a_.EndRecord(this, string.Empty);
               ms.Position = 0;
               return(System.Text.Encoding.UTF8.GetString(ms.ToArray()));
           }
       } catch (Exception ex) {
   #if !NET_CORE
           log.Error(ex);
 #endif
       }
       return("ERROR");
   }
Esempio n. 9
0
 public override String ToString()
 {
     try
     {
         System.IO.MemoryStream ms = new System.IO.MemoryStream();
         using (ZooKeeperNet.IO.EndianBinaryWriter writer =
                    new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8))
         {
             BinaryOutputArchive a_ =
                 new BinaryOutputArchive(writer);
             a_.StartRecord(this, string.Empty);
             a_.WriteInt(Type, "type");
             a_.WriteInt(State, "state");
             a_.WriteString(Path, "path");
             a_.EndRecord(this, string.Empty);
             ms.Position = 0;
             return(System.Text.Encoding.UTF8.GetString(ms.ToArray()));
         }
     }
     catch (Exception ex)
     {
         log.Error(ex);
     }
     return("ERROR");
 }
Esempio n. 10
0
 public override String ToString()
 {
     try
     {
         System.IO.MemoryStream ms = new System.IO.MemoryStream();
         using (ZooKeeperNet.IO.EndianBinaryWriter writer =
           new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8))
         {
             BinaryOutputArchive a_ =
               new BinaryOutputArchive(writer);
             a_.StartRecord(this, string.Empty);
             a_.WriteLong(RelativeZxid, "relativeZxid");
             {
                 a_.StartVector(DataWatches, "dataWatches");
                 if (DataWatches != null)
                 {
                     foreach (var e1 in DataWatches)
                     {
                         a_.WriteString(e1, e1);
                     }
                 }
                 a_.EndVector(DataWatches, "dataWatches");
             }
             {
                 a_.StartVector(ExistWatches, "existWatches");
                 if (ExistWatches != null)
                 {
                     foreach (var e1 in ExistWatches)
                     {
                         a_.WriteString(e1, e1);
                     }
                 }
                 a_.EndVector(ExistWatches, "existWatches");
             }
             {
                 a_.StartVector(ChildWatches, "childWatches");
                 if (ChildWatches != null)
                 {
                     foreach (var e1 in ChildWatches)
                     {
                         a_.WriteString(e1, e1);
                     }
                 }
                 a_.EndVector(ChildWatches, "childWatches");
             }
             a_.EndRecord(this, string.Empty);
             ms.Position = 0;
             return System.Text.Encoding.UTF8.GetString(ms.ToArray());
         }
     }
     catch (Exception ex)
     {
         log.Error(ex);
     }
     return "ERROR";
 }
Esempio n. 11
0
 public override String ToString() {
   try {
     System.IO.MemoryStream ms = new System.IO.MemoryStream();
     using(ZooKeeperNet.IO.EndianBinaryWriter writer =
       new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8)){
     BinaryOutputArchive a_ = 
       new BinaryOutputArchive(writer);
     a_.StartRecord(this,string.Empty);
   a_.WriteBuffer(Token,"token");
     a_.EndRecord(this,string.Empty);
     ms.Position = 0;
     return System.Text.Encoding.UTF8.GetString(ms.ToArray());
   }    } catch (Exception ex) {
     log.Error(ex);
   }
   return "ERROR";
 }
Esempio n. 12
0
 public override String ToString() {
   try {
     System.IO.MemoryStream ms = new System.IO.MemoryStream();
     using(ZooKeeperNet.IO.EndianBinaryWriter writer =
       new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8)){
     BinaryOutputArchive a_ = 
       new BinaryOutputArchive(writer);
     a_.StartRecord(this,string.Empty);
   a_.WriteInt(ProtocolVersion,"protocolVersion");
   a_.WriteLong(LastZxidSeen,"lastZxidSeen");
   a_.WriteInt(TimeOut,"timeOut");
   a_.WriteLong(SessionId,"sessionId");
   a_.WriteBuffer(Passwd,"passwd");
     a_.EndRecord(this,string.Empty);
     ms.Position = 0;
     return System.Text.Encoding.UTF8.GetString(ms.ToArray());
   }    } catch (Exception ex) {
     log.Error(ex);
   }
   return "ERROR";
 }
Esempio n. 13
0
 public override String ToString()
 {
     try {
       System.IO.MemoryStream ms = new System.IO.MemoryStream();
       using(ZooKeeperNet.IO.EndianBinaryWriter writer =
     new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8)){
       BinaryOutputArchive a_ =
     new BinaryOutputArchive(writer);
       a_.StartRecord(this,string.Empty);
     a_.WriteInt(Magic,"magic");
     a_.WriteInt(Version,"version");
     a_.WriteLong(Dbid,"dbid");
       a_.EndRecord(this,string.Empty);
       ms.Position = 0;
       return System.Text.Encoding.UTF8.GetString(ms.ToArray());
     }    } catch (Exception ex) {
     #if !NET_CORE
       log.Error(ex);
       #endif
     }
     return "ERROR";
 }
Esempio n. 14
0
 public override String ToString() {
   try {
     System.IO.MemoryStream ms = new System.IO.MemoryStream();
     using(ZooKeeperNet.IO.EndianBinaryWriter writer =
       new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8)){
     BinaryOutputArchive a_ = 
       new BinaryOutputArchive(writer);
     a_.StartRecord(this,string.Empty);
   a_.WriteLong(Czxid,"czxid");
   a_.WriteLong(Mzxid,"mzxid");
   a_.WriteLong(Ctime,"ctime");
   a_.WriteLong(Mtime,"mtime");
   a_.WriteInt(Version,"version");
   a_.WriteInt(Cversion,"cversion");
   a_.WriteInt(Aversion,"aversion");
   a_.WriteLong(EphemeralOwner,"ephemeralOwner");
   a_.WriteInt(DataLength,"dataLength");
   a_.WriteInt(NumChildren,"numChildren");
   a_.WriteLong(Pzxid,"pzxid");
     a_.EndRecord(this,string.Empty);
     ms.Position = 0;
     return System.Text.Encoding.UTF8.GetString(ms.ToArray());
   }    } catch (Exception ex) {
     log.Error(ex);
   }
   return "ERROR";
 }
Esempio n. 15
0
 public override String ToString()
 {
     try {
       System.IO.MemoryStream ms = new System.IO.MemoryStream();
       using(ZooKeeperNet.IO.EndianBinaryWriter writer =
     new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8)){
       BinaryOutputArchive a_ =
     new BinaryOutputArchive(writer);
       a_.StartRecord(this,string.Empty);
     a_.WriteLong(RelativeZxid,"relativeZxid");
     {
       a_.StartVector(DataWatches,"dataWatches");
       if (DataWatches!= null) {          foreach(var e1 in DataWatches) {
     a_.WriteString(e1,e1);
       }
       }
       a_.EndVector(DataWatches,"dataWatches");
     }
     {
       a_.StartVector(ExistWatches,"existWatches");
       if (ExistWatches!= null) {          foreach(var e1 in ExistWatches) {
     a_.WriteString(e1,e1);
       }
       }
       a_.EndVector(ExistWatches,"existWatches");
     }
     {
       a_.StartVector(ChildWatches,"childWatches");
       if (ChildWatches!= null) {          foreach(var e1 in ChildWatches) {
     a_.WriteString(e1,e1);
       }
       }
       a_.EndVector(ChildWatches,"childWatches");
     }
       a_.EndRecord(this,string.Empty);
       ms.Position = 0;
       return System.Text.Encoding.UTF8.GetString(ms.ToArray());
     }    } catch (Exception ex) {
     #if !NET_CORE
       log.Error(ex);
       #endif
     }
     return "ERROR";
 }
Esempio n. 16
0
        public void Write(ZooKeeperNet.IO.EndianBinaryWriter writer)
        {
            BinaryOutputArchive archive = new BinaryOutputArchive(writer);

            Serialize(archive, string.Empty);
        }
Esempio n. 17
0
 public override String ToString() {
   try {
     System.IO.MemoryStream ms = new System.IO.MemoryStream();
     using(ZooKeeperNet.IO.EndianBinaryWriter writer =
       new ZooKeeperNet.IO.EndianBinaryWriter(ZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8)){
     BinaryOutputArchive a_ = 
       new BinaryOutputArchive(writer);
     a_.StartRecord(this,string.Empty);
   a_.WriteInt(Type,"type");
   a_.WriteLong(Zxid,"zxid");
   a_.WriteBuffer(Data,"data");
   {
     a_.StartVector(Authinfo,"authinfo");
     if (Authinfo!= null) {          foreach(var e1 in Authinfo) {
   a_.WriteRecord(e1,"e1");
         }
     }
     a_.EndVector(Authinfo,"authinfo");
   }
     a_.EndRecord(this,string.Empty);
     ms.Position = 0;
     return System.Text.Encoding.UTF8.GetString(ms.ToArray());
   }    } catch (Exception ex) {
     log.Error(ex);
   }
   return "ERROR";
 }