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


Golang AdminBlock.MarshalBinary方法代碼示例

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


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

示例1: exportABlock

func exportABlock(block *common.AdminBlock) {
	if block == nil || procLog.Level() < factomlog.Info {
		return
	}

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

	strChainID := block.Header.AdminChainID.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.Header.DBHeight), data, 0777)
	if err != nil {
		panic(err)
	}

}
開發者ID:6londe,項目名稱:FactomCode,代碼行數:25,代碼來源:util.go

示例2: ProcessABlockBatch

// ProcessABlockBatch inserts the AdminBlock
func (db *LevelDb) ProcessABlockBatch(block *common.AdminBlock) 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
		}

		abHash, err := block.PartialHash()
		if err != nil {
			return err
		}

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

		// Insert the admin block number cross reference
		key = []byte{byte(TBL_AB_NUM)}
		key = append(key, block.Header.AdminChainID.Bytes()...)
		bytes := make([]byte, 4)
		binary.BigEndian.PutUint32(bytes, block.Header.DBHeight)
		key = append(key, bytes...)
		db.lbatch.Put(key, abHash.Bytes())

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

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

	}
	return nil
}
開發者ID:6londe,項目名稱:FactomCode,代碼行數:47,代碼來源:ablock.go

示例3: ProcessABlockMultiBatch

func (db *LevelDb) ProcessABlockMultiBatch(block *common.AdminBlock) 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
	}

	abHash, err := block.PartialHash()
	if err != nil {
		return err
	}

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

	// Insert the admin block number cross reference
	key = []byte{byte(TBL_AB_NUM)}
	key = append(key, common.ADMIN_CHAINID...)
	bytes := make([]byte, 4)
	binary.BigEndian.PutUint32(bytes, block.Header.DBHeight)
	key = append(key, bytes...)
	db.lbatch.Put(key, abHash.Bytes())

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

	return nil
}
開發者ID:FactomProject,項目名稱:FactomCode,代碼行數:39,代碼來源:ablock.go


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