-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMyRpcService.h
321 lines (288 loc) · 6.31 KB
/
MyRpcService.h
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
#pragma once
#include "blib/LambdaThread.h"
#include "src/rpc/server/RpcService.h"
using namespace brpc;
class TestObject : public Object
{
public:
DECLARE_DCLASS(TestObject);
public:
FIELD(String, name);
FIELD(int, age);
FIELD(double, weight);
FIELD(bool, sex);
};
class AgeManager : public Object
{
public:
AgeManager():age(0){}
public:
int getAge() const { return age; }
void setAge(int val) { age = val; }
void addAge() { age++; }
private:
int age;
};
class MyOtherRpcService : public RpcService
{
public:
MyOtherRpcService(cstring name) : RpcService(name)
{
as(MyOtherRpcService::print);
}
virtual ~MyOtherRpcService()
{
}
public:
int print(cstring str)
{
return printf("other service print: %s\n", str);
}
};
class MySub2RpcService : public RpcService
{
public:
MySub2RpcService(cstring name) : RpcService(name)
{
as(MySub2RpcService::print);
}
virtual ~MySub2RpcService()
{
}
public:
int print(cstring str)
{
return printf("sub2 service print: %s\n", str);
}
};
class MySubRpcService : public RpcService
{
public:
MySubRpcService(cstring name) : RpcService(name), sub2Service("sub2")
{
as(MySubRpcService::print);
this->addSubSevice(&sub2Service);
}
virtual ~MySubRpcService()
{
}
public:
int print(cstring str)
{
return printf("sub service print: %s\n", str);
}
private:
MySub2RpcService sub2Service;
};
class MyRpcService : public RpcService
{
public:
MyRpcService(cstring name) : RpcService(name),
otherService("other"), subService("sub")
{
this->currentDir = "";
as(MyRpcService::sum);
as(MyRpcService::playMusic);
as(MyRpcService::setCurrentDir);
as(MyRpcService::getCurrentDir);
as(MyRpcService::listCurrentDir);
as(MyRpcService::execute);
as(MyRpcService::executeNoOutput);
int(MyRpcService::*prints)(cstring) = &MyRpcService::print;
asnf("print", prints);
int(MyRpcService::*printi)(int) = &MyRpcService::print;
asnf("print", printi);
int(MyRpcService::*printf)(double) = &MyRpcService::print;
asnf("print", printf);
int(MyRpcService::*printb)(bool) = &MyRpcService::print;
asnf("print", printb);
int(MyRpcService::*printo)(TestObject*) = &MyRpcService::print;
asnf("print", printo);
amName = String::format("%s.%s", name, "am");
(void)regObject(amName, &am);
as(AgeManager::getAge);
as(AgeManager::setAge);
as(AgeManager::addAge);
this->addSubSevice(&subService);
this->extendService(&otherService);
}
virtual ~MyRpcService()
{
(void)unregObject(amName);
this->excludeService(&otherService);
}
public:
double sum(int a, double b)
{
return a+b;
}
bool playMusic(cstring name)
{
Thread* trd = new LambdaThread([&](){
int counter = 0;
while(counter < 10){
onEventClick(counter++);
LambdaThread::sleep(1000*5);
}
}, null);
trd->start();
String path = name;
if(currentDir != "")
path = currentDir + "/" + name;
return this->open("wmplayer", path);
}
String getCurrentDir() const {
return currentDir;
}
void setCurrentDir(cstring val) {
currentDir = val;
}
String listCurrentDir() {
return execute("dir \"" + currentDir + "\"");
}
bool executeNoOutput(cstring cmd)
{
return this->exec(cmd);
}
String execute(cstring cmd)
{
return this->executeCommand(cmd);
}
virtual String echo(cstring str)
{
return String("MyRpcService: ") + str;
}
int print(cstring str)
{
return printf("str: %s\n", str);
}
int print(String str)
{
return print(str.c_str());
}
int print(int v)
{
return printf("int: %d\n", v);
}
int print(double v)
{
return printf("double: %lf\n", v);
}
int print(bool v)
{
return printf("bool: %s\n", v?"true":"false");
}
int print(TestObject* obj)
{
print("TestObject {");
print(obj->name);
print(obj->sex);
print(obj->age);
print(obj->weight);
print("}");
return 0;
}
void onEventClick(int count)
{
ObjectList args;
args.addValue(count);
publishEvent("onclick", args);
}
protected:
AgeManager am;
String amName;
MyOtherRpcService otherService;
MySubRpcService subService;
private:
String currentDir;//path for play music
private:
static bool open(cstring name, cstring para)
{
String str = String::format("\"%s\"", name);
name = str.c_str();
return blib::CodeUtil::open(name, para);
}
//执行cmd命令
static bool exec(cstring cmd)
{
#ifdef WIN32
String str = String::format("/c \"%s\"", cmd);
cmd = str.c_str();
return open("cmd.exe", cmd);
#else
return open("bash", cmd);
#endif
}
//执行cmd命令,并回显
static String executeCommand(cstring cmd)
{
#ifdef WIN32
String str = String::format("cmd /c \"%s\"", cmd);
cstring cmdLine = str.c_str();
HANDLE hRead = 0;
HANDLE hWrite = 0;
SECURITY_ATTRIBUTES sas;
sas.bInheritHandle=TRUE;
sas.lpSecurityDescriptor=NULL;
sas.nLength=sizeof(SECURITY_ATTRIBUTES);
CreatePipe(&hRead,&hWrite,&sas,sas.nLength);
STARTUPINFOA si;
ZeroMemory(&si,sizeof(STARTUPINFO));
GetStartupInfoA(&si);
//si.hStdInput=hRead2;
si.hStdOutput=hWrite;
si.hStdError=hWrite;
si.wShowWindow=SW_SHOWNORMAL;
si.dwFlags=STARTF_USESTDHANDLES;
PROCESS_INFORMATION pi;
BOOL hProcess = CreateProcessA(NULL,(char*)cmdLine,&sas,NULL,TRUE,0,NULL,NULL,&si,&pi);
if(!hProcess)
{
CloseHandle(hRead);
CloseHandle(hWrite);
hRead = NULL;
hWrite = NULL;
return String::format("execute cmd \"%s\" failed", cmd);
}
CloseHandle(hWrite);
const static int READ_BUF_SIZE = 1024;
char buffer[READ_BUF_SIZE];
::memset(buffer,0,READ_BUF_SIZE);
string strOut = cmd;
strOut.append("\n");
DWORD bytesRead = 0;
while (true)
{
if (ReadFile(hRead,buffer,READ_BUF_SIZE,&bytesRead,NULL))
strOut.append(buffer,bytesRead);
else{
DWORD result = WaitForSingleObject(pi.hProcess,0);//INFINITE
if(WAIT_TIMEOUT == result)
continue;
else if(WAIT_OBJECT_0 == result){
DWORD dwExitCode = 0;
(void)GetExitCodeProcess(pi.hProcess, &dwExitCode);
strOut.append(String::format("<exit code %d>", dwExitCode).c_str());
break;
}
else if(WAIT_FAILED == result){
strOut.append("<wait for excuting cmd failed>");
break;
}
else{
strOut.append("<error>");
break;
}
}
}
CloseHandle(hRead);
/*CodeUtil::replaceString(strOut,"\r","");
CodeUtil::replaceString(strOut,"\n","");
CodeUtil::replaceString(strOut,"/","//");*/
//printf(strOut.c_str());
return strOut;
#else
return "ERROR: Not supported now!";
#endif
}
};