代码拉取完成,页面将自动刷新
/*
Copyright IBM Corp. 2016 All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package simplebft
import (
"fmt"
"reflect"
"github.com/golang/protobuf/proto"
"github.com/hyperledger/fabric/orderer/common/filter"
)
func (s *SBFT) makeBatch(seq uint64, prevHash []byte, data [][]byte) *Batch {
datahash := merkleHashData(data)
batchhead := &BatchHeader{
Seq: seq,
PrevHash: prevHash,
DataHash: datahash,
}
rawHeader, err := proto.Marshal(batchhead)
if err != nil {
panic(err)
}
return &Batch{
Header: rawHeader,
Payloads: data,
}
}
func (s *SBFT) checkBatch(b *Batch, checkData bool, needSigs bool) (*BatchHeader, error) {
batchheader := &BatchHeader{}
err := proto.Unmarshal(b.Header, batchheader)
if err != nil {
return nil, err
}
if checkData {
datahash := merkleHashData(b.Payloads)
if !reflect.DeepEqual(datahash, batchheader.DataHash) {
return nil, fmt.Errorf("malformed batches: invalid hash")
}
}
if batchheader.PrevHash == nil {
// TODO check against root hash, which should be part of constructor
} else if needSigs {
if len(b.Signatures) < s.oneCorrectQuorum() {
return nil, fmt.Errorf("insufficient number of signatures on batches: need %d, got %d", s.oneCorrectQuorum(), len(b.Signatures))
}
}
bh := b.Hash()
for r, sig := range b.Signatures {
err = s.sys.CheckSig(bh, r, sig)
if err != nil {
return nil, err
}
}
return batchheader, nil
}
////////////////////////////////////////
// Hash returns the hash of the Batch.
func (b *Batch) Hash() []byte {
return hash(b.Header)
}
func (b *Batch) DecodeHeader() *BatchHeader {
batchheader := &BatchHeader{}
err := proto.Unmarshal(b.Header, batchheader)
if err != nil {
panic(err)
}
return batchheader
}
func (s *SBFT) getCommittersFromBatch(reqBatch *Batch) (bool, []filter.Committer) {
reqs := make([]*Request, 0, len(reqBatch.Payloads))
for _, pl := range reqBatch.Payloads {
req := &Request{Payload: pl}
reqs = append(reqs, req)
}
batches := make([][]*Request, 0, 1)
comms := [][]filter.Committer{}
for _, r := range reqs {
b, c, valid := s.sys.Validate(s.chainId, r)
if !valid {
return false, nil
}
batches = append(batches, b...)
comms = append(comms, c...)
}
if len(batches) > 1 || len(batches) != len(comms) {
return false, nil
}
if len(batches) == 0 {
_, committer := s.sys.Cut(s.chainId)
return true, committer
} else {
return true, comms[0]
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。