|
version 1.3.2.7, 2011/09/03 12:39:27
|
version 1.10, 2012/11/13 09:22:10
|
|
Line 1
|
Line 1
|
| #include <stdio.h> |
#include <stdio.h> |
| #include <pthread.h> |
#include <pthread.h> |
| #include <aitrpc.h> |
#include <aitrpc.h> |
| |
#include "rc.h" |
| |
|
| //ait_val_t valz[3]; |
|
| |
|
| int main(int argc, char **argv) |
| int main() | |
| { |
{ |
| rpc_cli_t *cli, *cli2; | 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, AF_INET, "127.0.0.1", 11111); | cli = rpc_cli_openClient(100, 2, 1024 * 10, "127.0.0.1", 11111); |
| // cli = rpc_cli_openClient(100, 2, AF_LOCAL, "0.0.0.0", 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()); |
| |
io_free(blob43); |
| return 1; |
return 1; |
| } |
} |
| |
|
| cli2 = rpc_cli_openBLOBClient(cli, 0); |
cli2 = rpc_cli_openBLOBClient(cli, 0); |
| 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); |
| |
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); |
| |
rpc_cli_freeCall(&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); |
| |
|
| valz = rpc_cli_allocVals(2); | valz = io_allocVars(3); |
| v = io_array(valz, 0, ait_val_t*); |
v = io_array(valz, 0, ait_val_t*); |
| AIT_SET_I32(v, 12345678); |
AIT_SET_I32(v, 12345678); |
| v = io_array(valz, 1, ait_val_t*); |
v = io_array(valz, 1, ait_val_t*); |
| AIT_SET_STR(v, "gniah_blah SHMINK!"); |
AIT_SET_STR(v, "gniah_blah SHMINK!"); |
| // v = io_array(valz, 2, ait_val_t*); | v = io_array(valz, 2, ait_val_t*); |
| // AIT_NEW_BLOB(v, 512); | AIT_NEW_BLOB(v, 512); |
| // if (rpc_cli_sendBLOB(cli2, v, blob43) == -1) { | if (rpc_cli_sendBLOB(cli2, v, blob43) == -1) { |
| // printf("!!!!! blob error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); | printf("!!!!! blob error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
| // return 2; | io_freeVars(&valz); |
| // } else | rpc_cli_closeBLOBClient(&cli2); |
| // printf("Get BLOB = %x\n", AIT_GET_BLOB(v)); | rpc_cli_closeClient(&cli); |
| | io_free(blob43); |
| | return 2; |
| | } else |
| | printf("Get BLOB = %x\n", AIT_GET_BLOB(v)); |
| |
|
| /* test case for unknown blob ... |
/* test case for unknown blob ... |
| 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++) |
| if ((ret = rpc_cli_execCall(cli, NULL, "BBB", valz, &arr)) < 0) { | if ((ret = rpc_cli_execCall(cli, RPC_REPLY, RC_BBB, valz, &arr)) < 0) { |
| printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
| |
io_freeVars(&valz); |
| |
rpc_cli_closeBLOBClient(&cli2); |
| |
rpc_cli_closeClient(&cli); |
| |
io_free(blob43); |
| return 2; |
return 2; |
| } else { |
} else { |
| printf("ret=%d\n", ret); |
printf("ret=%d\n", ret); |
|
Line 65 int main()
|
Line 119 int main()
|
| v = io_array(arr, 2, ait_val_t*); |
v = io_array(arr, 2, ait_val_t*); |
| printf("ret_val2:: is_empty? %d %s len=%d type=%d\n", |
printf("ret_val2:: is_empty? %d %s len=%d type=%d\n", |
| AIT_ISEMPTY(v), AIT_GET_STR(v), AIT_LEN(v), AIT_TYPE(v)); |
AIT_ISEMPTY(v), AIT_GET_STR(v), AIT_LEN(v), AIT_TYPE(v)); |
| // v = io_array(arr, 3, ait_val_t*); | v = io_array(arr, 3, ait_val_t*); |
| // printf("ret_val3:: %X %d\n", AIT_GET_BLOB(v), AIT_LEN(v)); | printf("ret_val3:: %X %d\n", AIT_GET_BLOB(v), AIT_LEN(v)); |
| // printf("test found blob=%d\n", rpc_cli_getBLOB(cli2, v, (void**) &mem)); | printf("test found blob=%d\n", rpc_cli_getBLOB(cli2, v, (void**) &mem)); |
| //// 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); |
| // } | } |
| rpc_cli_freeVals(&arr); | rpc_cli_freeCall(&arr); |
| } |
} |
| } |
} |
| rpc_cli_freeVals(&valz); | io_freeVars(&valz); |
| free(blob43); | io_free(blob43); |
| |
|
| if (rpc_cli_execCall(cli, NULL, "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()); |
| return 3; |
return 3; |
| } |
} |
| printf("return=%d aaa arr=%p\n", arr ? io_arraySize(arr) : 42424242, arr); |
printf("return=%d aaa arr=%p\n", arr ? io_arraySize(arr) : 42424242, arr); |
| |
|
| if (rpc_cli_execCall(cli, NULL, CALL_SRVCLIENTS, NULL, &arr) < 0) { | |
| | valz = io_allocVars(1); |
| | v = io_array(valz, 0, ait_val_t*); |
| | AIT_SET_DATA(v, "1234567890", 11); |
| | io_arraySet(valz, 0, v); |
| | if (rpc_cli_execCall(cli, RPC_NOREPLY, RC_xxx, valz, &arr) < 0) { |
| | printf("0) error:: \"xxx\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
| | io_freeVars(&valz); |
| | if (arr) |
| | rpc_cli_freeCall(&arr); |
| | rpc_cli_closeBLOBClient(&cli2); |
| | rpc_cli_closeClient(&cli); |
| | return 3; |
| | } |
| | printf("0) return=%d xxx arr=%p\n", arr ? io_arraySize(arr) : 42424242, arr); |
| | io_freeVars(&valz); |
| | if (arr) { |
| | printf("...REPLY --- "); |
| | v = io_array(arr, 0, ait_val_t*); |
| | printf("ret_val0:: %p %s len=%d type=%d\n", |
| | v, AIT_GET_BUF(v), AIT_LEN(v), AIT_TYPE(v)); |
| | rpc_cli_freeCall(&arr); |
| | } |
| | |
| | valz = io_allocVars(1); |
| | v = io_array(valz, 0, ait_val_t*); |
| | AIT_SET_DATA(v, "0987654321", 11); |
| | io_arraySet(valz, 0, v); |
| | if (rpc_cli_execCall(cli, RPC_REPLY, RC_xxx, valz, &arr) < 0) { |
| | printf("1) error:: \"xxx\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
| | io_freeVars(&valz); |
| | if (arr) |
| | rpc_cli_freeCall(&arr); |
| | rpc_cli_closeBLOBClient(&cli2); |
| | rpc_cli_closeClient(&cli); |
| | return 3; |
| | } |
| | printf("1) return=%d xxx arr=%p\n", arr ? io_arraySize(arr) : 42424242, arr); |
| | io_freeVars(&valz); |
| | if (arr) { |
| | printf("@REPLY --- "); |
| | v = io_array(arr, 0, ait_val_t*); |
| | printf("ret_val0:: %p %s len=%d type=%d\n", |
| | v, AIT_GET_BUF(v), AIT_LEN(v), AIT_TYPE(v)); |
| | rpc_cli_freeCall(&arr); |
| | } |
| | |
| | |
| | if (rpc_cli_execCall(cli, RPC_REPLY, CALL_SRVCLIENTS, NULL, &arr) < 0) { |
| printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
| |
rpc_cli_closeBLOBClient(&cli2); |
| |
rpc_cli_closeClient(&cli); |
| return 4; |
return 4; |
| } |
} |
| printf("return=%d registeredClient\n", (arr ? io_arraySize(arr) : 0)); |
printf("return=%d registeredClient\n", (arr ? io_arraySize(arr) : 0)); |
| for (i = 0; i < (arr ? io_arraySize(arr) : 0); i++) |
for (i = 0; i < (arr ? io_arraySize(arr) : 0); i++) |
| printf("registeredClient(%d)=%s\n", i, AIT_GET_STR(io_array(arr, i, ait_val_t*))); |
printf("registeredClient(%d)=%s\n", i, AIT_GET_STR(io_array(arr, i, ait_val_t*))); |
| rpc_cli_freeVals(&arr); | rpc_cli_freeCall(&arr); |
| /* | |
| if (rpc_cli_execCall(cli, NULL, CALL_BLOBCLIENTS, NULL, &arr) < 0) { | if (rpc_cli_execCall(cli, RPC_REPLY, CALL_BLOBCLIENTS, NULL, &arr) < 0) { |
| printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
| |
rpc_cli_closeBLOBClient(&cli2); |
| |
rpc_cli_closeClient(&cli); |
| return 4; |
return 4; |
| } |
} |
| printf("return=%d registeredBLOBClient\n", (arr ? io_arraySize(arr) : 0)); |
printf("return=%d registeredBLOBClient\n", (arr ? io_arraySize(arr) : 0)); |
| for (i = 0; i < (arr ? io_arraySize(arr) : 0); i++) |
for (i = 0; i < (arr ? io_arraySize(arr) : 0); i++) |
| printf("registeredBLOBClient(%d)=%s\n", i, AIT_GET_STR(io_array(arr, i, ait_val_t*))); |
printf("registeredBLOBClient(%d)=%s\n", i, AIT_GET_STR(io_array(arr, i, ait_val_t*))); |
| rpc_cli_freeVals(&arr); | rpc_cli_freeCall(&arr); |
| |
| if (rpc_cli_execCall(cli, NULL, CALL_BLOBVARS, NULL, &arr) < 0) { | if (rpc_cli_execCall(cli, RPC_REPLY, CALL_BLOBVARS, NULL, &arr) < 0) { |
| printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
| |
rpc_cli_closeBLOBClient(&cli2); |
| |
rpc_cli_closeClient(&cli); |
| return 5; |
return 5; |
| } |
} |
| for (i = 0; i < (arr ? io_arraySize(arr) : 0); i++) |
for (i = 0; i < (arr ? io_arraySize(arr) : 0); i++) |
| printf("registeredBLOBVars(%d)=%s\n", i, AIT_GET_STR(io_array(arr, i, ait_val_t*))); |
printf("registeredBLOBVars(%d)=%s\n", i, AIT_GET_STR(io_array(arr, i, ait_val_t*))); |
| rpc_cli_freeVals(&arr); | rpc_cli_freeCall(&arr); |
| */ | |
| if (rpc_cli_execCall(cli, NULL, CALL_SRVCALLS, NULL, &arr) < 0) { | if (rpc_cli_execCall(cli, RPC_REPLY, CALL_SRVCALLS, NULL, &arr) < 0) { |
| printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
| |
rpc_cli_closeBLOBClient(&cli2); |
| |
rpc_cli_closeClient(&cli); |
| return 5; |
return 5; |
| } |
} |
| for (i = 0; i < (arr ? io_arraySize(arr) : 0); i++) |
for (i = 0; i < (arr ? io_arraySize(arr) : 0); i++) |
| printf("registeredCall(%d)=%s\n", i, AIT_GET_STR(io_array(arr, i, ait_val_t*))); |
printf("registeredCall(%d)=%s\n", i, AIT_GET_STR(io_array(arr, i, ait_val_t*))); |
| rpc_cli_freeVals(&arr); | rpc_cli_freeCall(&arr); |
| if (rpc_cli_execCall(cli, NULL, CALL_SRVSESSIONS, NULL, &arr) < 0) { | |
| | if (rpc_cli_execCall(cli, RPC_REPLY, CALL_SRVSESSIONS, NULL, &arr) < 0) { |
| printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
| |
rpc_cli_closeBLOBClient(&cli2); |
| |
rpc_cli_closeClient(&cli); |
| return 6; |
return 6; |
| } |
} |
| printf("c=%d v=%p\n", io_arraySize(arr), arr); |
printf("c=%d v=%p\n", io_arraySize(arr), arr); |
| printf("session(%d:%d:%d) clients=%d\n", (uint8_t) AIT_GET_U8(io_array(arr, 0, ait_val_t*)), |
printf("session(%d:%d:%d) clients=%d\n", (uint8_t) AIT_GET_U8(io_array(arr, 0, ait_val_t*)), |
| (uint32_t) AIT_GET_U32(io_array(arr, 1, ait_val_t*)), |
(uint32_t) AIT_GET_U32(io_array(arr, 1, ait_val_t*)), |
| AIT_GET_U32(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*))); |
| rpc_cli_freeVals(&arr); | rpc_cli_freeCall(&arr); |
| |
|
| rpc_cli_execCall(cli, NULL, 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); |
| return 0; |
return 0; |
| } |
} |