--- libaitrpc/example/tcli.c 2012/03/28 11:36:42 1.6.2.3 +++ libaitrpc/example/tcli.c 2012/05/16 14:08:52 1.7.4.1 @@ -2,9 +2,7 @@ #include #include -//ait_val_t valz[3]; - int main() { rpc_cli_t *cli, *cli2; @@ -13,16 +11,19 @@ int main() array_t *valz, *arr; char *mem, *blob43 = malloc(512); - cli = rpc_cli_openClient(100, 2, 1024 * 10, 0, AF_INET, "127.0.0.1", 11111); + cli = rpc_cli_openClient(100, 2, 1024 * 10, 0, "127.0.0.1", 11111); // cli = rpc_cli_openClient(100, 2, AF_LOCAL, "0.0.0.0", 11111); if (!cli) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + free(blob43); return 1; } cli2 = rpc_cli_openBLOBClient(cli, 0); if (!cli2) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + rpc_cli_closeClient(cli); + free(blob43); return 1; } @@ -38,6 +39,10 @@ int main() AIT_NEW_BLOB(v, 512); 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); return 2; } else printf("Get BLOB = %x\n", AIT_GET_BLOB(v)); @@ -52,6 +57,10 @@ int main() // for (i = 0; i < 1000000; i++) if ((ret = rpc_cli_execCall(cli, RPC_REPLY, NULL, "BBB", valz, &arr)) < 0) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + io_freeVars(&valz); + rpc_cli_closeBLOBClient(cli2); + rpc_cli_closeClient(cli); + free(blob43); return 2; } else { printf("ret=%d\n", ret); @@ -91,10 +100,15 @@ int main() AIT_SET_DATA(v, "1234567890", 11); io_arraySet(valz, 0, v); if (rpc_cli_execCall(cli, RPC_NOREPLY, NULL, "xxx", valz, &arr) < 0) { - printf("error:: \"xxx\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + printf("0) error:: \"xxx\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + io_freeVars(&valz); + if (arr) + io_freeVars(&arr); + rpc_cli_closeBLOBClient(cli2); + rpc_cli_closeClient(cli); return 3; } - printf("return=%d xxx arr=%p\n", arr ? io_arraySize(arr) : 42424242, arr); + printf("0) return=%d xxx arr=%p\n", arr ? io_arraySize(arr) : 42424242, arr); io_freeVars(&valz); if (arr) { printf("...REPLY --- "); @@ -109,10 +123,15 @@ int main() AIT_SET_DATA(v, "0987654321", 11); io_arraySet(valz, 0, v); if (rpc_cli_execCall(cli, RPC_REPLY, NULL, "xxx", valz, &arr) < 0) { - printf("error:: \"xxx\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + printf("1) error:: \"xxx\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + io_freeVars(&valz); + if (arr) + io_freeVars(&arr); + rpc_cli_closeBLOBClient(cli2); + rpc_cli_closeClient(cli); return 3; } - printf("return=%d xxx arr=%p\n", arr ? io_arraySize(arr) : 42424242, arr); + printf("1) return=%d xxx arr=%p\n", arr ? io_arraySize(arr) : 42424242, arr); io_freeVars(&valz); if (arr) { printf("@REPLY --- "); @@ -125,6 +144,8 @@ int main() if (rpc_cli_execCall(cli, RPC_REPLY, NULL, CALL_SRVCLIENTS, NULL, &arr) < 0) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + rpc_cli_closeBLOBClient(cli2); + rpc_cli_closeClient(cli); return 4; } printf("return=%d registeredClient\n", (arr ? io_arraySize(arr) : 0)); @@ -134,6 +155,8 @@ int main() if (rpc_cli_execCall(cli, RPC_REPLY, NULL, CALL_BLOBCLIENTS, NULL, &arr) < 0) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + rpc_cli_closeBLOBClient(cli2); + rpc_cli_closeClient(cli); return 4; } printf("return=%d registeredBLOBClient\n", (arr ? io_arraySize(arr) : 0)); @@ -143,6 +166,8 @@ int main() if (rpc_cli_execCall(cli, RPC_REPLY, NULL, CALL_BLOBVARS, NULL, &arr) < 0) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + rpc_cli_closeBLOBClient(cli2); + rpc_cli_closeClient(cli); return 5; } for (i = 0; i < (arr ? io_arraySize(arr) : 0); i++) @@ -151,6 +176,8 @@ int main() if (rpc_cli_execCall(cli, RPC_REPLY, NULL, CALL_SRVCALLS, NULL, &arr) < 0) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + rpc_cli_closeBLOBClient(cli2); + rpc_cli_closeClient(cli); return 5; } for (i = 0; i < (arr ? io_arraySize(arr) : 0); i++) @@ -159,6 +186,8 @@ int main() if (rpc_cli_execCall(cli, RPC_REPLY, NULL, CALL_SRVSESSIONS, NULL, &arr) < 0) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + rpc_cli_closeBLOBClient(cli2); + rpc_cli_closeClient(cli); return 6; } printf("c=%d v=%p\n", io_arraySize(arr), arr);