123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- package util
- import "devt.de/krotik/eliasdb/storage/file"
- const LocationSize = file.SizeLong
- const MaxRecordValue = 0xFFFFFF
- const MaxOffsetValue = 0xFFFF
- func LocationRecord(location uint64) uint64 {
- return uint64(location >> 16)
- }
- func LocationOffset(location uint64) uint16 {
- return uint16(location & 0xffff)
- }
- func PackLocation(recordID uint64, offset uint16) uint64 {
- if offset == 0xFFFF && recordID == 0xFFFFFF {
- return 0xFFFFFFFF
- }
- if recordID > MaxRecordValue {
- panic("Cannot create location with record id greater than 0xFFFFFF")
- }
- return (recordID << 16) + uint64(offset)
- }
|