version 1.1.1.1.2.6, 2010/07/07 15:18:22
|
version 1.3, 2011/08/29 22:37:06
|
Line 1
|
Line 1
|
#include <stdio.h> |
#include <stdio.h> |
|
#include <pthread.h> |
#include <aitrpc.h> |
#include <aitrpc.h> |
|
|
//rpc_val_t valz[3]; |
//rpc_val_t valz[3]; |
|
|
|
|
int main() |
int main() |
{ |
{ |
rpc_cli_t *cli, *cli2; |
rpc_cli_t *cli, *cli2; |
Line 10 int main()
|
Line 12 int main()
|
rpc_val_t tval, valz[3], *v = NULL; |
rpc_val_t tval, valz[3], *v = NULL; |
char *mem, *blob43 = malloc(512); |
char *mem, *blob43 = malloc(512); |
|
|
cli = rpc_cli_openClient(100, 2, 2, "127.0.0.1", 11111); | cli = rpc_cli_openClient(100, 2, AF_INET, "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()); |
return 1; |
return 1; |
Line 33 int main()
|
Line 36 int main()
|
} else |
} else |
printf("Get BLOB = %x\n", RPC_GET_BLOB(&valz[2])); |
printf("Get BLOB = %x\n", RPC_GET_BLOB(&valz[2])); |
|
|
|
/* test case for unknown blob ... |
RPC_SET_BLOB(&tval, 0x554C1BC7, BUFSIZ); |
RPC_SET_BLOB(&tval, 0x554C1BC7, BUFSIZ); |
printf("test not found blob=%d\n", rpc_cli_recvBLOB(cli2, &tval, (void**) &mem)); | printf("test not found blob=%d\n", rpc_cli_getBLOB(cli2, &tval, (void**) &mem)); |
if (mem) |
if (mem) |
free(mem); |
free(mem); |
|
*/ |
|
|
// for (i = 0; i < 1000000; i++) |
// for (i = 0; i < 1000000; i++) |
if ((ret = rpc_cli_execCall(cli, NULL, "BBB", 3, valz, &c, &v)) < 0) { |
if ((ret = rpc_cli_execCall(cli, NULL, "BBB", 3, valz, &c, &v)) < 0) { |
Line 51 int main()
|
Line 56 int main()
|
RPC_GET_I8(&v[1]), RPC_LEN_VAL(&v[1]), RPC_TYPE_VAL(&v[1])); |
RPC_GET_I8(&v[1]), RPC_LEN_VAL(&v[1]), RPC_TYPE_VAL(&v[1])); |
printf("ret_val2:: is_empty? %d %s len=%d type=%d\n", |
printf("ret_val2:: is_empty? %d %s len=%d type=%d\n", |
RPC_EMPTY_VAL(&v[2]), RPC_GET_STR(&v[2]), RPC_LEN_VAL(&v[2]), RPC_TYPE_VAL(&v[2])); |
RPC_EMPTY_VAL(&v[2]), RPC_GET_STR(&v[2]), RPC_LEN_VAL(&v[2]), RPC_TYPE_VAL(&v[2])); |
/* | printf("ret_val3:: %X %d\n", RPC_GET_BLOB(&v[3]), RPC_LEN_VAL(&v[3])); |
printf("test found blob=%d %X\n", rpc_cli_recvBLOB(cli2, &v[3], (void**) &mem), | // printf("test found blob=%d\n", rpc_cli_getBLOB(cli2, &v[3], (void**) &mem)); |
RPC_GET_BLOB(&v[3])); | printf("+++++++++ test found blob=%d\n", rpc_cli_recvBLOB(cli2, &v[3], (void**) &mem)); |
if (mem) { |
if (mem) { |
printf("BLOB=%s", mem); | printf("+++++++ BLOB=%s", mem); |
free(mem); |
free(mem); |
} |
} |
*/ |
|
RPC_FREE_VAL(&v[0]); |
RPC_FREE_VAL(&v[0]); |
RPC_FREE_VAL(&v[1]); |
RPC_FREE_VAL(&v[1]); |
RPC_FREE_VAL(&v[2]); |
RPC_FREE_VAL(&v[2]); |
Line 116 int main()
|
Line 120 int main()
|
RPC_GET_U32(&v[2]), RPC_GET_I32(&v[3])); |
RPC_GET_U32(&v[2]), RPC_GET_I32(&v[3])); |
rpc_cli_freeVals(c, v); |
rpc_cli_freeVals(c, v); |
|
|
// rpc_cli_execCall(cli, NULL, CALL_SRVSHUTDOWN, 0, NULL, 0, NULL); | rpc_cli_execCall(cli, NULL, CALL_SRVSHUTDOWN, 0, NULL, 0, NULL); |
|
|
rpc_cli_closeBLOBClient(cli2); |
rpc_cli_closeBLOBClient(cli2); |
rpc_cli_closeClient(cli); |
rpc_cli_closeClient(cli); |