當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Data.Type方法代碼示例

本文整理匯總了Golang中github.com/djbarber/ipfs-hack/unixfs/pb.Data.Type方法的典型用法代碼示例。如果您正苦於以下問題:Golang Data.Type方法的具體用法?Golang Data.Type怎麽用?Golang Data.Type使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/djbarber/ipfs-hack/unixfs/pb.Data的用法示例。


在下文中一共展示了Data.Type方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: GetBytes

func (n *FSNode) GetBytes() ([]byte, error) {
	pbn := new(pb.Data)
	pbn.Type = &n.Type
	pbn.Filesize = proto.Uint64(uint64(len(n.Data)) + n.subtotal)
	pbn.Blocksizes = n.blocksizes
	pbn.Data = n.Data
	return proto.Marshal(pbn)
}
開發者ID:djbarber,項目名稱:ipfs-hack,代碼行數:8,代碼來源:format.go

示例2: FolderPBData

// Returns Bytes that represent a Directory
func FolderPBData() []byte {
	pbfile := new(pb.Data)
	typ := pb.Data_Directory
	pbfile.Type = &typ

	data, err := proto.Marshal(pbfile)
	if err != nil {
		//this really shouldnt happen, i promise
		panic(err)
	}
	return data
}
開發者ID:djbarber,項目名稱:ipfs-hack,代碼行數:13,代碼來源:format.go

示例3: SymlinkData

func SymlinkData(path string) ([]byte, error) {
	pbdata := new(pb.Data)
	typ := pb.Data_Symlink
	pbdata.Data = []byte(path)
	pbdata.Type = &typ

	out, err := proto.Marshal(pbdata)
	if err != nil {
		return nil, err
	}

	return out, nil
}
開發者ID:djbarber,項目名稱:ipfs-hack,代碼行數:13,代碼來源:format.go

示例4: BytesForMetadata

func BytesForMetadata(m *Metadata) ([]byte, error) {
	pbd := new(pb.Data)
	pbd.Filesize = proto.Uint64(m.Size)
	typ := pb.Data_Metadata
	pbd.Type = &typ
	mdd, err := m.Bytes()
	if err != nil {
		return nil, err
	}

	pbd.Data = mdd
	return proto.Marshal(pbd)
}
開發者ID:djbarber,項目名稱:ipfs-hack,代碼行數:13,代碼來源:format.go

示例5: WrapData

func WrapData(b []byte) []byte {
	pbdata := new(pb.Data)
	typ := pb.Data_Raw
	pbdata.Data = b
	pbdata.Type = &typ

	out, err := proto.Marshal(pbdata)
	if err != nil {
		// This shouldnt happen. seriously.
		panic(err)
	}

	return out
}
開發者ID:djbarber,項目名稱:ipfs-hack,代碼行數:14,代碼來源:format.go

示例6: FilePBData

func FilePBData(data []byte, totalsize uint64) []byte {
	pbfile := new(pb.Data)
	typ := pb.Data_File
	pbfile.Type = &typ
	pbfile.Data = data
	pbfile.Filesize = proto.Uint64(totalsize)

	data, err := proto.Marshal(pbfile)
	if err != nil {
		// This really shouldnt happen, i promise
		// The only failure case for marshal is if required fields
		// are not filled out, and they all are. If the proto object
		// gets changed and nobody updates this function, the code
		// should panic due to programmer error
		panic(err)
	}
	return data
}
開發者ID:djbarber,項目名稱:ipfs-hack,代碼行數:18,代碼來源:format.go


注:本文中的github.com/djbarber/ipfs-hack/unixfs/pb.Data.Type方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。