代码拉取完成,页面将自动刷新
/*
Copyright IBM Corp. 2017 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 main
import (
"bytes"
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"github.com/hyperledger/fabric/bccsp/factory"
"github.com/hyperledger/fabric/common/config"
mspconfig "github.com/hyperledger/fabric/common/config/msp"
"github.com/hyperledger/fabric/common/configtx"
genesisconfig "github.com/hyperledger/fabric/common/configtx/tool/localconfig"
"github.com/hyperledger/fabric/common/configtx/tool/provisional"
"github.com/hyperledger/fabric/common/flogging"
cb "github.com/hyperledger/fabric/protos/common"
pb "github.com/hyperledger/fabric/protos/peer"
"github.com/hyperledger/fabric/protos/utils"
"github.com/golang/protobuf/proto"
mmsp "github.com/hyperledger/fabric/common/mocks/msp"
logging "github.com/op/go-logging"
)
var logger = flogging.MustGetLogger("common/configtx/tool")
func doOutputBlock(config *genesisconfig.Profile, channelID string, outputBlock string) error {
pgen := provisional.New(config)
logger.Info("Generating genesis block")
genesisBlock := pgen.GenesisBlockForChannel(channelID)
logger.Info("Writing genesis block")
err := ioutil.WriteFile(outputBlock, utils.MarshalOrPanic(genesisBlock), 0644)
if err != nil {
return fmt.Errorf("Error writing genesis block: %s", err)
}
return nil
}
func doOutputChannelCreateTx(conf *genesisconfig.Profile, channelID string, outputChannelCreateTx string) error {
logger.Info("Generating new channel configtx")
// TODO, use actual MSP eventually
signer, err := mmsp.NewNoopMsp().GetDefaultSigningIdentity()
if err != nil {
return fmt.Errorf("Error getting signing identity: %s", err)
}
// XXX we ignore the non-application org names here, once the tool supports configuration updates
// we should come up with a cleaner way to handle this, but leaving as is for the moment to not break
// backwards compatibility
var orgNames []string
for _, org := range conf.Application.Organizations {
orgNames = append(orgNames, org.Name)
}
configtx, err := configtx.MakeChainCreationTransaction(channelID, conf.Consortium, signer, orgNames...)
if err != nil {
return fmt.Errorf("Error generating configtx: %s", err)
}
logger.Info("Writing new channel tx")
err = ioutil.WriteFile(outputChannelCreateTx, utils.MarshalOrPanic(configtx), 0644)
if err != nil {
return fmt.Errorf("Error writing channel create tx: %s", err)
}
return nil
}
func doOutputAnchorPeersUpdate(conf *genesisconfig.Profile, channelID string, outputAnchorPeersUpdate string, asOrg string) error {
logger.Info("Generating anchor peer update")
if asOrg == "" {
return fmt.Errorf("Must specify an organization to update the anchor peer for")
}
var org *genesisconfig.Organization
for _, iorg := range conf.Application.Organizations {
if iorg.Name == asOrg {
org = iorg
}
}
if org == nil {
return fmt.Errorf("No org matching: %s", asOrg)
}
anchorPeers := make([]*pb.AnchorPeer, len(org.AnchorPeers))
for i, anchorPeer := range org.AnchorPeers {
anchorPeers[i] = &pb.AnchorPeer{
Host: anchorPeer.Host,
Port: int32(anchorPeer.Port),
}
}
configGroup := config.TemplateAnchorPeers(org.Name, anchorPeers)
configUpdate := &cb.ConfigUpdate{
ChannelId: channelID,
WriteSet: configGroup,
ReadSet: cb.NewConfigGroup(),
}
// Add all the existing config to the readset
configUpdate.ReadSet.Groups[config.ApplicationGroupKey] = cb.NewConfigGroup()
configUpdate.ReadSet.Groups[config.ApplicationGroupKey].Version = 1
configUpdate.ReadSet.Groups[config.ApplicationGroupKey].Groups[org.Name] = cb.NewConfigGroup()
configUpdate.ReadSet.Groups[config.ApplicationGroupKey].Groups[org.Name].Values[config.MSPKey] = &cb.ConfigValue{}
configUpdate.ReadSet.Groups[config.ApplicationGroupKey].Groups[org.Name].Policies[mspconfig.ReadersPolicyKey] = &cb.ConfigPolicy{}
configUpdate.ReadSet.Groups[config.ApplicationGroupKey].Groups[org.Name].Policies[mspconfig.WritersPolicyKey] = &cb.ConfigPolicy{}
configUpdate.ReadSet.Groups[config.ApplicationGroupKey].Groups[org.Name].Policies[mspconfig.AdminsPolicyKey] = &cb.ConfigPolicy{}
// Add all the existing at the same versions to the writeset
configUpdate.WriteSet.Groups[config.ApplicationGroupKey].Version = 1
configUpdate.WriteSet.Groups[config.ApplicationGroupKey].Groups[org.Name].Version = 1
configUpdate.WriteSet.Groups[config.ApplicationGroupKey].Groups[org.Name].Values[config.MSPKey] = &cb.ConfigValue{}
configUpdate.WriteSet.Groups[config.ApplicationGroupKey].Groups[org.Name].Policies[mspconfig.ReadersPolicyKey] = &cb.ConfigPolicy{}
configUpdate.WriteSet.Groups[config.ApplicationGroupKey].Groups[org.Name].Policies[mspconfig.WritersPolicyKey] = &cb.ConfigPolicy{}
configUpdate.WriteSet.Groups[config.ApplicationGroupKey].Groups[org.Name].Policies[mspconfig.AdminsPolicyKey] = &cb.ConfigPolicy{}
configUpdateEnvelope := &cb.ConfigUpdateEnvelope{
ConfigUpdate: utils.MarshalOrPanic(configUpdate),
}
update := &cb.Envelope{
Payload: utils.MarshalOrPanic(&cb.Payload{
Header: &cb.Header{
ChannelHeader: utils.MarshalOrPanic(&cb.ChannelHeader{
ChannelId: channelID,
Type: int32(cb.HeaderType_CONFIG_UPDATE),
}),
},
Data: utils.MarshalOrPanic(configUpdateEnvelope),
}),
}
logger.Info("Writing anchor peer update")
err := ioutil.WriteFile(outputAnchorPeersUpdate, utils.MarshalOrPanic(update), 0644)
if err != nil {
return fmt.Errorf("Error writing channel anchor peer update: %s", err)
}
return nil
}
func doInspectBlock(inspectBlock string) error {
logger.Info("Inspecting block")
data, err := ioutil.ReadFile(inspectBlock)
logger.Info("Parsing genesis block")
block := &cb.Block{}
err = proto.Unmarshal(data, block)
if err != nil {
return fmt.Errorf("Error unmarshaling block: %s", err)
}
ctx, err := utils.ExtractEnvelope(block, 0)
if err != nil {
return fmt.Errorf("Error retrieving configtx from block: %s", err)
}
payload, err := utils.UnmarshalPayload(ctx.Payload)
if err != nil {
return fmt.Errorf("Error extracting configtx payload: %s", err)
}
if payload.Header == nil {
return fmt.Errorf("Config block did not contain header")
}
header, err := utils.UnmarshalChannelHeader(payload.Header.ChannelHeader)
if err != nil {
return fmt.Errorf("Error unmarshaling channel header: %s", err)
}
if header.Type != int32(cb.HeaderType_CONFIG) {
return fmt.Errorf("Bad header type: %d", header.Type)
}
configEnvelope, err := configtx.UnmarshalConfigEnvelope(payload.Data)
if err != nil {
return fmt.Errorf("Bad configuration envelope")
}
if configEnvelope.Config == nil {
return fmt.Errorf("ConfigEnvelope contained no config")
}
configAsJSON, err := configGroupAsJSON(configEnvelope.Config.ChannelGroup)
if err != nil {
return err
}
fmt.Printf("Config for channel: %s at sequence %d\n", header.ChannelId, configEnvelope.Config.Sequence)
fmt.Println(configAsJSON)
return nil
}
func configGroupAsJSON(group *cb.ConfigGroup) (string, error) {
configResult, err := configtx.NewConfigResult(group, configtx.NewInitializer())
if err != nil {
return "", fmt.Errorf("Error parsing config: %s", err)
}
buffer := &bytes.Buffer{}
err = json.Indent(buffer, []byte(configResult.JSON()), "", " ")
if err != nil {
return "", fmt.Errorf("Error in output JSON (usually a programming bug): %s", err)
}
return buffer.String(), nil
}
func doInspectChannelCreateTx(inspectChannelCreateTx string) error {
logger.Info("Inspecting transaction")
data, err := ioutil.ReadFile(inspectChannelCreateTx)
logger.Info("Parsing transaction")
env, err := utils.UnmarshalEnvelope(data)
if err != nil {
return fmt.Errorf("Error unmarshaling envelope: %s", err)
}
payload, err := utils.UnmarshalPayload(env.Payload)
if err != nil {
return fmt.Errorf("Error extracting configtx payload: %s", err)
}
if payload.Header == nil {
return fmt.Errorf("Config block did not contain header")
}
header, err := utils.UnmarshalChannelHeader(payload.Header.ChannelHeader)
if err != nil {
return fmt.Errorf("Error unmarshaling channel header: %s", err)
}
if header.Type != int32(cb.HeaderType_CONFIG_UPDATE) {
return fmt.Errorf("Bad header type: %d", header.Type)
}
configUpdateEnvelope, err := configtx.UnmarshalConfigUpdateEnvelope(payload.Data)
if err != nil {
return fmt.Errorf("Bad ConfigUpdateEnvelope")
}
configUpdate, err := configtx.UnmarshalConfigUpdate(configUpdateEnvelope.ConfigUpdate)
if err != nil {
return fmt.Errorf("ConfigUpdateEnvelope contained no config")
}
if configUpdate.ChannelId != header.ChannelId {
return fmt.Errorf("ConfigUpdateEnvelope was for different channel than envelope: %s vs %s", configUpdate.ChannelId, header.ChannelId)
}
fmt.Printf("\nChannel creation for channel: %s\n", header.ChannelId)
fmt.Println()
if configUpdate.ReadSet == nil {
fmt.Println("Read Set: empty")
} else {
fmt.Println("Read Set:")
readSetAsJSON, err := configGroupAsJSON(configUpdate.ReadSet)
if err != nil {
return err
}
fmt.Println(readSetAsJSON)
}
fmt.Println()
if configUpdate.WriteSet == nil {
return fmt.Errorf("Empty WriteSet")
}
fmt.Println("Write Set:")
writeSetAsJSON, err := configGroupAsJSON(configUpdate.WriteSet)
if err != nil {
return err
}
fmt.Println(writeSetAsJSON)
fmt.Println()
readSetMap, err := configtx.MapConfig(configUpdate.ReadSet)
if err != nil {
return fmt.Errorf("Error mapping read set: %s", err)
}
writeSetMap, err := configtx.MapConfig(configUpdate.WriteSet)
if err != nil {
return fmt.Errorf("Error mapping write set: %s", err)
}
fmt.Println("Delta Set:")
deltaSet := configtx.ComputeDeltaSet(readSetMap, writeSetMap)
for key := range deltaSet {
fmt.Println(key)
}
fmt.Println()
return nil
}
func main() {
var outputBlock, outputChannelCreateTx, profile, channelID, inspectBlock, inspectChannelCreateTx, outputAnchorPeersUpdate, asOrg string
flag.StringVar(&outputBlock, "outputBlock", "", "The path to write the genesis block to (if set)")
flag.StringVar(&channelID, "channelID", provisional.TestChainID, "The channel ID to use in the configtx")
flag.StringVar(&outputChannelCreateTx, "outputCreateChannelTx", "", "The path to write a channel creation configtx to (if set)")
flag.StringVar(&profile, "profile", genesisconfig.SampleInsecureProfile, "The profile from configtx.yaml to use for generation.")
flag.StringVar(&inspectBlock, "inspectBlock", "", "Prints the configuration contained in the block at the specified path")
flag.StringVar(&inspectChannelCreateTx, "inspectChannelCreateTx", "", "Prints the configuration contained in the transaction at the specified path")
flag.StringVar(&outputAnchorPeersUpdate, "outputAnchorPeersUpdate", "", "Creates an config update to update an anchor peer (works only with the default channel creation, and only for the first update)")
flag.StringVar(&asOrg, "asOrg", "", "Performs the config generation as a particular organization, only including values in the write set that org (likely) has privilege to set")
flag.Parse()
logging.SetLevel(logging.INFO, "")
logger.Info("Loading configuration")
factory.InitFactories(nil)
config := genesisconfig.Load(profile)
if outputBlock != "" {
if err := doOutputBlock(config, channelID, outputBlock); err != nil {
logger.Fatalf("Error on outputBlock: %s", err)
}
}
if outputChannelCreateTx != "" {
if err := doOutputChannelCreateTx(config, channelID, outputChannelCreateTx); err != nil {
logger.Fatalf("Error on outputChannelCreateTx: %s", err)
}
}
if inspectBlock != "" {
if err := doInspectBlock(inspectBlock); err != nil {
logger.Fatalf("Error on inspectBlock: %s", err)
}
}
if inspectChannelCreateTx != "" {
if err := doInspectChannelCreateTx(inspectChannelCreateTx); err != nil {
logger.Fatalf("Error on inspectChannelCreateTx: %s", err)
}
}
if outputAnchorPeersUpdate != "" {
if err := doOutputAnchorPeersUpdate(config, channelID, outputAnchorPeersUpdate, asOrg); err != nil {
logger.Fatalf("Error on inspectChannelCreateTx: %s", err)
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。