--- libaitrpc/example/tsrv.c 2010/07/07 15:18:22 1.1.1.1.2.5 +++ libaitrpc/example/tsrv.c 2011/09/01 14:33:00 1.3.2.5 @@ -1,15 +1,18 @@ #include +#include #include -int aaa(rpc_func_t *f, int in, rpc_val_t *iv) + +int aaa(rpc_func_t *f, int in, array_t *iv) { rpc_blob_t *b; - RPC_CALLBACK_CHK_NUM_ARGS(f, in); + RPC_CALLBACK_CHECK_INPUT(f); printf("%s(%d): Piuk! %s\n", __func__, __LINE__, f->func_name); + /* b = rpc_srv_registerBLOB(f->func_parent, BUFSIZ); if (!b) return -1; @@ -22,41 +25,60 @@ int aaa(rpc_func_t *f, int in, rpc_val_t *iv) strcpy(b->blob_data, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa dsfsfsfnskjfnk\n"); rpc_srv_blobUnmap(b); + */ return 0; } -int BBB(rpc_func_t *f, int in, rpc_val_t *iv) +int BBB(rpc_func_t *f, int in, array_t *iv) { - rpc_val_t *v; + ait_val_t *v; rpc_blob_t *b; + array_t *arr; - RPC_CALLBACK_CHK_NUM_ARGS(f, in); + RPC_CALLBACK_CHECK_INPUT(f); - printf("%s(%d): Piuk! %s %d %s\n", __func__, __LINE__, f->func_name, - RPC_GET_I32(&iv[0]), RPC_GET_STR(&iv[1])); +// printf("%s(%d): Piuk! %s %d %s %X\n", __func__, __LINE__, f->func_name, +// AIT_GET_I32(io_array(iv, 0, ait_val_t*)), AIT_GET_STR(io_array(iv, 1, ait_val_t*)), +// AIT_GET_BLOB(io_array(iv, 2, ait_val_t*))); + printf("%s(%d): Piuk! %s %d %s %X\n", __func__, __LINE__, f->func_name, + AIT_GET_I32(io_array(iv, 0, ait_val_t*)), AIT_GET_STR(io_array(iv, 1, ait_val_t*))); - rpc_srv_declValsCall(f, 4); - rpc_srv_getValsCall(f, &v); - RPC_SET_BUF(&v[0], "00!oo", 6); - RPC_SET_I8(&v[1], 65); - RPC_SET_STR(&v[2], "Oho boho i cheburashka"); + // input blob object +// if (!(b = rpc_srv_getBLOB(f->func_parent, AIT_GET_BLOB(io_array(iv, 2, ait_val_t*))))) +// return -1; +// if (rpc_srv_blobMap(f->func_parent, b) == -1) { +// rpc_srv_blobFree(f->func_parent, b); +// return -1; +// } +// printf("VAR=%X(%d):: %s\n", b->blob_var, b->blob_len, b->blob_data); +// rpc_srv_unregisterBLOB(f->func_parent, AIT_GET_BLOB(io_array(iv, 2, ait_val_t*))); - b = rpc_srv_registerBLOB(f->func_parent, 128); - if (!b) - return -1; - RPC_SET_BLOB2(&v[3], b); + rpc_srv_getVars(f, &arr); + v = io_array(arr, 0, ait_val_t*); + AIT_SET_BUF(v, "00!oo", 6); + v = io_array(arr, 1, ait_val_t*); + AIT_SET_I8(v, 65); + v = io_array(arr, 2, ait_val_t*); + AIT_SET_STR(v, "Oho boho i cheburashka"); - if (rpc_srv_blobMap(f->func_parent, b) == -1) { - rpc_srv_blobFree(f->func_parent, b); - return -1; - } + // return blob object +// b = rpc_srv_registerBLOB(f->func_parent, 128); +// if (!b) +// return -1; +// else +// AIT_SET_BLOB2(io_array(arr, 3, ait_val_t*), b); - printf("data=%p blen=%d\n", b->blob_data, b->blob_len); - memset(b->blob_data, 0, b->blob_len); - strcpy(b->blob_data, "Hello Worldzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz mzdnfdskf\naddfs\n"); +// if (rpc_srv_blobMap(f->func_parent, b) == -1) { +// rpc_srv_blobFree(f->func_parent, b); +// return -1; +// } - rpc_srv_blobUnmap(b); +// printf("data=%p blen=%d\n", b->blob_data, b->blob_len); +// memset(b->blob_data, 0, b->blob_len); +// strcpy(b->blob_data, "Hello Worldzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz mzdnfdskf\naddfs\n"); + +// rpc_srv_blobUnmap(b); return 33; } @@ -67,35 +89,44 @@ int main() pthread_t tid[2]; int ret; - srv = rpc_srv_initServer(100, 2, 1, 2, "0.0.0.0", 11111); + srv = rpc_srv_initServer(100, 2, 1, 1024 * 10, AF_INET, "0.0.0.0", 11111); +// srv = rpc_srv_initServer(100, 2, 1, AF_LOCAL, "0.0.0.0", 11111); if (!srv) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); return 1; } + /* if (rpc_srv_initBLOBServer(srv, 0, "/tmp")) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); return 1; } + */ - rpc_srv_registerCall(srv, NULL, "aaa", 0); - rpc_srv_registerCall(srv, NULL, "BBB", 3); - rpc_srv_registerCall(srv, NULL, "dummy", 1); - rpc_srv_registerCall(srv, NULL, "xYz", 2); + if (!fork()) { + setsid(); - rpc_srv_unregisterCall(srv, NULL, "dummy"); + rpc_srv_registerCall(srv, NULL, "aaa", 0); + rpc_srv_registerCall(srv, NULL, "BBB", /*4*/ 3); + rpc_srv_registerCall(srv, NULL, "dummy", 1); + rpc_srv_registerCall(srv, NULL, "xYz", 2); - for (f = srv->srv_funcs; f; f = f->func_next) - printf("func::name=%s args=%d\n", f->func_name, f->func_args); + /* dump register functions */ + for (f = srv->srv_funcs; f; f = f->func_next) + printf("0.func::name=%s args=%d\n", f->func_name, io_arraySize(f->func_vars)); - if (!fork()) { - setsid(); + rpc_srv_unregisterCall(srv, NULL, "dummy"); - pthread_create(&tid[1], NULL, rpc_srv_execBLOBServer, srv); + /* dump register functions */ + for (f = srv->srv_funcs; f; f = f->func_next) + printf("1.func::name=%s args=%d\n", f->func_name, io_arraySize(f->func_vars)); + +// pthread_create(&tid[1], NULL, (void*(*)(void*)) rpc_srv_execBLOBServer, srv); +// pthread_detach(tid[1]); rpc_srv_execServer(srv); } - rpc_srv_endBLOBServer(srv); +// rpc_srv_endBLOBServer(srv); rpc_srv_endServer(srv); return 0; }