func (zkStat *ZkStat) UnmarshalBson(buf *bytes.Buffer) { bson.Next(buf, 4) kind := bson.NextByte(buf) for kind != bson.EOO { key := bson.ReadCString(buf) switch key { case "Czxid": zkStat.czxid = bson.DecodeInt64(buf, kind) case "Mzxid": zkStat.mzxid = bson.DecodeInt64(buf, kind) case "CTime": zkStat.cTime = bson.DecodeTime(buf, kind) case "MTime": zkStat.mTime = bson.DecodeTime(buf, kind) case "Version": zkStat.version = bson.DecodeInt(buf, kind) case "CVersion": zkStat.cVersion = bson.DecodeInt(buf, kind) case "AVersion": zkStat.aVersion = bson.DecodeInt(buf, kind) case "EphemeralOwner": zkStat.ephemeralOwner = bson.DecodeInt64(buf, kind) case "DataLength": zkStat.dataLength = bson.DecodeInt(buf, kind) case "NumChildren": zkStat.numChildren = bson.DecodeInt(buf, kind) case "Pzxid": zkStat.pzxid = bson.DecodeInt64(buf, kind) default: panic(bson.NewBsonError("Unrecognized tag %s for ZkStat", key)) } kind = bson.NextByte(buf) } }
// UnmarshalBson bson-decodes into A. func (a *A) UnmarshalBson(buf *bytes.Buffer, kind byte) { switch kind { case bson.EOO, bson.Object: // valid case bson.Null: return default: panic(bson.NewBsonError("unexpected kind %v for A", kind)) } bson.Next(buf, 4) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { switch bson.ReadCString(buf) { case "Name": a.Name = bson.DecodeString(buf, kind) case "BirthDay": a.BirthDay = bson.DecodeTime(buf, kind) case "Phone": a.Phone = bson.DecodeString(buf, kind) case "Siblings": a.Siblings = bson.DecodeInt(buf, kind) case "Spouse": a.Spouse = bson.DecodeBool(buf, kind) case "Money": a.Money = bson.DecodeFloat64(buf, kind) default: bson.Skip(buf, kind) } } }
// UnmarshalBson bson-decodes into Statement. func (statement *Statement) UnmarshalBson(buf *bytes.Buffer, kind byte) { switch kind { case bson.EOO, bson.Object: // valid case bson.Null: return default: panic(bson.NewBsonError("unexpected kind %v for Statement", kind)) } bson.Next(buf, 4) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { switch bson.ReadCString(buf) { case "Category": statement.Category = bson.DecodeInt(buf, kind) case "Charset": // *mproto.Charset if kind != bson.Null { statement.Charset = new(mproto.Charset) (*statement.Charset).UnmarshalBson(buf, kind) } case "Sql": statement.Sql = bson.DecodeBinary(buf, kind) default: bson.Skip(buf, kind) } } }
// UnmarshalBson bson-decodes into MyType. func (myType *MyType) UnmarshalBson(buf *bytes.Buffer, kind byte) { if kind == bson.EOO { bson.Next(buf, 4) kind = bson.NextByte(buf) bson.ReadCString(buf) } *myType = MyType(bson.DecodeInt(buf, kind)) }
// UnmarshalBson bson-decodes into ZkStat. func (zkStat *ZkStat) UnmarshalBson(buf *bytes.Buffer, kind byte) { switch kind { case bson.EOO, bson.Object: // valid case bson.Null: return default: panic(bson.NewBsonError("unexpected kind %v for ZkStat", kind)) } bson.Next(buf, 4) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { switch bson.ReadCString(buf) { case "Czxid": zkStat.czxid = bson.DecodeInt64(buf, kind) case "Mzxid": zkStat.mzxid = bson.DecodeInt64(buf, kind) case "CTime": zkStat.cTime = bson.DecodeTime(buf, kind) case "MTime": zkStat.mTime = bson.DecodeTime(buf, kind) case "Version": zkStat.version = bson.DecodeInt(buf, kind) case "CVersion": zkStat.cVersion = bson.DecodeInt(buf, kind) case "AVersion": zkStat.aVersion = bson.DecodeInt(buf, kind) case "EphemeralOwner": zkStat.ephemeralOwner = bson.DecodeInt64(buf, kind) case "DataLength": zkStat.dataLength = bson.DecodeInt(buf, kind) case "NumChildren": zkStat.numChildren = bson.DecodeInt(buf, kind) case "Pzxid": zkStat.pzxid = bson.DecodeInt64(buf, kind) default: bson.Skip(buf, kind) } } }
// UnmarshalBson bson-decodes into MyType. func (myType *MyType) UnmarshalBson(buf *bytes.Buffer, kind byte) { switch kind { case bson.EOO, bson.Object: // valid case bson.Null: return default: panic(bson.NewBsonError("unexpected kind %v for MyType", kind)) } bson.Next(buf, 4) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { switch bson.ReadCString(buf) { case "Local": myType.local = bson.DecodeInt(buf, kind) case "Local1": myType.Local2 = bson.DecodeInt(buf, kind) default: bson.Skip(buf, kind) } } }
// UnmarshalBson bson-decodes into Charset. func (charset *Charset) UnmarshalBson(buf *bytes.Buffer, kind byte) { switch kind { case bson.EOO, bson.Object: // valid case bson.Null: return default: panic(bson.NewBsonError("unexpected kind %v for Charset", kind)) } bson.Next(buf, 4) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { switch bson.ReadCString(buf) { case "Client": charset.Client = bson.DecodeInt(buf, kind) case "Conn": charset.Conn = bson.DecodeInt(buf, kind) case "Server": charset.Server = bson.DecodeInt(buf, kind) default: bson.Skip(buf, kind) } } }
func (zkStat *ZkStat) UnmarshalBson(buf *bytes.Buffer, kind byte) { bson.VerifyObject(kind) bson.Next(buf, 4) kind = bson.NextByte(buf) for kind != bson.EOO { key := bson.ReadCString(buf) switch key { case "Czxid": zkStat.czxid = bson.DecodeInt64(buf, kind) case "Mzxid": zkStat.mzxid = bson.DecodeInt64(buf, kind) case "CTime": zkStat.cTime = bson.DecodeTime(buf, kind) case "MTime": zkStat.mTime = bson.DecodeTime(buf, kind) case "Version": zkStat.version = bson.DecodeInt(buf, kind) case "CVersion": zkStat.cVersion = bson.DecodeInt(buf, kind) case "AVersion": zkStat.aVersion = bson.DecodeInt(buf, kind) case "EphemeralOwner": zkStat.ephemeralOwner = bson.DecodeInt64(buf, kind) case "DataLength": zkStat.dataLength = bson.DecodeInt(buf, kind) case "NumChildren": zkStat.numChildren = bson.DecodeInt(buf, kind) case "Pzxid": zkStat.pzxid = bson.DecodeInt64(buf, kind) default: bson.Skip(buf, kind) } kind = bson.NextByte(buf) } }
// UnmarshalBson bson-decodes into MyType. func (myType *MyType) UnmarshalBson(buf *bytes.Buffer, kind byte) { switch kind { case bson.EOO, bson.Object: // valid case bson.Null: return default: panic(bson.NewBsonError("unexpected kind %v for MyType", kind)) } bson.Next(buf, 4) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { switch bson.ReadCString(buf) { case "Float64": myType.Float64 = bson.DecodeFloat64(buf, kind) case "String": myType.String = bson.DecodeString(buf, kind) case "Bool": myType.Bool = bson.DecodeBool(buf, kind) case "Int64": myType.Int64 = bson.DecodeInt64(buf, kind) case "Int32": myType.Int32 = bson.DecodeInt32(buf, kind) case "Int": myType.Int = bson.DecodeInt(buf, kind) case "Uint64": myType.Uint64 = bson.DecodeUint64(buf, kind) case "Uint32": myType.Uint32 = bson.DecodeUint32(buf, kind) case "Uint": myType.Uint = bson.DecodeUint(buf, kind) case "Bytes": myType.Bytes = bson.DecodeBinary(buf, kind) case "Time": myType.Time = bson.DecodeTime(buf, kind) case "Interface": myType.Interface = bson.DecodeInterface(buf, kind) default: bson.Skip(buf, kind) } } }