示例#1
0
func (t *RpcError) Read(decoder tl.Decoder, waitress tl.Waitress, bind_uuid uuid.UUID) (err error) {
	t.ErrorCode, err = decoder.ReadInt()
	if err != nil {
		return
	}
	t.ErrorMessage, err = decoder.ReadString()
	return
}
示例#2
0
func (b *ObjectBox) Read(decoder tl.Decoder, waitress tl.Waitress, bind_uuid uuid.UUID) (err error) {
	id, err := decoder.ReadTypeBegin()
	if err != nil {
		return
	}
	err = b.Bind(id)
	if err != nil {
		return
	}
	bare, err := b.Bare()
	if err != nil {
		return
	}
	err = bare.Read(decoder, waitress, bind_uuid)
	return
}
示例#3
0
func (t *MockRPCResult) Read(decoder tl.Decoder, waitress tl.Waitress, bind_uuid uuid.UUID) (err error) {
	val0 := &t.Arg

	h0, err := decoder.ReadTypeBegin()
	if err != nil {
		return err
	}
	if h0 != builtin.TL_ID_VECTOR_T {
		return fmt.Errorf("bad vector crc %0x08d", h0)
	}

	n0, err := decoder.ReadInt()
	if err != nil {
		return err
	}

	for i0 := 0; i0 < int(n0); i0++ {
		val1 := new(int32)
		if *val1, err = decoder.ReadInt(); err != nil {
			return err
		}
		*val0 = append(*val0, *val1)
	}
	if len(*val0) != int(n0) {
		return fmt.Errorf("bad multi size %d != %d", n0, len(*val0))
	}
	return
}
示例#4
0
func (t *RpcResult) Read(decoder tl.Decoder, waitress tl.Waitress, session uuid.UUID) (err error) {
	t.ReqMsgId, err = decoder.ReadLong()
	if err != nil {
		return
	}

	var res_err, err_err error
	// try to get bare constructor from waitress
	// track to res_err
	if cons_id, _, _, res_err := waitress.GetResult(session, t.ReqMsgId); res_err == nil {
		result_box := &ObjectBox{}
		if res_err = result_box.Bind(cons_id); res_err == nil {
			t.Result, res_err = result_box.Bare()
		}
	}

	// Check for error
	if peek_cons_id, err_err := decoder.PeekType(); err_err == nil && peek_cons_id == TL_ID_RPC_ERROR {
		// got err - read it and return
		err_box := (&RpcError{}).Box()
		if err_err = err_box.Read(decoder, waitress, session); err_err == nil {
			if err_bare, err_err := err_box.Bare(); err_err == nil {
				t.RpcError = err_bare.(*RpcError)
			}
		}
	}
	if res_err == nil && err_err == nil && t.RpcError == nil {
		res_err = t.Result.Read(decoder, waitress, session)
	}
	// return one of res_err or err_err
	if res_err != nil {
		err = res_err
	} else if err_err != nil {
		err = err_err
	}

	return
}
示例#5
0
func (t *Double) Read(decoder tl.Decoder, waitress tl.Waitress, bind_uuid uuid.UUID) (err error) {
	t.value, err = decoder.ReadDouble()
	return
}
示例#6
0
func (t *Bytes) Read(decoder tl.Decoder, waitress tl.Waitress, bind_uuid uuid.UUID) (err error) {
	t.value, err = decoder.ReadBytes()
	return
}
示例#7
0
func (t *String) Read(decoder tl.Decoder, waitress tl.Waitress, bind_uuid uuid.UUID) (err error) {
	t.value, err = decoder.ReadString()
	return
}