代码拉取完成,页面将自动刷新
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package extcc
import (
"context"
"github.com/hyperledger/fabric/common/flogging"
"github.com/hyperledger/fabric/core/container/ccintf"
"github.com/hyperledger/fabric/internal/pkg/comm"
"github.com/pkg/errors"
pb "github.com/hyperledger/fabric-protos-go/peer"
"google.golang.org/grpc"
)
var extccLogger = flogging.MustGetLogger("extcc")
// StreamHandler handles the `Chaincode` gRPC service with peer as client
type StreamHandler interface {
HandleChaincodeStream(stream ccintf.ChaincodeStream) error
}
type ExternalChaincodeRuntime struct {
}
// createConnection - standard grpc client creating using ClientConfig info (surprised there isn't
// a helper method for this)
func (i *ExternalChaincodeRuntime) createConnection(ccid string, ccinfo *ccintf.ChaincodeServerInfo) (*grpc.ClientConn, error) {
grpcClient, err := comm.NewGRPCClient(ccinfo.ClientConfig)
if err != nil {
return nil, errors.WithMessagef(err, "error creating grpc client to %s", ccid)
}
conn, err := grpcClient.NewConnection(ccinfo.Address)
if err != nil {
return nil, errors.WithMessagef(err, "error creating grpc connection to %s", ccinfo.Address)
}
extccLogger.Debugf("Created external chaincode connection: %s", ccid)
return conn, nil
}
func (i *ExternalChaincodeRuntime) Stream(ccid string, ccinfo *ccintf.ChaincodeServerInfo, sHandler StreamHandler) error {
extccLogger.Debugf("Starting external chaincode connection: %s", ccid)
conn, err := i.createConnection(ccid, ccinfo)
if err != nil {
return errors.WithMessagef(err, "error cannot create connection for %s", ccid)
}
defer conn.Close()
//create the client and start streaming
client := pb.NewChaincodeClient(conn)
stream, err := client.Connect(context.Background())
if err != nil {
return errors.WithMessagef(err, "error creating grpc client connection to %s", ccid)
}
//peer as client has to initiate the stream. Rest of the process is unchanged
sHandler.HandleChaincodeStream(stream)
extccLogger.Debugf("External chaincode %s client exited", ccid)
return nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。