version 1.5.2.3, 2012/03/14 13:29:11
|
version 1.7, 2012/03/29 01:34:16
|
Line 10 int aaa(rpc_func_t *f, int in, array_t *iv)
|
Line 10 int aaa(rpc_func_t *f, int in, array_t *iv)
|
|
|
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! %s\n", __func__, __LINE__, AIT_GET_STR(&f->func_name)); |
|
|
/* |
/* |
b = rpc_srv_registerBLOB(f->func_parent, BUFSIZ); |
b = rpc_srv_registerBLOB(f->func_parent, BUFSIZ); |
Line 37 int BBB(rpc_func_t *f, int in, array_t *iv)
|
Line 37 int BBB(rpc_func_t *f, int in, array_t *iv)
|
|
|
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! %s %d %s %X\n", __func__, __LINE__, AIT_GET_STR(&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! %s %d %s %X\n", __func__, __LINE__, AIT_GET_STR(&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 80 int BBB(rpc_func_t *f, int in, array_t *iv)
|
Line 80 int BBB(rpc_func_t *f, int in, array_t *iv)
|
return 33; |
return 33; |
} |
} |
|
|
|
int xxx(rpc_func_t *f, int in, array_t *iv) |
|
{ |
|
array_t *arr; |
|
ait_val_t *v; |
|
|
|
RPC_CALLBACK_CHECK_INPUT(f); |
|
|
|
printf("iv_s=%d\n", io_arraySize(iv)); |
|
printf("%s(%d): Piuk! %s --- %s\n", __func__, __LINE__, AIT_GET_STR(&f->func_name), |
|
AIT_GET_BUF(io_array(iv, 0, ait_val_t*))); |
|
fflush(stdout); |
|
|
|
rpc_srv_getVars(f, &arr); |
|
v = io_array(arr, 0, ait_val_t*); |
|
AIT_SET_DATA(v, "00!oo", 6); |
|
io_arraySet(arr, 0, v); |
|
v = io_array(arr, 1, ait_val_t*); |
|
AIT_SET_I8(v, 65); |
|
return 111; |
|
} |
|
|
|
io_enableDEBUG = 7; |
|
|
int main() |
int main() |
{ |
{ |
rpc_srv_t *srv; |
rpc_srv_t *srv; |
Line 102 int main()
|
Line 125 int main()
|
rpc_srv_registerCall(srv, NULL, "BBB", 4); |
rpc_srv_registerCall(srv, NULL, "BBB", 4); |
rpc_srv_registerCall(srv, NULL, "dummy", 1); |
rpc_srv_registerCall(srv, NULL, "dummy", 1); |
rpc_srv_registerCall(srv, NULL, "xYz", 2); |
rpc_srv_registerCall(srv, NULL, "xYz", 2); |
|
rpc_srv_registerCall(srv, NULL, "xxx", 2); |
|
|
/* dump register functions */ |
/* dump register functions */ |
/* |
/* |
for (f = srv->srv_funcs; f; f = f->func_next) |
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)); | printf("0.func::name=%s args=%d\n", AIT_GET_STR(&f->func_name), io_arraySize(f->func_vars)); |
*/ |
*/ |
|
|
rpc_srv_unregisterCall(srv, NULL, "dummy"); |
rpc_srv_unregisterCall(srv, NULL, "dummy"); |
Line 114 int main()
|
Line 138 int main()
|
/* dump register functions */ |
/* dump register functions */ |
/* |
/* |
for (f = srv->srv_funcs; f; f = f->func_next) |
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)); | printf("1.func::name=%s args=%d\n", AIT_GET_STR(&f->func_name), io_arraySize(f->func_vars)); |
*/ |
*/ |
|
|
// if (!fork()) { |
// if (!fork()) { |
///////// setsid(); |
///////// setsid(); |
|
|
//// rpc_srv_loopServer(srv); |
|
rpc_srv_execBLOBServer(srv); |
|
rpc_srv_loopServer(srv); |
rpc_srv_loopServer(srv); |
rpc_srv_execServer(srv, &ret); | //// rpc_srv_execServer(srv, &ret); |
// } |
// } |
|
|
rpc_srv_endBLOBServer(srv); |
rpc_srv_endBLOBServer(srv); |