Documentation ¶
Index ¶
- Constants
- func GetReferenceLookup(allocationID string, path string) string
- type FileRef
- func (fr *FileRef) CalculateHash() string
- func (fr *FileRef) GetHash() string
- func (fr *FileRef) GetHashData() string
- func (fr *FileRef) GetLookupHash() string
- func (fr *FileRef) GetName() string
- func (fr *FileRef) GetNumBlocks() int64
- func (fr *FileRef) GetPath() string
- func (fr *FileRef) GetPathHash() string
- func (fr *FileRef) GetSize() int64
- func (fr *FileRef) GetType() string
- type ListResult
- type Ref
- func (r *Ref) AddChild(child RefEntity)
- func (r *Ref) CalculateHash() string
- func (r *Ref) GetHash() string
- func (r *Ref) GetLookupHash() string
- func (r *Ref) GetName() string
- func (r *Ref) GetNumBlocks() int64
- func (r *Ref) GetPath() string
- func (r *Ref) GetPathHash() string
- func (r *Ref) GetSize() int64
- func (r *Ref) GetType() string
- func (r *Ref) RemoveChild(idx int)
- type RefEntity
- type ReferencePath
Constants ¶
View Source
const ( FILE = "f" DIRECTORY = "d" )
View Source
const CHUNK_SIZE = 64 * 1024
Variables ¶
This section is empty.
Functions ¶
func GetReferenceLookup ¶
Types ¶
type FileRef ¶
type FileRef struct { Ref `json:",squash"` CustomMeta string `json:"custom_meta"` ContentHash string `json:"content_hash"` MerkleRoot string `json:"merkle_root"` ThumbnailSize int64 `json:"thumbnail_size"` ThumbnailHash string `json:"thumbnail_hash"` ActualFileSize int64 `json:"actual_file_size"` ActualFileHash string `json:"actual_file_hash"` ActualThumbnailSize int64 `json:"actual_thumbnail_size"` ActualThumbnailHash string `json:"actual_thumbnail_hash"` MimeType string `json:"mimetype"` }
func (*FileRef) CalculateHash ¶
func (*FileRef) GetHashData ¶
func (*FileRef) GetLookupHash ¶
func (*FileRef) GetNumBlocks ¶
func (*FileRef) GetPathHash ¶
type ListResult ¶
type ListResult struct { AllocationRoot string `json:"allocation_root"` Meta map[string]interface{} `json:"meta_data"` Entities []map[string]interface{} `json:"list"` }
func (*ListResult) GetDirTree ¶
func (lr *ListResult) GetDirTree(allocationID string) (*Ref, error)
type Ref ¶
type Ref struct { Type string `json:"type"` AllocationID string `json:"allocation_id"` Name string `json:"name"` Path string `json:"path"` Size int64 `json:"size"` Hash string `json:"hash"` NumBlocks int64 `json:"num_of_blocks"` PathHash string `json:"path_hash"` LookupHash string `json:"lookup_hash"` Children []RefEntity `json:"-"` // contains filtered or unexported fields }
func (*Ref) CalculateHash ¶
func (*Ref) GetLookupHash ¶
func (*Ref) GetNumBlocks ¶
func (*Ref) GetPathHash ¶
func (*Ref) RemoveChild ¶
type ReferencePath ¶
type ReferencePath struct { Meta map[string]interface{} `json:"meta_data"` List []*ReferencePath `json:"list,omitempty"` }
func (*ReferencePath) GetDirTree ¶
func (rp *ReferencePath) GetDirTree(allocationID string) (*Ref, error)
func (*ReferencePath) GetRefFromObjectTree ¶
func (rp *ReferencePath) GetRefFromObjectTree(allocationID string) (RefEntity, error)
Click to show internal directories.
Click to hide internal directories.