63 Star 183 Fork 3

Gitee 极速下载/hyperledger-fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
克隆/下载
metastate.go 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package common
import (
"bytes"
"encoding/binary"
"github.com/pkg/errors"
)
// NodeMetastate information to store the information about current
// height of the ledger (last accepted block sequence number).
type NodeMetastate struct {
// Actual ledger height
LedgerHeight uint64
}
// NewNodeMetastate creates new meta data with given ledger height
func NewNodeMetastate(height uint64) *NodeMetastate {
return &NodeMetastate{height}
}
// Bytes decodes meta state into byte array for serialization
func (n *NodeMetastate) Bytes() ([]byte, error) {
buffer := new(bytes.Buffer)
// Explicitly specify byte order for write into the buffer
// to provide cross platform support, note the it consistent
// with FromBytes function
err := binary.Write(buffer, binary.BigEndian, *n)
if err != nil {
return nil, errors.WithStack(err)
}
return buffer.Bytes(), nil
}
// Height returns ledger height from the state
func (n *NodeMetastate) Height() uint64 {
return n.LedgerHeight
}
// Update state with new ledger height
func (n *NodeMetastate) Update(height uint64) {
n.LedgerHeight = height
}
// FromBytes - encode from byte array into meta data structure
func FromBytes(buf []byte) (*NodeMetastate, error) {
state := NodeMetastate{}
reader := bytes.NewReader(buf)
// As bytes are written in the big endian to keep supporting
// cross platforming and for consistency reasons read also
// done using same order
err := binary.Read(reader, binary.BigEndian, &state)
if err != nil {
return nil, errors.WithStack(err)
}
return &state, nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/hyperledger-fabric.git
git@gitee.com:mirrors/hyperledger-fabric.git
mirrors
hyperledger-fabric
hyperledger-fabric
v1.1.0

搜索帮助