2011-12-20 09:00:01 +00:00
|
|
|
package directory
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/hex"
|
2012-06-29 07:53:47 +00:00
|
|
|
"pkg/storage"
|
2013-01-05 22:06:44 +00:00
|
|
|
"strings"
|
2013-01-17 08:15:05 +00:00
|
|
|
"pkg/util"
|
2011-12-20 09:00:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type FileId struct {
|
2012-08-24 05:56:14 +00:00
|
|
|
VolumeId storage.VolumeId
|
2011-12-20 09:00:01 +00:00
|
|
|
Key uint64
|
|
|
|
Hashcode uint32
|
|
|
|
}
|
|
|
|
|
2012-08-24 05:56:14 +00:00
|
|
|
func NewFileId(VolumeId storage.VolumeId, Key uint64, Hashcode uint32) *FileId {
|
2011-12-20 09:00:01 +00:00
|
|
|
return &FileId{VolumeId: VolumeId, Key: Key, Hashcode: Hashcode}
|
|
|
|
}
|
2013-01-17 08:15:05 +00:00
|
|
|
func ParseFileId(fid string) *FileId{
|
2011-12-22 04:04:47 +00:00
|
|
|
a := strings.Split(fid, ",")
|
2011-12-20 09:00:01 +00:00
|
|
|
if len(a) != 2 {
|
2012-08-24 08:15:27 +00:00
|
|
|
println("Invalid fid", fid, ", split length", len(a))
|
2011-12-20 09:00:01 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
vid_string, key_hash_string := a[0], a[1]
|
2013-01-17 08:15:05 +00:00
|
|
|
volumeId, _ := storage.NewVolumeId(vid_string)
|
2011-12-22 04:04:47 +00:00
|
|
|
key, hash := storage.ParseKeyHash(key_hash_string)
|
2012-08-24 06:14:54 +00:00
|
|
|
return &FileId{VolumeId: volumeId, Key: key, Hashcode: hash}
|
2011-12-20 09:00:01 +00:00
|
|
|
}
|
|
|
|
func (n *FileId) String() string {
|
|
|
|
bytes := make([]byte, 12)
|
2011-12-25 05:30:57 +00:00
|
|
|
util.Uint64toBytes(bytes[0:8], n.Key)
|
|
|
|
util.Uint32toBytes(bytes[8:12], n.Hashcode)
|
2011-12-20 09:00:01 +00:00
|
|
|
nonzero_index := 0
|
|
|
|
for ; bytes[nonzero_index] == 0; nonzero_index++ {
|
|
|
|
}
|
2012-08-24 06:14:54 +00:00
|
|
|
return n.VolumeId.String() + "," + hex.EncodeToString(bytes[nonzero_index:])
|
2011-12-20 09:00:01 +00:00
|
|
|
}
|