aboutsummaryrefslogtreecommitdiff
path: root/weed/storage/file_id.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2016-06-02 18:09:14 -0700
committerChris Lu <chris.lu@gmail.com>2016-06-02 18:09:14 -0700
commit5ce6bbf07672bf3f3c8d26cd2ce0e3e853a47c44 (patch)
tree2e4dd2ad0a618ab2b7cdebcdb9c503526c31e2e8 /weed/storage/file_id.go
parentcaeffa3998adc060fa66c4cd77af971ff2d26c57 (diff)
downloadseaweedfs-5ce6bbf07672bf3f3c8d26cd2ce0e3e853a47c44.tar.xz
seaweedfs-5ce6bbf07672bf3f3c8d26cd2ce0e3e853a47c44.zip
directory structure change to work with glide
glide has its own requirements. My previous workaround caused me some code checkin errors. Need to fix this.
Diffstat (limited to 'weed/storage/file_id.go')
-rw-r--r--weed/storage/file_id.go43
1 files changed, 43 insertions, 0 deletions
diff --git a/weed/storage/file_id.go b/weed/storage/file_id.go
new file mode 100644
index 000000000..4cfdb16fa
--- /dev/null
+++ b/weed/storage/file_id.go
@@ -0,0 +1,43 @@
+package storage
+
+import (
+ "encoding/hex"
+ "errors"
+ "strings"
+
+ "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/chrislusf/seaweedfs/weed/util"
+)
+
+type FileId struct {
+ VolumeId VolumeId
+ Key uint64
+ Hashcode uint32
+}
+
+func NewFileIdFromNeedle(VolumeId VolumeId, n *Needle) *FileId {
+ return &FileId{VolumeId: VolumeId, Key: n.Id, Hashcode: n.Cookie}
+}
+func NewFileId(VolumeId VolumeId, Key uint64, Hashcode uint32) *FileId {
+ return &FileId{VolumeId: VolumeId, Key: Key, Hashcode: Hashcode}
+}
+func ParseFileId(fid string) (*FileId, error) {
+ a := strings.Split(fid, ",")
+ if len(a) != 2 {
+ glog.V(1).Infoln("Invalid fid ", fid, ", split length ", len(a))
+ return nil, errors.New("Invalid fid " + fid)
+ }
+ vid_string, key_hash_string := a[0], a[1]
+ volumeId, _ := NewVolumeId(vid_string)
+ key, hash, e := ParseKeyHash(key_hash_string)
+ return &FileId{VolumeId: volumeId, Key: key, Hashcode: hash}, e
+}
+func (n *FileId) String() string {
+ bytes := make([]byte, 12)
+ util.Uint64toBytes(bytes[0:8], n.Key)
+ util.Uint32toBytes(bytes[8:12], n.Hashcode)
+ nonzero_index := 0
+ for ; bytes[nonzero_index] == 0; nonzero_index++ {
+ }
+ return n.VolumeId.String() + "," + hex.EncodeToString(bytes[nonzero_index:])
+}