version 1.4.2.1, 2011/09/07 09:27:38
|
version 1.7.4.5, 2012/05/17 09:32:51
|
Line 1
|
Line 1
|
#include <stdio.h> |
#include <stdio.h> |
#include <pthread.h> |
#include <pthread.h> |
#include <aitrpc.h> |
#include <aitrpc.h> |
|
#include "rc.h" |
|
|
|
|
| int aaa(rpc_func_t *f, struct tagRPCCall *rpc, array_t *iv) |
int aaa(rpc_func_t *f, int in, array_t *iv) | |
{ |
{ |
rpc_blob_t *b; |
rpc_blob_t *b; |
|
|
RPC_CALLBACK_CHECK_INPUT(f); |
RPC_CALLBACK_CHECK_INPUT(f); |
|
|
printf("%s(%d): Piuk! %s\n", __func__, __LINE__, f->func_name); | printf("%s(%d): Piuk! %p(0x%x)\n", __func__, __LINE__, |
| AIT_GET_PTR(&f->func_name), AIT_KEY(&f->func_name)); |
|
|
/* |
/* |
b = rpc_srv_registerBLOB(f->func_parent, BUFSIZ); |
b = rpc_srv_registerBLOB(f->func_parent, BUFSIZ); |
Line 29 int aaa(rpc_func_t *f, int in, array_t *iv)
|
Line 30 int aaa(rpc_func_t *f, int in, array_t *iv)
|
return 0; |
return 0; |
} |
} |
|
|
int BBB(rpc_func_t *f, int in, array_t *iv) | int BBB(rpc_func_t *f, struct tagRPCCall *rpc, array_t *iv) |
{ |
{ |
ait_val_t *v; |
ait_val_t *v; |
rpc_blob_t *b; |
rpc_blob_t *b; |
array_t *arr; |
|
|
|
RPC_CALLBACK_CHECK_INPUT(f); |
RPC_CALLBACK_CHECK_INPUT(f); |
|
|
printf("%s(%d): Piuk! %s %d %s %X\n", __func__, __LINE__, f->func_name, | printf("%s(%d): Piuk! %p(0x%x) %d %s %X\n", __func__, __LINE__, |
| AIT_GET_PTR(&f->func_name), AIT_KEY(&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_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*))); |
AIT_GET_BLOB(io_array(iv, 2, ait_val_t*))); |
printf("%s(%d): Piuk! %s %d %s %X\n", __func__, __LINE__, f->func_name, | printf("%s(%d): Piuk! %p(0x%x) %d %s %X\n", __func__, __LINE__, |
| AIT_GET_PTR(&f->func_name), AIT_KEY(&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_I32(io_array(iv, 0, ait_val_t*)), AIT_GET_STR(io_array(iv, 1, ait_val_t*))); |
|
|
// input blob object |
// input blob object |
Line 55 int BBB(rpc_func_t *f, int in, array_t *iv)
|
Line 57 int BBB(rpc_func_t *f, int in, array_t *iv)
|
rpc_srv_unregisterBLOB(f->func_parent, AIT_GET_BLOB(io_array(iv, 2, ait_val_t*))); |
rpc_srv_unregisterBLOB(f->func_parent, AIT_GET_BLOB(io_array(iv, 2, ait_val_t*))); |
|
|
|
|
rpc_srv_getVars(f, &arr); | v = io_array(f->func_vars, 0, ait_val_t*); |
v = io_array(arr, 0, ait_val_t*); | |
AIT_SET_BUF(v, "00!oo", 6); |
AIT_SET_BUF(v, "00!oo", 6); |
v = io_array(arr, 1, ait_val_t*); | v = io_array(f->func_vars, 1, ait_val_t*); |
AIT_SET_I8(v, 65); |
AIT_SET_I8(v, 65); |
v = io_array(arr, 2, ait_val_t*); | v = io_array(f->func_vars, 2, ait_val_t*); |
AIT_SET_STR(v, "Oho boho i cheburashka"); |
AIT_SET_STR(v, "Oho boho i cheburashka"); |
|
|
// return blob object |
// return blob object |
Line 68 int BBB(rpc_func_t *f, int in, array_t *iv)
|
Line 69 int BBB(rpc_func_t *f, int in, array_t *iv)
|
if (!b) |
if (!b) |
return -1; |
return -1; |
else { |
else { |
v = io_array(arr, 3, ait_val_t*); | v = io_array(f->func_vars, 3, ait_val_t*); |
AIT_SET_BLOB2(v, b); |
AIT_SET_BLOB2(v, b); |
} |
} |
|
|
Line 80 int BBB(rpc_func_t *f, int in, array_t *iv)
|
Line 81 int BBB(rpc_func_t *f, int in, array_t *iv)
|
return 33; |
return 33; |
} |
} |
|
|
|
int xxx(rpc_func_t *f, struct tagRPCCall *rpc, array_t *iv) |
|
{ |
|
ait_val_t *v; |
|
|
|
RPC_CALLBACK_CHECK_INPUT(f); |
|
|
|
printf("iv_s=%d\n", io_arraySize(iv)); |
|
printf("%s(%d): Piuk! %p(0x%x) --- %s\n", __func__, __LINE__, |
|
AIT_GET_PTR(&f->func_name), AIT_KEY(&f->func_name), |
|
AIT_GET_BUF(io_array(iv, 0, ait_val_t*))); |
|
fflush(stdout); |
|
|
|
v = io_array(f->func_vars, 0, ait_val_t*); |
|
AIT_SET_DATA(v, "00!oo", 6); |
|
io_arraySet(f->func_vars, 0, v); |
|
v = io_array(f->func_vars, 1, ait_val_t*); |
|
AIT_SET_I8(v, 65); |
|
io_arraySet(f->func_vars, 1, v); |
|
return 111; |
|
} |
|
|
|
int xYz(rpc_func_t *f, struct tagRPCCall *rpc, array_t *iv) |
|
{ |
|
return 0; |
|
} |
|
|
|
|
int main() |
int main() |
{ |
{ |
rpc_srv_t *srv; |
rpc_srv_t *srv; |
rpc_func_t *f; |
rpc_func_t *f; |
int ret; |
int ret; |
|
|
srv = rpc_srv_initServer(100, 2, 1, 1024 * 10, AF_INET, "0.0.0.0", 11111); | srv = rpc_srv_initServer(100, 2, 2, 1024 * 10, "0.0.0.0", 11111); |
// srv = rpc_srv_initServer(100, 2, 1, AF_LOCAL, "0.0.0.0", 11111); | // srv = rpc_srv_initServer(100, 2, 1, 1024 * 10, "0.0.0.0", 11111); |
if (!srv) { |
if (!srv) { |
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 98 int main()
|
Line 126 int main()
|
return 1; |
return 1; |
} |
} |
|
|
if (!fork()) { | rpc_srv_registerCall(srv, RC_aaa, aaa, 0); |
setsid(); | rpc_srv_registerCall(srv, RC_BBB, BBB, 4); |
| rpc_srv_registerCall(srv, 3, NULL, 1); |
| rpc_srv_registerCall(srv, RC_xYz, xYz, 2); |
| rpc_srv_registerCall(srv, RC_xxx, xxx, 2); |
|
|
rpc_srv_registerCall(srv, NULL, "aaa", 0); | rpc_srv_unregisterCall(srv, 4); |
rpc_srv_registerCall(srv, NULL, "BBB", 4); | |
rpc_srv_registerCall(srv, NULL, "dummy", 1); | |
rpc_srv_registerCall(srv, NULL, "xYz", 2); | |
|
|
/* dump register functions */ | rpc_register_srvServices(srv); |
/* | rpc_register_blobServices(srv); |
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)); | |
*/ | |
|
|
rpc_srv_unregisterCall(srv, NULL, "dummy"); | rpc_srv_execBLOBServer(srv); |
| rpc_srv_loopServer(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)); |
|
*/ |
|
|
|
// rpc_srv_loopServer(srv); |
|
rpc_srv_execServer(srv, &ret); |
|
} |
|
|
|
rpc_srv_endBLOBServer(srv); |
rpc_srv_endBLOBServer(srv); |
rpc_srv_endServer(srv); | rpc_srv_endServer(&srv); |
| |
return 0; |
return 0; |
} |
} |