Commit 977f1e1d authored by zhanghuiren's avatar zhanghuiren

add integer stub for hessian

parent 11185138
...@@ -26,17 +26,6 @@ import ( ...@@ -26,17 +26,6 @@ import (
// Integer represents a integer value. // Integer represents a integer value.
type Integer struct { type Integer struct {
big.Int big.Int
// only used for hessian
// You Should not use it in go
Signum int32
Mag []int
// Deprecated: compatible with java8 serialize
FirstNonzeroIntNum int
LowestSetBit int
BitLength int
BitCount int
} }
func (Integer) JavaClassName() string { func (Integer) JavaClassName() string {
...@@ -59,16 +48,13 @@ func (i *Integer) FromSignAndMag(signum int32, mag []int) { ...@@ -59,16 +48,13 @@ func (i *Integer) FromSignAndMag(signum int32, mag []int) {
return return
} }
i.Signum = signum bytes := make([]byte, 4*len(mag))
i.Mag = mag for j := 0; j < len(mag); j++ {
binary.BigEndian.PutUint32(bytes[j*4:(j+1)*4], uint32(mag[j]))
bytes := make([]byte, 4*len(i.Mag))
for j := 0; j < len(i.Mag); j++ {
binary.BigEndian.PutUint32(bytes[j*4:(j+1)*4], uint32(i.Mag[j]))
} }
i.SetBytes(bytes) i.SetBytes(bytes)
if i.Signum == -1 { if signum == -1 {
i.Neg(&i.Int) i.Neg(&i.Int)
} }
} }
...@@ -93,3 +79,27 @@ func (i *Integer) GetSignAndMag() (signum int32, mag []int) { ...@@ -93,3 +79,27 @@ func (i *Integer) GetSignAndMag() (signum int32, mag []int) {
return return
} }
func (i *Integer) GetIntegerStub() (stub *IntegerStub) {
stub = new(IntegerStub)
stub.Signum, stub.Mag = i.GetSignAndMag()
return
}
func (i *Integer) SetIntegerStub(stub *IntegerStub) {
i.FromSignAndMag(stub.Signum, stub.Mag)
return
}
// IntegerStub is used for hessian encoding and decoding
// You Should not use it in go
type IntegerStub struct {
Signum int32
Mag []int
// Deprecated: compatible with java8 serialize
FirstNonzeroIntNum int
LowestSetBit int
BitLength int
BitCount int
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment