2013-04-16 15:10:21 +08:00
|
|
|
package storage
|
2011-12-20 17:00:01 +08:00
|
|
|
|
|
|
|
import (
|
2013-02-27 14:54:22 +08:00
|
|
|
"encoding/hex"
|
2013-08-14 15:31:02 +08:00
|
|
|
"errors"
|
2013-01-17 16:56:56 +08:00
|
|
|
"strings"
|
2014-10-27 02:34:55 +08:00
|
|
|
|
2016-06-03 09:09:14 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2011-12-20 17:00:01 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type FileId struct {
|
2013-04-16 15:10:21 +08:00
|
|
|
VolumeId VolumeId
|
2011-12-20 17:00:01 +08:00
|
|
|
Key uint64
|
|
|
|
Hashcode uint32
|
|
|
|
}
|
|
|
|
|
2014-03-24 12:57:10 +08:00
|
|
|
func NewFileIdFromNeedle(VolumeId VolumeId, n *Needle) *FileId {
|
|
|
|
return &FileId{VolumeId: VolumeId, Key: n.Id, Hashcode: n.Cookie}
|
|
|
|
}
|
2013-04-16 15:10:21 +08:00
|
|
|
func NewFileId(VolumeId VolumeId, Key uint64, Hashcode uint32) *FileId {
|
2011-12-20 17:00:01 +08:00
|
|
|
return &FileId{VolumeId: VolumeId, Key: Key, Hashcode: Hashcode}
|
|
|
|
}
|
2013-08-14 15:31:02 +08:00
|
|
|
func ParseFileId(fid string) (*FileId, error) {
|
2011-12-22 12:04:47 +08:00
|
|
|
a := strings.Split(fid, ",")
|
2011-12-20 17:00:01 +08:00
|
|
|
if len(a) != 2 {
|
2013-08-14 15:31:02 +08:00
|
|
|
glog.V(1).Infoln("Invalid fid ", fid, ", split length ", len(a))
|
|
|
|
return nil, errors.New("Invalid fid " + fid)
|
2011-12-20 17:00:01 +08:00
|
|
|
}
|
|
|
|
vid_string, key_hash_string := a[0], a[1]
|
2013-04-16 15:10:21 +08:00
|
|
|
volumeId, _ := NewVolumeId(vid_string)
|
2013-12-10 05:53:24 +08:00
|
|
|
key, hash, e := ParseKeyHash(key_hash_string)
|
|
|
|
return &FileId{VolumeId: volumeId, Key: key, Hashcode: hash}, e
|
2011-12-20 17:00:01 +08:00
|
|
|
}
|
|
|
|
func (n *FileId) String() string {
|
|
|
|
bytes := make([]byte, 12)
|
2016-04-10 15:24:22 +08:00
|
|
|
util.Uint64toBytes(bytes[0:8], n.Key)
|
|
|
|
util.Uint32toBytes(bytes[8:12], n.Hashcode)
|
2011-12-20 17:00:01 +08:00
|
|
|
nonzero_index := 0
|
|
|
|
for ; bytes[nonzero_index] == 0; nonzero_index++ {
|
|
|
|
}
|
2012-08-24 14:14:54 +08:00
|
|
|
return n.VolumeId.String() + "," + hex.EncodeToString(bytes[nonzero_index:])
|
2011-12-20 17:00:01 +08:00
|
|
|
}
|