Ejemplo n.º 1
0
        // ObjectListEntry {
        //   Flags {
        //     Fxxxxxxx ObjectIDIncluded
        //     xxxxxxFF ObjectType (Data,Stream,Link,Directory)
        //   }
        //   String name
        //   // Permissions permissions
        //   switch(ObjectType) {
        //     case Data {
        //       if(ObjectIDIncluded) {
        //         Varint id
        //       }
        //     } case Stream {
        //       if(ObjectIDIncluded) {
        //         Varint id
        //       }
        //     } case Link {
        //     } case Directory {
        //       if(ObjectIDIncluded) {
        //         Varint id
        //       }
        //     }
        //   }
        // }


        public static UInt32 Serialize(this ObjectEntry[] entries, Buf sendBuffer, UInt32 offset)
        {
            UInt32 sizeOffset = offset;

            sendBuffer.EnsureCapacityCopyData(offset + 4);

            offset += 4;
            for (int i = 0; i < entries.Length; i++)
            {
                ObjectEntry entry = entries[i];
                offset = entry.Serialize(sendBuffer, offset);
            }

            UInt32 length = offset - sizeOffset - 4;

            sendBuffer.array.BigEndianSetUInt32(sizeOffset, length);
            return(offset);
        }
Ejemplo n.º 2
0
 public void GenerateRandom(Byte[] bytes, int offset, int length)
 {
     buffer.EnsureCapacityCopyData(length);
 }
Ejemplo n.º 3
0
 public void Add(Byte[] data)
 {
     buffer.EnsureCapacityCopyData(this.dataOffsetLimit + (UInt32)data.Length);
     ArrayCopier.Copy(data, 0, buffer.array, this.dataOffsetLimit, data.Length);
     this.dataOffsetLimit += (UInt32)data.Length;
 }
Ejemplo n.º 4
0
 public void Add(Byte[] bytes, Int32 length)
 {
     buffer.EnsureCapacityCopyData(count + length);
     Array.Copy(bytes, 0, buffer.array, count, length);
     count += length;
 }