--- libaitrpc/example/tsrv.c 2010/06/18 01:48:06 1.1 +++ libaitrpc/example/tsrv.c 2011/05/02 23:12:07 1.2 @@ -1,29 +1,77 @@ #include +#include #include -int aaa(void * const data, rpc_func_t *f, int in, rpc_val_t *iv) +int aaa(rpc_func_t *f, int in, rpc_val_t *iv) { - RPC_CALLBACK_CHECK_ARGS(f, in); + rpc_blob_t *b; + 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; + if (rpc_srv_blobMap(f->func_parent, b) == -1) { + rpc_srv_blobFree(f->func_parent, b); + return -1; + } + + memset(b->blob_data, 0, b->blob_len); + strcpy(b->blob_data, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa dsfsfsfnskjfnk\n"); + + rpc_srv_blobUnmap(b); + */ return 0; } -int BBB(void * const data, rpc_func_t *f, int in, rpc_val_t *iv) +int BBB(rpc_func_t *f, int in, rpc_val_t *iv) { rpc_val_t *v; + rpc_blob_t *b; - RPC_CALLBACK_CHECK_ARGS(f, in); + RPC_CALLBACK_CHECK_INPUT(f); - printf("%s(%d): Piuk! %s %d %s %d\n", __func__, __LINE__, f->func_name, - RPC_GET_I32(&iv[0]), RPC_GET_STR(&iv[1]), RPC_GET_U16(&iv[2])); + printf("%s(%d): Piuk! %s %d %s %X\n", __func__, __LINE__, f->func_name, + RPC_GET_I32(&iv[0]), RPC_GET_STR(&iv[1]), RPC_GET_BLOB(&iv[2])); - rpc_srv_declValsCall(f, 3); + // input blob object + if (!(b = rpc_srv_getBLOB(f->func_parent, RPC_GET_BLOB(&iv[2])))) + 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, RPC_GET_BLOB(&iv[2])); + + + 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"); + + // return blob object + b = rpc_srv_registerBLOB(f->func_parent, 128); + if (!b) + return -1; + else + RPC_SET_BLOB2(&v[3], b); + + if (rpc_srv_blobMap(f->func_parent, b) == -1) { + rpc_srv_blobFree(f->func_parent, b); + return -1; + } + + 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; } @@ -31,6 +79,8 @@ int main() { rpc_srv_t *srv; rpc_func_t *f; + pthread_t tid[2]; + int ret; srv = rpc_srv_initServer(100, 2, 1, 2, "0.0.0.0", 11111); if (!srv) { @@ -38,27 +88,28 @@ int main() 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 (rpc_srv_initBLOBServer(srv, 0, "/tmp")) { + printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + return 1; + } - rpc_srv_unregisterCall(srv, NULL, "dummy"); - + /* dump register functions for (f = srv->srv_funcs; f; f = f->func_next) printf("func::name=%s args=%d\n", f->func_name, f->func_args); + */ - switch (fork()) { - case -1: - return 1; - case 0: - setsid(); + if (!fork()) { + setsid(); - if (rpc_srv_execServer(srv) == -1) { - printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); - return 2; - } - break; + rpc_srv_registerCall(srv, NULL, "aaa", 0); + rpc_srv_registerCall(srv, NULL, "BBB", 4); + rpc_srv_registerCall(srv, NULL, "dummy", 1); + rpc_srv_registerCall(srv, NULL, "xYz", 2); + + rpc_srv_unregisterCall(srv, NULL, "dummy"); + + pthread_create(&tid[1], NULL, (void*(*)(void*)) rpc_srv_execBLOBServer, srv); + rpc_srv_execServer(srv); } rpc_srv_endServer(srv);