version 1.7.4.3, 2012/05/16 16:36:10
|
version 1.8.2.2, 2012/05/28 08:02:00
|
Line 4
|
Line 4
|
#include "rc.h" |
#include "rc.h" |
|
|
|
|
int main() | int main(int argc, char **argv) |
{ |
{ |
rpc_cli_t *cli = NULL, *cli2 = NULL; |
rpc_cli_t *cli = NULL, *cli2 = NULL; |
int c, i, ret; |
int c, i, ret; |
ait_val_t tval, *v = NULL; |
ait_val_t tval, *v = NULL; |
array_t *valz, *arr; |
array_t *valz, *arr; |
char *mem, *blob43 = malloc(512); | char *mem, *blob43 = io_malloc(512); |
| struct timeval after, before; |
|
|
cli = rpc_cli_openClient(100, 2, 1024 * 10, "127.0.0.1", 11111); |
cli = rpc_cli_openClient(100, 2, 1024 * 10, "127.0.0.1", 11111); |
if (!cli) { |
if (!cli) { |
printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
free(blob43); | io_free(blob43); |
return 1; |
return 1; |
} |
} |
|
|
Line 23 int main()
|
Line 24 int main()
|
if (!cli2) { |
if (!cli2) { |
printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
rpc_cli_closeClient(&cli); |
rpc_cli_closeClient(&cli); |
free(blob43); | io_free(blob43); |
return 1; |
return 1; |
} |
} |
|
|
|
printf("\n\n1 pass>>> RPC ping\n\n"); |
|
for (i = 0; i < 100000; i++) { |
|
gettimeofday(&before, NULL); |
|
if ((ret = rpc_cli_ping(cli)) == -1) { |
|
printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
|
rpc_cli_closeBLOBClient(&cli2); |
|
rpc_cli_closeClient(&cli); |
|
io_free(blob43); |
|
return 127; |
|
} |
|
gettimeofday(&after, NULL); |
|
printf("RPC ping seq[0x%04x] #%d --- %f\n", ret, i, |
|
(after.tv_sec - before.tv_sec) + (after.tv_usec - before.tv_usec) / 1.e6); |
|
} |
|
printf("\n\n2 pass>>> RPC ping without reply!!!\n\n"); |
|
for (i = 0; i < 10000; i++) { |
|
gettimeofday(&before, NULL); |
|
if (rpc_cli_execCall(cli, RPC_NOREPLY, CALL_SRVPING, NULL, &arr)) { |
|
printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
|
rpc_cli_closeBLOBClient(&cli2); |
|
rpc_cli_closeClient(&cli); |
|
io_free(blob43); |
|
return 127; |
|
} |
|
gettimeofday(&after, NULL); |
|
io_freeVars(&arr); |
|
printf("RPC ping #%d --- %f\n", i, (after.tv_sec - before.tv_sec) + |
|
(after.tv_usec - before.tv_usec) / 1.e6); |
|
} |
|
printf("\n\n3 pass>>> RPC ping\n\n"); |
|
for (i = 0; i < 10000; i++) { |
|
gettimeofday(&before, NULL); |
|
if ((ret = rpc_cli_ping(cli)) == -1) { |
|
printf("error %d:: errno=%d %s\n", i, rpc_GetErrno(), rpc_GetError()); |
|
rpc_cli_closeBLOBClient(&cli2); |
|
rpc_cli_closeClient(&cli); |
|
io_free(blob43); |
|
return 127; |
|
} |
|
gettimeofday(&after, NULL); |
|
printf("RPC ping seq[0x%04x] #%d --- %f\n", ret, i, |
|
(after.tv_sec - before.tv_sec) + (after.tv_usec - before.tv_usec) / 1.e6); |
|
} |
|
|
memset(blob43, 0, 512); |
memset(blob43, 0, 512); |
strlcpy(blob43, "aaaaaaaaaaaaaaa cddddddddddddddd zzzzzzzzzzzzzzzzzzzzz !!!!\n\n\n675675676...\n", 512); |
strlcpy(blob43, "aaaaaaaaaaaaaaa cddddddddddddddd zzzzzzzzzzzzzzzzzzzzz !!!!\n\n\n675675676...\n", 512); |
|
|
Line 42 int main()
|
Line 87 int main()
|
io_freeVars(&valz); |
io_freeVars(&valz); |
rpc_cli_closeBLOBClient(&cli2); |
rpc_cli_closeBLOBClient(&cli2); |
rpc_cli_closeClient(&cli); |
rpc_cli_closeClient(&cli); |
free(blob43); | io_free(blob43); |
return 2; |
return 2; |
} else |
} else |
printf("Get BLOB = %x\n", AIT_GET_BLOB(v)); |
printf("Get BLOB = %x\n", AIT_GET_BLOB(v)); |
Line 51 int main()
|
Line 96 int main()
|
AIT_SET_BLOB(&tval, 0x554C1BC7, BUFSIZ); |
AIT_SET_BLOB(&tval, 0x554C1BC7, BUFSIZ); |
printf("test not found blob=%d\n", rpc_cli_getBLOB(cli2, &tval, (void**) &mem)); |
printf("test not found blob=%d\n", rpc_cli_getBLOB(cli2, &tval, (void**) &mem)); |
if (mem) |
if (mem) |
free(mem); | io_free(mem); |
*/ |
*/ |
|
|
// for (i = 0; i < 1000000; i++) |
// for (i = 0; i < 1000000; i++) |
Line 60 int main()
|
Line 105 int main()
|
io_freeVars(&valz); |
io_freeVars(&valz); |
rpc_cli_closeBLOBClient(&cli2); |
rpc_cli_closeBLOBClient(&cli2); |
rpc_cli_closeClient(&cli); |
rpc_cli_closeClient(&cli); |
free(blob43); | io_free(blob43); |
return 2; |
return 2; |
} else { |
} else { |
printf("ret=%d\n", ret); |
printf("ret=%d\n", ret); |
Line 80 int main()
|
Line 125 int main()
|
// printf("+++++++++ test found blob=%d\n", rpc_cli_recvBLOB(cli2, v, (void**) &mem)); |
// printf("+++++++++ test found blob=%d\n", rpc_cli_recvBLOB(cli2, v, (void**) &mem)); |
if (mem) { |
if (mem) { |
printf("+++++++ BLOB=%s", mem); |
printf("+++++++ BLOB=%s", mem); |
free(mem); | io_free(mem); |
} |
} |
io_freeVars(&arr); |
io_freeVars(&arr); |
} |
} |
} |
} |
io_freeVars(&valz); |
io_freeVars(&valz); |
free(blob43); | io_free(blob43); |
|
|
if (rpc_cli_execCall(cli, RPC_REPLY, RC_aaa, NULL, &arr) < 0) { |
if (rpc_cli_execCall(cli, RPC_REPLY, RC_aaa, NULL, &arr) < 0) { |
printf("error:: \"aaa\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
printf("error:: \"aaa\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
Line 196 int main()
|
Line 241 int main()
|
AIT_GET_U8(io_array(arr, 2, ait_val_t*)), AIT_GET_I32(io_array(arr, 3, ait_val_t*))); |
AIT_GET_U8(io_array(arr, 2, ait_val_t*)), AIT_GET_I32(io_array(arr, 3, ait_val_t*))); |
io_freeVars(&arr); |
io_freeVars(&arr); |
|
|
rpc_cli_execCall(cli, RPC_NOREPLY, CALL_SRVSHUTDOWN, NULL, NULL); | if (argc > 1) |
| rpc_cli_execCall(cli, RPC_NOREPLY, CALL_SRVSHUTDOWN, NULL, NULL); |
|
|
rpc_cli_closeBLOBClient(&cli2); |
rpc_cli_closeBLOBClient(&cli2); |
rpc_cli_closeClient(&cli); |
rpc_cli_closeClient(&cli); |