Ejemplo n.º 1
0
 public override string ToString()
 {
     try
     {
         MemoryStream stream = new MemoryStream();
         using (EndianBinaryWriter writer = new EndianBinaryWriter(EndianBitConverter.Big, stream, Encoding.UTF8))
         {
             BinaryOutputArchive archive = new BinaryOutputArchive(writer);
             archive.StartRecord(this, string.Empty);
             archive.StartVector <ACL>(this.Acl, "acl");
             if (this.Acl != null)
             {
                 foreach (ACL acl in this.Acl)
                 {
                     archive.WriteRecord(acl, "e1");
                 }
             }
             archive.EndVector <ACL>(this.Acl, "acl");
             archive.WriteRecord(this.Stat, "stat");
             archive.EndRecord(this, string.Empty);
             stream.Position = 0L;
             return(Encoding.UTF8.GetString(stream.ToArray()));
         }
     }
     catch (Exception exception)
     {
         log.Error(exception);
     }
     return("ERROR");
 }
Ejemplo n.º 2
0
 public override String ToString()
 {
     try
     {
         System.IO.MemoryStream ms = new System.IO.MemoryStream();
         using (IkZooKeeperNet.IO.EndianBinaryWriter writer =
                    new IkZooKeeperNet.IO.EndianBinaryWriter(IkZooKeeperNet.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8))
         {
             BinaryOutputArchive a_ =
                 new BinaryOutputArchive(writer);
             a_.StartRecord(this, string.Empty);
             a_.WriteString(Path, "path");
             {
                 a_.StartVector(Acl, "acl");
                 if (Acl != null)
                 {
                     foreach (var e1 in Acl)
                     {
                         a_.WriteRecord(e1, "e1");
                     }
                 }
                 a_.EndVector(Acl, "acl");
             }
             a_.WriteInt(Version, "version");
             a_.EndRecord(this, string.Empty);
             ms.Position = 0;
             return(System.Text.Encoding.UTF8.GetString(ms.ToArray()));
         }
     }
     catch (Exception ex)
     {
         log.Error(ex);
     }
     return("ERROR");
 }
Ejemplo 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");
 }
Ejemplo 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");
 }
Ejemplo n.º 5
0
 public override string ToString()
 {
     try
     {
         MemoryStream memoryStream = new MemoryStream();
         using (EndianBinaryWriter writer = new EndianBinaryWriter((EndianBitConverter)EndianBitConverter.Big, (Stream)memoryStream, Encoding.UTF8))
         {
             BinaryOutputArchive binaryOutputArchive = new BinaryOutputArchive(writer);
             binaryOutputArchive.StartRecord((IRecord)this, string.Empty);
             binaryOutputArchive.WriteString(this.Path, "path");
             binaryOutputArchive.StartVector <ACL>(this.Acl, "acl");
             if (this.Acl != null)
             {
                 foreach (ACL acl in this.Acl)
                 {
                     binaryOutputArchive.WriteRecord((IRecord)acl, "e1");
                 }
             }
             binaryOutputArchive.EndVector <ACL>(this.Acl, "acl");
             binaryOutputArchive.WriteInt(this.Version, "version");
             binaryOutputArchive.EndRecord((IRecord)this, string.Empty);
             memoryStream.Position = 0L;
             return(Encoding.UTF8.GetString(memoryStream.ToArray()));
         }
     }
     catch (Exception ex)
     {
         SetACLTxn.log.Error((object)ex);
     }
     return("ERROR");
 }
Ejemplo n.º 6
0
 public override string ToString()
 {
     try
     {
         MemoryStream memoryStream = new MemoryStream();
         using (EndianBinaryWriter writer = new EndianBinaryWriter((EndianBitConverter)EndianBitConverter.Big, (Stream)memoryStream, Encoding.UTF8))
         {
             BinaryOutputArchive binaryOutputArchive = new BinaryOutputArchive(writer);
             binaryOutputArchive.StartRecord((IRecord)this, string.Empty);
             binaryOutputArchive.StartVector <string>(this.Children, "children");
             if (this.Children != null)
             {
                 foreach (string child in this.Children)
                 {
                     binaryOutputArchive.WriteString(child, child);
                 }
             }
             binaryOutputArchive.EndVector <string>(this.Children, "children");
             binaryOutputArchive.WriteRecord((IRecord)this.Stat, "stat");
             binaryOutputArchive.EndRecord((IRecord)this, string.Empty);
             memoryStream.Position = 0L;
             return(Encoding.UTF8.GetString(memoryStream.ToArray()));
         }
     }
     catch (Exception ex)
     {
         GetChildren2Response.log.Error((object)ex);
     }
     return("ERROR");
 }
Ejemplo n.º 7
0
 public override String ToString()
 {
     try
     {
         System.IO.MemoryStream ms = new System.IO.MemoryStream();
         using (Newegg.EC.Zookeeper.Client.Core.IO.EndianBinaryWriter writer =
                    new Newegg.EC.Zookeeper.Client.Core.IO.EndianBinaryWriter(Newegg.EC.Zookeeper.Client.Core.IO.EndianBitConverter.Big, ms, System.Text.Encoding.UTF8))
         {
             BinaryOutputArchive a_ =
                 new BinaryOutputArchive(writer);
             a_.StartRecord(this, string.Empty);
             {
                 a_.StartVector(Txns, "txns");
                 if (Txns != null)
                 {
                     foreach (var e1 in Txns)
                     {
                         a_.WriteRecord(e1, "e1");
                     }
                 }
                 a_.EndVector(Txns, "txns");
             }
             a_.EndRecord(this, string.Empty);
             ms.Position = 0;
             return(System.Text.Encoding.UTF8.GetString(ms.ToArray()));
         }
     }
     catch (Exception ex)
     {
         log.Error(ex);
     }
     return("ERROR");
 }
Ejemplo 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_.StartVector(Children,"children");
     if (Children!= null) {          foreach(var e1 in Children) {
       a_.WriteString(e1,e1);
         }
     }
     a_.EndVector(Children,"children");
   }
     a_.EndRecord(this,string.Empty);
     ms.Position = 0;
     return System.Text.Encoding.UTF8.GetString(ms.ToArray());
   }    } catch (Exception ex) {
     log.Error(ex);
   }
   return "ERROR";
 }
Ejemplo n.º 9
0
 public override string ToString()
 {
     try
     {
         var ms = new MemoryStream();
         using (var writer =
                    new EndianBinaryWriter(EndianBitConverter.Big, ms, Encoding.UTF8))
         {
             var 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 (ACL e1 in Acl)
                     {
                         a_.WriteRecord(e1, "e1");
                     }
                 }
                 a_.EndVector(Acl, "acl");
             }
             a_.WriteInt(Flags, "flags");
             a_.EndRecord(this, string.Empty);
             ms.Position = 0;
             return(Encoding.UTF8.GetString(ms.ToArray()));
         }
     }
     catch (Exception ex)
     {
         log.Error(ex);
     }
     return("ERROR");
 }
Ejemplo 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_.WriteString(Path,"path");
     {
       a_.StartVector(Acl,"acl");
       if (Acl!= null) {          foreach(var e1 in Acl) {
     a_.WriteRecord(e1,"e1");
       }
       }
       a_.EndVector(Acl,"acl");
     }
     a_.WriteInt(Version,"version");
       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";
 }
Ejemplo 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_.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";
 }
Ejemplo 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(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";
 }