Diff for /libaitrpc/example/tsrv.c between versions 1.1.1.1.2.5 and 1.1.1.1.2.9

version 1.1.1.1.2.5, 2010/07/07 15:18:22 version 1.1.1.1.2.9, 2011/03/15 17:10:58
Line 1 Line 1
 #include <stdio.h>  #include <stdio.h>
   #include <pthread.h>
 #include <aitrpc.h>  #include <aitrpc.h>
   
   
Line 6  int aaa(rpc_func_t *f, int in, rpc_val_t *iv) Line 7  int aaa(rpc_func_t *f, int in, rpc_val_t *iv)
 {  {
         rpc_blob_t *b;          rpc_blob_t *b;
   
        RPC_CALLBACK_CHK_NUM_ARGS(f, in);        RPC_CALLBACK_CHECK_INPUT(f);
   
         printf("%s(%d): Piuk! %s\n", __func__, __LINE__, f->func_name);          printf("%s(%d): Piuk! %s\n", __func__, __LINE__, f->func_name);
   
           /*
         b = rpc_srv_registerBLOB(f->func_parent, BUFSIZ);          b = rpc_srv_registerBLOB(f->func_parent, BUFSIZ);
         if (!b)          if (!b)
                 return -1;                  return -1;
Line 22  int aaa(rpc_func_t *f, int in, rpc_val_t *iv) Line 24  int aaa(rpc_func_t *f, int in, rpc_val_t *iv)
         strcpy(b->blob_data, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa dsfsfsfnskjfnk\n");          strcpy(b->blob_data, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa dsfsfsfnskjfnk\n");
   
         rpc_srv_blobUnmap(b);          rpc_srv_blobUnmap(b);
           */
         return 0;          return 0;
 }  }
   
Line 30  int BBB(rpc_func_t *f, int in, rpc_val_t *iv) Line 33  int BBB(rpc_func_t *f, int in, rpc_val_t *iv)
         rpc_val_t *v;          rpc_val_t *v;
         rpc_blob_t *b;          rpc_blob_t *b;
   
        RPC_CALLBACK_CHK_NUM_ARGS(f, in);        RPC_CALLBACK_CHECK_INPUT(f);
   
        printf("%s(%d): Piuk! %s  %d %s\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_I32(&iv[0]), RPC_GET_STR(&iv[1]), RPC_GET_BLOB(&iv[2]));
   
           // 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_declValsCall(f, 4);
         rpc_srv_getValsCall(f, &v);          rpc_srv_getValsCall(f, &v);
         RPC_SET_BUF(&v[0], "00!oo", 6);          RPC_SET_BUF(&v[0], "00!oo", 6);
         RPC_SET_I8(&v[1], 65);          RPC_SET_I8(&v[1], 65);
         RPC_SET_STR(&v[2], "Oho boho i cheburashka");          RPC_SET_STR(&v[2], "Oho boho i cheburashka");
   
           // 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
                   RPC_SET_BLOB2(&v[3], b);
   
         RPC_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);
                 return -1;                  return -1;
Line 78  int main() Line 93  int main()
                 return 1;                  return 1;
         }          }
   
        rpc_srv_registerCall(srv, NULL, "aaa", 0);        /* dump register functions
        rpc_srv_registerCall(srv, NULL, "BBB", 3); 
        rpc_srv_registerCall(srv, NULL, "dummy", 1); 
        rpc_srv_registerCall(srv, NULL, "xYz", 2); 
 
        rpc_srv_unregisterCall(srv, NULL, "dummy"); 
 
         for (f = srv->srv_funcs; f; f = f->func_next)          for (f = srv->srv_funcs; f; f = f->func_next)
                 printf("func::name=%s args=%d\n", f->func_name, f->func_args);                  printf("func::name=%s args=%d\n", f->func_name, f->func_args);
                   */
   
         if (!fork()) {          if (!fork()) {
                 setsid();                  setsid();
   
                pthread_create(&tid[1], NULL, rpc_srv_execBLOBServer, srv);                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_execServer(srv);
         }          }
   
         rpc_srv_endBLOBServer(srv);  
         rpc_srv_endServer(srv);          rpc_srv_endServer(srv);
         return 0;          return 0;
 }  }

Removed from v.1.1.1.1.2.5  
changed lines
  Added in v.1.1.1.1.2.9


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>