Diff for /libaitrpc/example/tcli.c between versions 1.8 and 1.9

version 1.8, 2012/05/19 00:29:49 version 1.9, 2012/07/22 20:44:13
Line 10  int main(int argc, char **argv) Line 10  int main(int argc, char **argv)
         int c, i, ret;          int c, i, ret;
         ait_val_t tval, *v = NULL;          ait_val_t tval, *v = NULL;
         array_t *valz, *arr;          array_t *valz, *arr;
        char *mem, *blob43 = malloc(512);        char *mem, *blob43 = io_malloc(512);
         struct timeval after, before;          struct timeval after, before;
   
         cli = rpc_cli_openClient(100, 2, 1024 * 10, "127.0.0.1", 11111);          cli = rpc_cli_openClient(100, 2, 1024 * 10, "127.0.0.1", 11111);
         if (!cli) {          if (!cli) {
                 printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError());                  printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError());
                free(blob43);                io_free(blob43);
                 return 1;                  return 1;
         }          }
   
Line 24  int main(int argc, char **argv) Line 24  int main(int argc, char **argv)
         if (!cli2) {          if (!cli2) {
                 printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError());                  printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError());
                 rpc_cli_closeClient(&cli);                  rpc_cli_closeClient(&cli);
                free(blob43);                io_free(blob43);
                 return 1;                  return 1;
         }          }
   
 #if 0  
         printf("\n\n1 pass>>> RPC ping\n\n");          printf("\n\n1 pass>>> RPC ping\n\n");
         for (i = 0; i < 100000; i++) {          for (i = 0; i < 100000; i++) {
                 gettimeofday(&before, NULL);                  gettimeofday(&before, NULL);
Line 36  int main(int argc, char **argv) Line 35  int main(int argc, char **argv)
                         printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError());                          printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError());
                         rpc_cli_closeBLOBClient(&cli2);                          rpc_cli_closeBLOBClient(&cli2);
                         rpc_cli_closeClient(&cli);                          rpc_cli_closeClient(&cli);
                        free(blob43);                        io_free(blob43);
                         return 127;                          return 127;
                 }                  }
                 gettimeofday(&after, NULL);                  gettimeofday(&after, NULL);
                 printf("RPC ping seq[0x%04x] #%d --- %f\n", ret, i,                   printf("RPC ping seq[0x%04x] #%d --- %f\n", ret, i, 
                                 (after.tv_sec - before.tv_sec) + (after.tv_usec - before.tv_usec) / 1.e6);                                  (after.tv_sec - before.tv_sec) + (after.tv_usec - before.tv_usec) / 1.e6);
         }          }
 #endif  
         printf("\n\n2 pass>>> RPC ping without reply!!!\n\n");          printf("\n\n2 pass>>> RPC ping without reply!!!\n\n");
         for (i = 0; i < 10000; i++) {          for (i = 0; i < 10000; i++) {
                 gettimeofday(&before, NULL);                  gettimeofday(&before, NULL);
Line 51  int main(int argc, char **argv) Line 49  int main(int argc, char **argv)
                         printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError());                          printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError());
                         rpc_cli_closeBLOBClient(&cli2);                          rpc_cli_closeBLOBClient(&cli2);
                         rpc_cli_closeClient(&cli);                          rpc_cli_closeClient(&cli);
                        free(blob43);                        io_free(blob43);
                         return 127;                          return 127;
                 }                  }
                 gettimeofday(&after, NULL);                  gettimeofday(&after, NULL);
Line 66  int main(int argc, char **argv) Line 64  int main(int argc, char **argv)
                         printf("error %d:: errno=%d %s\n", i, rpc_GetErrno(), rpc_GetError());                          printf("error %d:: errno=%d %s\n", i, rpc_GetErrno(), rpc_GetError());
                         rpc_cli_closeBLOBClient(&cli2);                          rpc_cli_closeBLOBClient(&cli2);
                         rpc_cli_closeClient(&cli);                          rpc_cli_closeClient(&cli);
                        free(blob43);                        io_free(blob43);
                         return 127;                          return 127;
                 }                  }
                 gettimeofday(&after, NULL);                  gettimeofday(&after, NULL);
Line 89  int main(int argc, char **argv) Line 87  int main(int argc, char **argv)
                 io_freeVars(&valz);                  io_freeVars(&valz);
                 rpc_cli_closeBLOBClient(&cli2);                  rpc_cli_closeBLOBClient(&cli2);
                 rpc_cli_closeClient(&cli);                  rpc_cli_closeClient(&cli);
                free(blob43);                io_free(blob43);
                 return 2;                  return 2;
         } else          } else
                 printf("Get BLOB = %x\n", AIT_GET_BLOB(v));                  printf("Get BLOB = %x\n", AIT_GET_BLOB(v));
Line 98  int main(int argc, char **argv) Line 96  int main(int argc, char **argv)
         AIT_SET_BLOB(&tval, 0x554C1BC7, BUFSIZ);          AIT_SET_BLOB(&tval, 0x554C1BC7, BUFSIZ);
         printf("test not found blob=%d\n", rpc_cli_getBLOB(cli2, &tval, (void**) &mem));          printf("test not found blob=%d\n", rpc_cli_getBLOB(cli2, &tval, (void**) &mem));
         if (mem)          if (mem)
                free(mem);                io_free(mem);
         */          */
   
 //      for (i = 0; i < 1000000; i++)  //      for (i = 0; i < 1000000; i++)
Line 107  int main(int argc, char **argv) Line 105  int main(int argc, char **argv)
                         io_freeVars(&valz);                          io_freeVars(&valz);
                         rpc_cli_closeBLOBClient(&cli2);                          rpc_cli_closeBLOBClient(&cli2);
                         rpc_cli_closeClient(&cli);                          rpc_cli_closeClient(&cli);
                        free(blob43);                        io_free(blob43);
                         return 2;                          return 2;
                 } else {                  } else {
                         printf("ret=%d\n", ret);                          printf("ret=%d\n", ret);
Line 127  int main(int argc, char **argv) Line 125  int main(int argc, char **argv)
 //                              printf("+++++++++ test found blob=%d\n", rpc_cli_recvBLOB(cli2, v, (void**) &mem));  //                              printf("+++++++++ test found blob=%d\n", rpc_cli_recvBLOB(cli2, v, (void**) &mem));
                                 if (mem) {                                  if (mem) {
                                         printf("+++++++ BLOB=%s", mem);                                          printf("+++++++ BLOB=%s", mem);
                                        free(mem);                                        io_free(mem);
                                 }                                  }
                                 io_freeVars(&arr);                                  io_freeVars(&arr);
                         }                          }
                 }                  }
         io_freeVars(&valz);          io_freeVars(&valz);
        free(blob43);        io_free(blob43);
   
         if (rpc_cli_execCall(cli, RPC_REPLY, RC_aaa, NULL, &arr) < 0) {          if (rpc_cli_execCall(cli, RPC_REPLY, RC_aaa, NULL, &arr) < 0) {
                 printf("error:: \"aaa\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError());                  printf("error:: \"aaa\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError());

Removed from v.1.8  
changed lines
  Added in v.1.9


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