-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsync_c.cc
58 lines (45 loc) · 1.46 KB
/
sync_c.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include <memory>
#include <iostream>
#include <string>
#include<grpcpp/grpcpp.h>
#include"testjbj.grpc.pb.h"
using grpc::Channel;
using grpc::ClientContext;
using grpc::Status;
using T::jbj::session;
using T::jbj::jbjRegist_req;
using T::jbj::jbjReply_res;
class sessionClient{
std::unique_ptr<session::Stub> stub_;
public:
sessionClient(std::shared_ptr<Channel> channel)
:stub_(session::NewStub(channel)){}
std::string Sendto(const std::string user,const std::string password){
jbjRegist_req request;
request.set_user_name(user);
request.set_password(password);
jbjReply_res reply;
ClientContext context;
Status status = stub_->Regist(&context,request,&reply);
if (status.ok())
{
// 获取服务端返回的数据
std::cout <<"user:"<< reply.user_name()<<" passwod:" << reply.password() <<" encode:"<<reply.result_code() <<std::endl;
return "RPC 成功";
}else {
std::cout << status.error_code() << ": " << status.error_message()<< std::endl;
return "RPC 失败";
}
}
};
int main(){
std::string addr ("127.0.0.1:50051");
sessionClient session(
grpc::CreateChannel(addr,grpc::InsecureChannelCredentials())
);
std::string user("jbj");
std::string password("123456");
std::string res = session.Sendto(user,password);
std::cout <<res<<std::endl;
return 0;
}