--- libaitrpc/example/tcli.c 2012/05/17 14:27:25 1.7.4.8 +++ libaitrpc/example/tcli.c 2012/11/19 12:43:21 1.10.2.2 @@ -4,19 +4,23 @@ #include "rc.h" -int main() +int main(int argc, char **argv) { rpc_cli_t *cli = NULL, *cli2 = NULL; int c, i, ret; ait_val_t tval, *v = NULL; 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); +// printf("MM model=%d\n", io_mm_inuse()); +// getchar(); + + cli = rpc_cli_openClient(100, 2, 1024 * 10, "127.0.0.1", 11111, SOCK_DGRAM); +// cli = rpc_cli_openClient(100, 2, 1024 * 10, "127.0.0.1", 11111, 0); if (!cli) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); - free(blob43); + io_free(blob43); return 1; } @@ -24,38 +28,53 @@ int main() if (!cli2) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); rpc_cli_closeClient(&cli); - free(blob43); + io_free(blob43); return 1; } - for (i = 0; i < 10000; i++) { + 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); - free(blob43); + 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\n>>> RPC ping without reply!!!\n\n"); + 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); - free(blob43); + io_free(blob43); return 127; } gettimeofday(&after, NULL); - io_freeVars(&arr); + 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); strlcpy(blob43, "aaaaaaaaaaaaaaa cddddddddddddddd zzzzzzzzzzzzzzzzzzzzz !!!!\n\n\n675675676...\n", 512); @@ -67,13 +86,12 @@ int main() AIT_SET_STR(v, "gniah_blah SHMINK!"); v = io_array(valz, 2, ait_val_t*); AIT_NEW_BLOB(v, 512); - printf("aaaaaaaaaaaaaaaaaaaaa\n"); if (rpc_cli_sendBLOB(cli2, v, blob43) == -1) { printf("!!!!! blob error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); io_freeVars(&valz); rpc_cli_closeBLOBClient(&cli2); rpc_cli_closeClient(&cli); - free(blob43); + io_free(blob43); return 2; } else printf("Get BLOB = %x\n", AIT_GET_BLOB(v)); @@ -82,7 +100,7 @@ int main() AIT_SET_BLOB(&tval, 0x554C1BC7, BUFSIZ); printf("test not found blob=%d\n", rpc_cli_getBLOB(cli2, &tval, (void**) &mem)); if (mem) - free(mem); + io_free(mem); */ // for (i = 0; i < 1000000; i++) @@ -91,7 +109,7 @@ int main() io_freeVars(&valz); rpc_cli_closeBLOBClient(&cli2); rpc_cli_closeClient(&cli); - free(blob43); + io_free(blob43); return 2; } else { printf("ret=%d\n", ret); @@ -111,13 +129,13 @@ int main() // printf("+++++++++ test found blob=%d\n", rpc_cli_recvBLOB(cli2, v, (void**) &mem)); if (mem) { printf("+++++++ BLOB=%s", mem); - free(mem); + io_free(mem); } - io_freeVars(&arr); + rpc_cli_freeCall(&arr); } } io_freeVars(&valz); - free(blob43); + io_free(blob43); if (rpc_cli_execCall(cli, RPC_REPLY, RC_aaa, NULL, &arr) < 0) { printf("error:: \"aaa\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); @@ -134,7 +152,7 @@ int main() printf("0) error:: \"xxx\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); io_freeVars(&valz); if (arr) - io_freeVars(&arr); + rpc_cli_freeCall(&arr); rpc_cli_closeBLOBClient(&cli2); rpc_cli_closeClient(&cli); return 3; @@ -146,7 +164,7 @@ int main() 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)); - io_freeVars(&arr); + rpc_cli_freeCall(&arr); } valz = io_allocVars(1); @@ -157,7 +175,7 @@ int main() printf("1) error:: \"xxx\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); io_freeVars(&valz); if (arr) - io_freeVars(&arr); + rpc_cli_freeCall(&arr); rpc_cli_closeBLOBClient(&cli2); rpc_cli_closeClient(&cli); return 3; @@ -169,7 +187,7 @@ int main() 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)); - io_freeVars(&arr); + rpc_cli_freeCall(&arr); } @@ -182,7 +200,7 @@ int main() printf("return=%d registeredClient\n", (arr ? io_arraySize(arr) : 0)); 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*))); - io_freeVars(&arr); + rpc_cli_freeCall(&arr); if (rpc_cli_execCall(cli, RPC_REPLY, CALL_BLOBCLIENTS, NULL, &arr) < 0) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); @@ -193,7 +211,7 @@ int main() printf("return=%d registeredBLOBClient\n", (arr ? io_arraySize(arr) : 0)); 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*))); - io_freeVars(&arr); + rpc_cli_freeCall(&arr); if (rpc_cli_execCall(cli, RPC_REPLY, CALL_BLOBVARS, NULL, &arr) < 0) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); @@ -203,7 +221,7 @@ int main() } 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*))); - io_freeVars(&arr); + rpc_cli_freeCall(&arr); if (rpc_cli_execCall(cli, RPC_REPLY, CALL_SRVCALLS, NULL, &arr) < 0) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); @@ -213,7 +231,7 @@ int main() } 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*))); - io_freeVars(&arr); + rpc_cli_freeCall(&arr); if (rpc_cli_execCall(cli, RPC_REPLY, CALL_SRVSESSIONS, NULL, &arr) < 0) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); @@ -225,9 +243,10 @@ int main() 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*)), AIT_GET_U8(io_array(arr, 2, ait_val_t*)), AIT_GET_I32(io_array(arr, 3, ait_val_t*))); - io_freeVars(&arr); + rpc_cli_freeCall(&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_closeClient(&cli);