|
version 1.2.4.5, 2011/08/19 09:20:46
|
version 1.3.2.1, 2011/08/30 07:56:40
|
|
Line 3
|
Line 3
|
| #include <aitrpc.h> |
#include <aitrpc.h> |
| |
|
| |
|
| #define sTYPE SOCK_STREAM |
|
| |
|
| int aaa(rpc_func_t *f, int in, ait_val_t *iv) |
| int aaa(rpc_func_t *f, int in, rpc_val_t *iv) | |
| { |
{ |
| rpc_blob_t *b; |
rpc_blob_t *b; |
| |
|
|
Line 31 int aaa(rpc_func_t *f, int in, rpc_val_t *iv)
|
Line 29 int aaa(rpc_func_t *f, int in, rpc_val_t *iv)
|
| return 0; |
return 0; |
| } |
} |
| |
|
| int BBB(rpc_func_t *f, int in, rpc_val_t *iv) | int BBB(rpc_func_t *f, int in, ait_val_t *iv) |
| { |
{ |
| rpc_val_t *v; | ait_val_t *v; |
| rpc_blob_t *b; |
rpc_blob_t *b; |
| |
|
| 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__, f->func_name, |
| RPC_GET_I32(&iv[0]), RPC_GET_STR(&iv[1]), RPC_GET_BLOB(&iv[2])); | AIT_GET_I32(&iv[0]), AIT_GET_STR(&iv[1]), AIT_GET_BLOB(&iv[2])); |
| |
|
| // input blob object |
// input blob object |
| if (!(b = rpc_srv_getBLOB(f->func_parent, RPC_GET_BLOB(&iv[2])))) | if (!(b = rpc_srv_getBLOB(f->func_parent, AIT_GET_BLOB(&iv[2])))) |
| return -1; |
return -1; |
| if (rpc_srv_blobMap(f->func_parent, b) == -1) { |
if (rpc_srv_blobMap(f->func_parent, b) == -1) { |
| rpc_srv_blobFree(f->func_parent, b); |
rpc_srv_blobFree(f->func_parent, b); |
| return -1; |
return -1; |
| } |
} |
| printf("VAR=%X(%d):: %s\n", b->blob_var, b->blob_len, b->blob_data); |
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_unregisterBLOB(f->func_parent, AIT_GET_BLOB(&iv[2])); |
| |
|
| |
|
| rpc_srv_allocVars(f, 4); |
rpc_srv_allocVars(f, 4); |
| rpc_srv_getVars(f, &v); |
rpc_srv_getVars(f, &v); |
| RPC_SET_BUF(&v[0], "00!oo", 6); | AIT_SET_BUF(&v[0], "00!oo", 6); |
| RPC_SET_I8(&v[1], 65); | AIT_SET_I8(&v[1], 65); |
| RPC_SET_STR(&v[2], "Oho boho i cheburashka"); | AIT_SET_STR(&v[2], "Oho boho i cheburashka"); |
| |
|
| // return blob object |
// return blob object |
| b = rpc_srv_registerBLOB(f->func_parent, 128); |
b = rpc_srv_registerBLOB(f->func_parent, 128); |
| if (!b) |
if (!b) |
| return -1; |
return -1; |
| else |
else |
| RPC_SET_BLOB2(&v[3], b); | AIT_SET_BLOB2(&v[3], b); |
| |
|
| if (rpc_srv_blobMap(f->func_parent, b) == -1) { |
if (rpc_srv_blobMap(f->func_parent, b) == -1) { |
| rpc_srv_blobFree(f->func_parent, b); |
rpc_srv_blobFree(f->func_parent, b); |
|
Line 85 int main()
|
Line 83 int main()
|
| pthread_t tid[2]; |
pthread_t tid[2]; |
| int ret; |
int ret; |
| |
|
| srv = rpc_srv_initServer(100, 2, 1, sTYPE, AF_INET, "0.0.0.0", 11111); | srv = rpc_srv_initServer(100, 2, 1, AF_INET, "0.0.0.0", 11111); |
| | // srv = rpc_srv_initServer(100, 2, 1, AF_LOCAL, "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; |
| } |
} |
| |
|
| if (rpc_srv_initBLOBServer(srv, sTYPE, 0, "/tmp")) { | if (rpc_srv_initBLOBServer(srv, 0, "/tmp")) { |
| printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
| return 1; |
return 1; |
| } |
} |