当前位置: 首页>>代码示例>>Golang>>正文


Golang IFBlock.MarshalBinary方法代码示例

本文整理汇总了Golang中github.com/FactomProject/factoid/block.IFBlock.MarshalBinary方法的典型用法代码示例。如果您正苦于以下问题:Golang IFBlock.MarshalBinary方法的具体用法?Golang IFBlock.MarshalBinary怎么用?Golang IFBlock.MarshalBinary使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/FactomProject/factoid/block.IFBlock的用法示例。


在下文中一共展示了IFBlock.MarshalBinary方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: exportFctBlock

func exportFctBlock(block block.IFBlock) {
	if block == nil || procLog.Level() < factomlog.Info {
		return
	}

	data, err := block.MarshalBinary()
	if err != nil {
		panic(err)
	}

	strChainID := block.GetChainID().String()
	if fileNotExists(dataStorePath + strChainID) {
		err := os.MkdirAll(dataStorePath+strChainID, 0777)
		if err == nil {
			procLog.Info("Created directory " + dataStorePath + strChainID)
		} else {
			procLog.Error(err)
		}
	}
	err = ioutil.WriteFile(fmt.Sprintf(dataStorePath+strChainID+"/store.%09d.block", block.GetDBHeight()), data, 0777)
	if err != nil {
		panic(err)
	}

}
开发者ID:6londe,项目名称:FactomCode,代码行数:25,代码来源:util.go

示例2: ProcessFBlockBatch

// ProcessFBlockBatch inserts the factoid block
func (db *LevelDb) ProcessFBlockBatch(block block.IFBlock) error {

	if block != nil {
		if db.lbatch == nil {
			db.lbatch = new(leveldb.Batch)
		}

		defer db.lbatch.Reset()

		binaryBlock, err := block.MarshalBinary()
		if err != nil {
			return err
		}

		scHash := block.GetHash()

		// Insert the binary factom block
		var key []byte = []byte{byte(TBL_SC)}
		key = append(key, scHash.Bytes()...)
		db.lbatch.Put(key, binaryBlock)

		// Insert the sc block number cross reference
		key = []byte{byte(TBL_SC_NUM)}
		key = append(key, block.GetChainID().Bytes()...)
		bytes := make([]byte, 4)
		binary.BigEndian.PutUint32(bytes, block.GetDBHeight())
		key = append(key, bytes...)
		db.lbatch.Put(key, scHash.Bytes())

		// Update the chain head reference
		key = []byte{byte(TBL_CHAIN_HEAD)}
		key = append(key, common.FACTOID_CHAINID...)
		db.lbatch.Put(key, scHash.Bytes())

		err = db.lDb.Write(db.lbatch, db.wo)
		if err != nil {
			log.Println("batch failed %v\n", err)
			return err
		}

	}
	return nil
}
开发者ID:brianharness,项目名称:FactomCode,代码行数:44,代码来源:scblock.go

示例3: ProcessFBlockMultiBatch

func (db *LevelDb) ProcessFBlockMultiBatch(block block.IFBlock) error {
	if block == nil {
		return nil
	}

	if db.lbatch == nil {
		return fmt.Errorf("db.lbatch == nil")
	}

	binaryBlock, err := block.MarshalBinary()
	if err != nil {
		return err
	}

	scHash := block.GetHash()

	// Insert the binary factom block
	var key = []byte{byte(TBL_SC)}
	key = append(key, scHash.Bytes()...)
	db.lbatch.Put(key, binaryBlock)

	// Insert the sc block number cross reference
	key = []byte{byte(TBL_SC_NUM)}
	key = append(key, common.FACTOID_CHAINID...)
	bytes := make([]byte, 4)
	binary.BigEndian.PutUint32(bytes, block.GetDBHeight())
	key = append(key, bytes...)
	db.lbatch.Put(key, scHash.Bytes())

	// Update the chain head reference
	key = []byte{byte(TBL_CHAIN_HEAD)}
	key = append(key, common.FACTOID_CHAINID...)
	db.lbatch.Put(key, scHash.Bytes())

	return nil
}
开发者ID:FactomProject,项目名称:FactomCode,代码行数:36,代码来源:scblock.go


注:本文中的github.com/FactomProject/factoid/block.IFBlock.MarshalBinary方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。