--- libaitrpc/example/tsrv.c 2011/09/01 15:29:39 1.3.2.7 +++ libaitrpc/example/tsrv.c 2011/09/03 12:57:59 1.3.2.9 @@ -37,21 +37,21 @@ int BBB(rpc_func_t *f, int in, array_t *iv) RPC_CALLBACK_CHECK_INPUT(f); +// 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*)), - 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*))); // 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*))); +// 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*))); rpc_srv_getVars(f, &arr); @@ -71,11 +71,6 @@ int BBB(rpc_func_t *f, int in, array_t *iv) AIT_SET_BLOB2(v, 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"); @@ -121,9 +116,8 @@ int main() 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_loopServer(srv); + rpc_srv_execServer(srv, &ret); } rpc_srv_endBLOBServer(srv);