Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
814 B
34 lines
814 B
package roaring |
|
|
|
import ( |
|
"encoding/binary" |
|
"io" |
|
|
|
"github.com/tinylib/msgp/msgp" |
|
) |
|
|
|
// writeTo for runContainer16 follows this |
|
// spec: https://github.com/RoaringBitmap/RoaringFormatSpec |
|
// |
|
func (b *runContainer16) writeTo(stream io.Writer) (int, error) { |
|
buf := make([]byte, 2+4*len(b.iv)) |
|
binary.LittleEndian.PutUint16(buf[0:], uint16(len(b.iv))) |
|
for i, v := range b.iv { |
|
binary.LittleEndian.PutUint16(buf[2+i*4:], v.start) |
|
binary.LittleEndian.PutUint16(buf[2+2+i*4:], v.length) |
|
} |
|
return stream.Write(buf) |
|
} |
|
|
|
func (b *runContainer16) writeToMsgpack(stream io.Writer) (int, error) { |
|
bts, err := b.MarshalMsg(nil) |
|
if err != nil { |
|
return 0, err |
|
} |
|
return stream.Write(bts) |
|
} |
|
|
|
func (b *runContainer16) readFromMsgpack(stream io.Reader) (int, error) { |
|
err := msgp.Decode(stream, b) |
|
return 0, err |
|
}
|
|
|