// UnmarshalBson bson-decodes into BoundQuery. func (boundQuery *BoundQuery) 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 BoundQuery", kind)) } bson.Next(buf, 4) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { switch bson.ReadCString(buf) { case "Sql": boundQuery.Sql = bson.DecodeString(buf, kind) case "BindVariables": // map[string]interface{} if kind != bson.Null { if kind != bson.Object { panic(bson.NewBsonError("unexpected kind %v for boundQuery.BindVariables", kind)) } bson.Next(buf, 4) boundQuery.BindVariables = make(map[string]interface{}) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { _k := bson.ReadCString(buf) var _v1 interface{} _v1 = bson.DecodeInterface(buf, kind) boundQuery.BindVariables[_k] = _v1 } } default: bson.Skip(buf, kind) } } }
// UnmarshalBson bson-decodes into KeyspaceIdQuery. func (keyspaceIdQuery *KeyspaceIdQuery) 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 KeyspaceIdQuery", kind)) } bson.Next(buf, 4) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { switch bson.ReadCString(buf) { case "Sql": keyspaceIdQuery.Sql = bson.DecodeString(buf, kind) case "BindVariables": // map[string]interface{} if kind != bson.Null { if kind != bson.Object { panic(bson.NewBsonError("unexpected kind %v for keyspaceIdQuery.BindVariables", kind)) } bson.Next(buf, 4) keyspaceIdQuery.BindVariables = make(map[string]interface{}) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { _k := bson.ReadCString(buf) var _v1 interface{} _v1 = bson.DecodeInterface(buf, kind) keyspaceIdQuery.BindVariables[_k] = _v1 } } case "Keyspace": keyspaceIdQuery.Keyspace = bson.DecodeString(buf, kind) case "KeyspaceIds": // []kproto.KeyspaceId if kind != bson.Null { if kind != bson.Array { panic(bson.NewBsonError("unexpected kind %v for keyspaceIdQuery.KeyspaceIds", kind)) } bson.Next(buf, 4) keyspaceIdQuery.KeyspaceIds = make([]kproto.KeyspaceId, 0, 8) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { bson.SkipIndex(buf) var _v2 kproto.KeyspaceId _v2.UnmarshalBson(buf, kind) keyspaceIdQuery.KeyspaceIds = append(keyspaceIdQuery.KeyspaceIds, _v2) } } case "TabletType": keyspaceIdQuery.TabletType.UnmarshalBson(buf, kind) case "Session": // *Session if kind != bson.Null { keyspaceIdQuery.Session = new(Session) (*keyspaceIdQuery.Session).UnmarshalBson(buf, kind) } default: bson.Skip(buf, kind) } } }
// UnmarshalBson bson-decodes into Query. func (query *Query) 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 Query", kind)) } bson.Next(buf, 4) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { switch bson.ReadCString(buf) { case "CallerID": // *tproto.CallerID if kind != bson.Null { query.CallerID = new(tproto.CallerID) (*query.CallerID).UnmarshalBson(buf, kind) } case "Sql": query.Sql = bson.DecodeString(buf, kind) case "BindVariables": // map[string]interface{} if kind != bson.Null { if kind != bson.Object { panic(bson.NewBsonError("unexpected kind %v for query.BindVariables", kind)) } bson.Next(buf, 4) query.BindVariables = make(map[string]interface{}) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { _k := bson.ReadCString(buf) var _v1 interface{} _v1 = bson.DecodeInterface(buf, kind) query.BindVariables[_k] = _v1 } } case "TabletType": query.TabletType.UnmarshalBson(buf, kind) case "Session": // *Session if kind != bson.Null { query.Session = new(Session) (*query.Session).UnmarshalBson(buf, kind) } case "NotInTransaction": query.NotInTransaction = bson.DecodeBool(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 "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) } } }
// UnmarshalBson bson-decodes into EntityId. func (entityId *EntityId) 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 EntityId", kind)) } bson.Next(buf, 4) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { switch bson.ReadCString(buf) { case "ExternalID": entityId.ExternalID = bson.DecodeInterface(buf, kind) case "KeyspaceID": entityId.KeyspaceID.UnmarshalBson(buf, kind) default: bson.Skip(buf, kind) } } }
// UnmarshalBson bson-decodes into StreamEvent. func (streamEvent *StreamEvent) 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 StreamEvent", kind)) } bson.Next(buf, 4) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { switch bson.ReadCString(buf) { case "Category": streamEvent.Category = bson.DecodeString(buf, kind) case "TableName": streamEvent.TableName = bson.DecodeString(buf, kind) case "PKColNames": // []string if kind != bson.Null { if kind != bson.Array { panic(bson.NewBsonError("unexpected kind %v for streamEvent.PKColNames", kind)) } bson.Next(buf, 4) streamEvent.PKColNames = make([]string, 0, 8) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { bson.SkipIndex(buf) var _v1 string _v1 = bson.DecodeString(buf, kind) streamEvent.PKColNames = append(streamEvent.PKColNames, _v1) } } case "PKValues": // [][]interface{} if kind != bson.Null { if kind != bson.Array { panic(bson.NewBsonError("unexpected kind %v for streamEvent.PKValues", kind)) } bson.Next(buf, 4) streamEvent.PKValues = make([][]interface{}, 0, 8) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { bson.SkipIndex(buf) var _v2 []interface{} // []interface{} if kind != bson.Null { if kind != bson.Array { panic(bson.NewBsonError("unexpected kind %v for _v2", kind)) } bson.Next(buf, 4) _v2 = make([]interface{}, 0, 8) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { bson.SkipIndex(buf) var _v3 interface{} _v3 = bson.DecodeInterface(buf, kind) _v2 = append(_v2, _v3) } } streamEvent.PKValues = append(streamEvent.PKValues, _v2) } } case "Sql": streamEvent.Sql = bson.DecodeString(buf, kind) case "Timestamp": streamEvent.Timestamp = bson.DecodeInt64(buf, kind) case "GTIDField": streamEvent.GTIDField.UnmarshalBson(buf, kind) default: bson.Skip(buf, kind) } } }
// UnmarshalBson bson-decodes into QueryShard. func (queryShard *QueryShard) 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 QueryShard", kind)) } bson.Next(buf, 4) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { switch bson.ReadCString(buf) { case "Sql": queryShard.Sql = bson.DecodeString(buf, kind) case "BindVariables": // map[string]interface{} if kind != bson.Null { if kind != bson.Object { panic(bson.NewBsonError("unexpected kind %v for queryShard.BindVariables", kind)) } bson.Next(buf, 4) queryShard.BindVariables = make(map[string]interface{}) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { _k := bson.ReadCString(buf) var _v1 interface{} _v1 = bson.DecodeInterface(buf, kind) queryShard.BindVariables[_k] = _v1 } } case "Keyspace": queryShard.Keyspace = bson.DecodeString(buf, kind) case "Shards": // []string if kind != bson.Null { if kind != bson.Array { panic(bson.NewBsonError("unexpected kind %v for queryShard.Shards", kind)) } bson.Next(buf, 4) queryShard.Shards = make([]string, 0, 8) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { bson.SkipIndex(buf) var _v2 string _v2 = bson.DecodeString(buf, kind) queryShard.Shards = append(queryShard.Shards, _v2) } } case "TabletType": queryShard.TabletType.UnmarshalBson(buf, kind) case "Session": // *Session if kind != bson.Null { queryShard.Session = new(Session) (*queryShard.Session).UnmarshalBson(buf, kind) } case "NotInTransaction": queryShard.NotInTransaction = bson.DecodeBool(buf, kind) default: bson.Skip(buf, kind) } } }
// UnmarshalBson bson-decodes into EntityIdsQuery. func (entityIdsQuery *EntityIdsQuery) 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 EntityIdsQuery", kind)) } bson.Next(buf, 4) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { switch bson.ReadCString(buf) { case "Sql": entityIdsQuery.Sql = bson.DecodeString(buf, kind) case "BindVariables": // map[string]interface{} if kind != bson.Null { if kind != bson.Object { panic(bson.NewBsonError("unexpected kind %v for entityIdsQuery.BindVariables", kind)) } bson.Next(buf, 4) entityIdsQuery.BindVariables = make(map[string]interface{}) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { _k := bson.ReadCString(buf) var _v1 interface{} _v1 = bson.DecodeInterface(buf, kind) entityIdsQuery.BindVariables[_k] = _v1 } } case "Keyspace": entityIdsQuery.Keyspace = bson.DecodeString(buf, kind) case "EntityColumnName": entityIdsQuery.EntityColumnName = bson.DecodeString(buf, kind) case "EntityKeyspaceIdMap": // map[string]kproto.KeyspaceId if kind != bson.Null { if kind != bson.Object { panic(bson.NewBsonError("unexpected kind %v for entityIdsQuery.EntityKeyspaceIdMap", kind)) } bson.Next(buf, 4) entityIdsQuery.EntityKeyspaceIdMap = make(map[string]kproto.KeyspaceId) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { _k := bson.ReadCString(buf) var _v2 kproto.KeyspaceId _v2.UnmarshalBson(buf, kind) entityIdsQuery.EntityKeyspaceIdMap[_k] = _v2 } } case "TabletType": entityIdsQuery.TabletType.UnmarshalBson(buf, kind) case "Session": // *Session if kind != bson.Null { entityIdsQuery.Session = new(Session) (*entityIdsQuery.Session).UnmarshalBson(buf, kind) } default: bson.Skip(buf, kind) } } }
// UnmarshalBson bson-decodes into EntityIdsQuery. func (entityIdsQuery *EntityIdsQuery) 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 EntityIdsQuery", kind)) } bson.Next(buf, 4) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { switch bson.ReadCString(buf) { case "CallerID": // *tproto.CallerID if kind != bson.Null { entityIdsQuery.CallerID = new(tproto.CallerID) (*entityIdsQuery.CallerID).UnmarshalBson(buf, kind) } case "Sql": entityIdsQuery.Sql = bson.DecodeString(buf, kind) case "BindVariables": // map[string]interface{} if kind != bson.Null { if kind != bson.Object { panic(bson.NewBsonError("unexpected kind %v for entityIdsQuery.BindVariables", kind)) } bson.Next(buf, 4) entityIdsQuery.BindVariables = make(map[string]interface{}) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { _k := bson.ReadCString(buf) var _v1 interface{} _v1 = bson.DecodeInterface(buf, kind) entityIdsQuery.BindVariables[_k] = _v1 } } case "Keyspace": entityIdsQuery.Keyspace = bson.DecodeString(buf, kind) case "EntityColumnName": entityIdsQuery.EntityColumnName = bson.DecodeString(buf, kind) case "EntityKeyspaceIDs": // []EntityId if kind != bson.Null { if kind != bson.Array { panic(bson.NewBsonError("unexpected kind %v for entityIdsQuery.EntityKeyspaceIDs", kind)) } bson.Next(buf, 4) entityIdsQuery.EntityKeyspaceIDs = make([]EntityId, 0, 8) for kind := bson.NextByte(buf); kind != bson.EOO; kind = bson.NextByte(buf) { bson.SkipIndex(buf) var _v2 EntityId _v2.UnmarshalBson(buf, kind) entityIdsQuery.EntityKeyspaceIDs = append(entityIdsQuery.EntityKeyspaceIDs, _v2) } } case "TabletType": entityIdsQuery.TabletType.UnmarshalBson(buf, kind) case "Session": // *Session if kind != bson.Null { entityIdsQuery.Session = new(Session) (*entityIdsQuery.Session).UnmarshalBson(buf, kind) } case "NotInTransaction": entityIdsQuery.NotInTransaction = bson.DecodeBool(buf, kind) default: bson.Skip(buf, kind) } } }