Hyperledger Fabric从源码分析链码查询与调用

前面分析过了链码的安装与实例化,今天来分析一下链码的调用和查询。因为这两个命令最终在底层调用的都是同一个函数,因此我们将这两个链码执行过程放在一起解析。同样,还是有很多函数会和之前所讲的具有相同的功能,在本文中就不做详细说明,可以翻看之前的两篇文章:

  1. Hyperledger Fabric从源码分析链码安装过程

  2. Hyperledger Fabric从源码分析链码实例化过程

好了,下面就开始吧

下面的解析以 invoke 为例


链码调用源码解析

源码入口在 peer/chaincode/invoke.go

先给一个官方 invoke 的例子:

peer chaincode invoke -o orderer.example.com:7050  --tls true --cafile $ORDERER_CA -C mychannel -n mycc -c '{"Args":["invoke", "a","b","10"]}'

来看下命令函数 invokeCmd

// invokeCmd returns the cobra command for Chaincode Invoke
func invokeCmd(cf *ChaincodeCmdFactory) *cobra.Command {
   
	chaincodeInvokeCmd = &cobra.Command{
   
		Use:       "invoke",
		Short:     fmt.Sprintf("Invoke the specified %s.", chainFuncName),
		Long:      fmt.Sprintf("Invoke the specified %s. It will try to commit the endorsed transaction to the network.", chainFuncName),
		ValidArgs: []string{
   "1"},
		RunE: func(cmd *cobra.Command, args []string) error {
   
      // 最终执行chaincodeInvoke函数
			return chaincodeInvoke(cmd, cf)
		},
	}
	flagList := []string{
   
		"name",
		"ctor",
		"channelID",
		"peerAddresses",
		"tlsRootCertFiles",
		"connectionProfile",
		"waitForEvent",
		"waitForEventTimeout",
	}
	attachFlags(chaincodeInvokeCmd, flagList)

	return chaincodeInvokeCmd
}

来看下chaincodeInvoke()函数

func chaincodeInvoke(cmd *cobra.Command, cf *ChaincodeCmdFactory) error {
   
  // 检查channelID是否为空,-C参数指定
	if channelID == "" {
   
		return errors.New("The required parameter 'channelID' is empty. Rerun the command with -C flag")
	}
	// Parsing of the command line is done so silence cmd usage
	cmd.SilenceUsage = true

	var err error
	if cf == nil {
   
    // 和之前一样,创建一个CmdFactory
		cf, err = InitCmdFactory(cmd.Name(), true, true)
		if err != nil {
   
			return err
		}
	}
	defer cf.BroadcastClient.Close()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值