Merge branch 'master' of ssh://phabricator.internetapi.cn/source/bdledger-grpc-api

This commit is contained in:
Nex
2020-04-05 11:40:44 +08:00
10 changed files with 104 additions and 1 deletions

View File

@@ -32,6 +32,30 @@ message Transaction {
bytes s = 11; // ECDSA signature s
}
message Contract {
bytes contractName = 1; //合约名称
uint32 randomNum =2; //合约执行的节点数量
bytes operation = 3; //合约方法
bytes arg = 4; //合约方法参数
bytes path = 5; //合约文件路径(合约在IDE工程的相对路径)
bytes content = 6; //合约内容(可为合约文件相对路径/合约脚本)
bytes pubkey = 7; //用户公钥
enum ContractUnitRequestType{
START = 0;
STOP = 1;
EXECUTE = 2;
REPLY = 3;
REQUEST = 4;
PREPREPARE = 5;
PREPARE = 6;
COMMIT = 7;
ADDPEER = 8;
DROPPEER = 9;
STATESYNC = 10;
}
}
message Block {
bytes hash = 1; // 区块的哈希,当区块处于待确认状态时为`null`
repeated bytes parent_hashes = 2; // 父区块的哈希

View File

@@ -0,0 +1,69 @@
syntax = "proto3";
//protoc --plugin=protoc-gen-grpc-java=/Users/oliveds/docs/grpc/grpc-java/compiler/build/exe/java_plugin/protoc-gen-grpc-java --grpc-java_out=./out --proto_path=./out Go2JavaService.proto
//protoc --java_out=./out --proto_path=./out Go2JavaService.proto
///:. 生成的文件到当前目录
//protoc -I /Users/oliveds/docs/grpc/out --go_out=plugins=grpc:. /Users/oliveds/docs/grpc/out/Go2JavaService.proto
option go_package = "bdware.org/bdledger/pkg/api/grpc/proto";
option java_package = "com.bdware.units.grpc";
option java_outer_classname = "GRPCGo2JavaService";
option objc_class_prefix = "RTG";
package com.bdware.units.grpc;
// Interface exported by the server.
service Go2JavaService {
rpc Go2JavaStream(stream Go2JavaMessage) returns (stream Go2JavaMessage){}
}
message Go2JavaMessage {
Go2JavaMessageType msgType=1;
string myPeerID = 2;
repeated string peerID = 3;
ContractUnitRequestType cuType = 4;
StatusType statusType = 5;
bytes content = 6;
string requestID = 7;
repeated string contractID = 8;
int32 num = 9;
string signature = 10;
enum Go2JavaMessageType{
ContractUnitRequest = 0;
ContractUnitResponse = 1;
GetMyPeerID = 2;
MyPeerIDResponse = 3;
ContractStatusRequest = 4;
ContractStatusResponse = 5;
GetRandomPeers = 6;
GetAllPeers = 7;
RandomPeersResponse = 8;
AllPeersResponse = 9;
}
enum StatusType{
SUCCESS = 0;
FAIL = 1;
}
enum ContractUnitRequestType{
START = 0;
STOP = 1;
EXECUTE = 2;
REPLY = 3;
REQUEST = 4;
PREPREPARE = 5;
PREPARE = 6;
COMMIT = 7;
ADDPEER = 8;
DROPPEER = 9;
STATESYNC = 10;
}
}