]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/srfsh/srfsh.c
updated srfsh math_bench return value since json no longer returns the extra 0s
[OpenSRF.git] / src / srfsh / srfsh.c
1 #include <opensrf/transport_client.h>
2 #include <opensrf/osrf_message.h>
3 #include <opensrf/osrf_app_session.h>
4 #include <time.h>
5 #include <ctype.h>
6 #include <sys/timeb.h>
7 #include <sys/types.h>
8 #include <sys/wait.h>
9
10 #include <opensrf/utils.h>
11 #include <opensrf/log.h>
12
13 #include <signal.h>
14
15 #include <stdio.h>
16 #include <readline/readline.h>
17 #include <readline/history.h>
18
19 #define SRFSH_PORT 5222
20 #define COMMAND_BUFSIZE 4096
21
22
23 /* shell prompt */
24 static const char* prompt = "srfsh# ";
25
26 static char* history_file = NULL;
27
28 //static int child_dead = 0;
29
30 static char* login_session = NULL;
31
32 /* true if we're pretty printing json results */
33 static int pretty_print = 1;
34 /* true if we're bypassing 'less' */
35 static int raw_print = 0;
36
37 /* our jabber connection */
38 static transport_client* client = NULL; 
39
40 /* the last result we received */
41 static osrf_message* last_result = NULL;
42
43 /* functions */
44 static int parse_request( char* request );
45
46 /* handles router requests */
47 static int handle_router( char* words[] );
48
49 /* utility method for print time data */
50 static int handle_time( char* words[] ); 
51
52 /* handles app level requests */
53 static int handle_request( char* words[], int relay );
54 static int handle_set( char* words[]);
55 static int handle_print( char* words[]);
56 static int send_request( char* server, 
57                                   char* method, growing_buffer* buffer, int relay );
58 static int parse_error( char* words[] );
59 static int router_query_servers( const char* server );
60 static int print_help( void );
61
62 //static int srfsh_client_connect();
63 //static char* tabs(int count);
64 //static void sig_child_handler( int s );
65 //static void sig_int_handler( int s );
66
67 static int load_history( void );
68 static int handle_math( char* words[] );
69 static int do_math( int count, int style );
70 static int handle_introspect(char* words[]);
71 static int handle_login( char* words[]);
72
73 static int recv_timeout = 120;
74 static int is_from_script = 0;
75
76 int main( int argc, char* argv[] ) {
77
78         /* --------------------------------------------- */
79         /* see if they have a .srfsh.xml in their home directory */
80         char* home = getenv("HOME");
81         int l = strlen(home) + 36;
82         char fbuf[l];
83         snprintf(fbuf, sizeof(fbuf), "%s/.srfsh.xml", home);
84         
85         if(!access(fbuf, R_OK)) {
86                 if( ! osrf_system_bootstrap_client(fbuf, "srfsh") ) {
87                         fprintf(stderr,"Unable to bootstrap client for requests\n");
88                         osrfLogError( OSRF_LOG_MARK,  "Unable to bootstrap client for requests");
89                         return -1;
90                 }
91
92         } else {
93                 fprintf(stderr,"No Config file found at %s\n", fbuf ); 
94                 return -1;
95         }
96
97         if(argc > 1) {
98                 /* for now.. the first arg is used as a script file for processing */
99                 int f;
100                 if( (f = open(argv[1], O_RDONLY)) == -1 ) {
101                         osrfLogError( OSRF_LOG_MARK, "Unable to open file %s for reading, exiting...", argv[1]);
102                         return -1;
103                 }
104
105                 if(dup2(f, STDIN_FILENO) == -1) {
106                         osrfLogError( OSRF_LOG_MARK, "Unable to duplicate STDIN, exiting...");
107                         return -1;
108                 }
109
110                 close(f);
111                 is_from_script = 1;
112         }
113                 
114         /* --------------------------------------------- */
115         load_history();
116
117
118         client = osrfSystemGetTransportClient();
119
120         /* main process loop */
121         int newline_needed = 1;  /* used as boolean */
122         char* request;
123         while((request=readline(prompt))) {
124
125                 // Find first non-whitespace character
126                 
127                 char * cmd = request;
128                 while( isspace( (unsigned char) *cmd ) )
129                         ++cmd;
130
131                 // ignore comments and empty lines
132
133                 if( '\0' == *cmd || '#' == *cmd )
134                         continue;
135
136                 // Remove trailing whitespace.  We know at this point that
137                 // there is at least one non-whitespace character somewhere,
138                 // or we would have already skipped this line.  Hence we
139                 // needn't check to make sure that we don't back up past
140                 // the beginning.
141
142                 {
143                         // The curly braces limit the scope of the end variable
144                         
145                         char * end = cmd + strlen(cmd) - 1;
146                         while( isspace( (unsigned char) *end ) )
147                                 --end;
148                         end[1] = '\0';
149                 }
150
151                 if( !strcasecmp(cmd, "exit") || !strcasecmp(cmd, "quit"))
152                 {
153                         newline_needed = 0;
154                         break; 
155                 }
156                 
157                 char* req_copy = strdup(cmd);
158
159                 parse_request( req_copy ); 
160                 if( request && *cmd ) {
161                         add_history(request);
162                 }
163
164                 free(request);
165                 free(req_copy);
166
167                 fflush(stderr);
168                 fflush(stdout);
169         }
170
171         if( newline_needed ) {
172                 
173                 // We left the readline loop after seeing an EOF, not after
174                 // seeing "quit" or "exit".  So we issue a newline in order
175                 // to avoid leaving a dangling prompt.
176
177                 putchar( '\n' );
178         }
179
180         if(history_file != NULL )
181                 write_history(history_file);
182
183         free(request);
184         free(login_session);
185
186         osrf_system_shutdown();
187         return 0;
188 }
189
190 static int load_history( void ) {
191
192         char* home = getenv("HOME");
193         int l = strlen(home) + 24;
194         char fbuf[l];
195         snprintf(fbuf, sizeof(fbuf), "%s/.srfsh_history", home);
196         history_file = strdup(fbuf);
197
198         if(!access(history_file, W_OK | R_OK )) {
199                 history_length = 5000;
200                 read_history(history_file);
201         }
202         return 1;
203 }
204
205
206 static int parse_error( char* words[] ) {
207
208         if( ! words )
209                 return 0;
210
211         growing_buffer * gbuf = buffer_init( 64 );
212         buffer_add( gbuf, *words );
213         while( *++words ) {
214                 buffer_add( gbuf, " " );
215                 buffer_add( gbuf, *words );
216         }
217         fprintf( stderr, "???: %s\n", gbuf->buf );
218         buffer_free( gbuf );
219         
220         return 0;
221
222 }
223
224
225 static int parse_request( char* request ) {
226
227         if( request == NULL )
228                 return 0;
229
230         char* original_request = strdup( request );
231         char* words[COMMAND_BUFSIZE]; 
232         
233         int ret_val = 0;
234         int i = 0;
235
236
237         char* req = request;
238         char* cur_tok = strtok( req, " " );
239
240         if( cur_tok == NULL )
241         {
242                 free( original_request );
243                 return 0;
244         }
245
246         /* Load an array with pointers to    */
247         /* the tokens as defined by strtok() */
248         
249         while(cur_tok != NULL) {
250                 if( i < COMMAND_BUFSIZE - 1 ) {
251                         words[i++] = cur_tok;
252                         cur_tok = strtok( NULL, " " );
253                 } else {
254                         fprintf( stderr, "Too many tokens in command\n" );
255                         free( original_request );
256                         return 1;
257                 }
258         }
259
260         words[i] = NULL;
261         
262         /* pass off to the top level command */
263         if( !strcmp(words[0],"router") ) 
264                 ret_val = handle_router( words );
265
266         else if( !strcmp(words[0],"time") ) 
267                 ret_val = handle_time( words );
268
269         else if (!strcmp(words[0],"request"))
270                 ret_val = handle_request( words, 0 );
271
272         else if (!strcmp(words[0],"relay"))
273                 ret_val = handle_request( words, 1 );
274
275         else if (!strcmp(words[0],"help"))
276                 ret_val = print_help();
277
278         else if (!strcmp(words[0],"set"))
279                 ret_val = handle_set(words);
280
281         else if (!strcmp(words[0],"print"))
282                 ret_val = handle_print(words);
283
284         else if (!strcmp(words[0],"math_bench"))
285                 ret_val = handle_math(words);
286
287         else if (!strcmp(words[0],"introspect"))
288                 ret_val = handle_introspect(words);
289
290         else if (!strcmp(words[0],"login"))
291                 ret_val = handle_login(words);
292
293         else if (words[0][0] == '!') {
294                 system( original_request + 1 );
295                 ret_val = 1;
296         }
297         
298         free( original_request );
299         
300         if(!ret_val)
301                 return parse_error( words );
302         else
303                 return 1;
304 }
305
306
307 static int handle_introspect(char* words[]) {
308
309         if( ! words[1] )
310                 return 0;
311
312         fprintf(stderr, "--> %s\n", words[1]);
313
314         // Build a command in a suitably-sized
315         // buffer and then parse it
316         
317         size_t len;
318         if( words[2] ) {
319                 static const char text[] = "request %s opensrf.system.method %s";
320                 len = sizeof( text ) + strlen( words[1] ) + strlen( words[2] );
321                 char buf[len];
322                 snprintf( buf, sizeof(buf), text, words[1], words[2] );
323                 return parse_request( buf );
324
325         } else {
326                 static const char text[] = "request %s opensrf.system.method.all";
327                 len = sizeof( text ) + strlen( words[1] );
328                 char buf[len];
329                 snprintf( buf, sizeof(buf), text, words[1] );
330                 return parse_request( buf );
331
332         }
333 }
334
335
336 static int handle_login( char* words[]) {
337
338         if( words[1] && words[2]) {
339
340                 char* username          = words[1];
341                 char* password          = words[2];
342                 char* type                      = words[3];
343                 char* orgloc            = words[4];
344                 char* workstation       = words[5];
345                 int orgloci = (orgloc) ? atoi(orgloc) : 0;
346                 if(!type) type = "opac";
347
348                 char login_text[] = "request open-ils.auth open-ils.auth.authenticate.init \"%s\"";
349                 size_t len = sizeof( login_text ) + strlen(username) + 1;
350
351                 char buf[len];
352                 snprintf( buf, sizeof(buf), login_text, username );
353                 parse_request(buf);
354
355                 const char* hash;
356                 if(last_result && last_result->_result_content) {
357                         jsonObject* r = last_result->_result_content;
358                         hash = jsonObjectGetString(r);
359                 } else return 0;
360
361
362                 char* pass_buf = md5sum(password);
363
364                 size_t both_len = strlen( hash ) + strlen( pass_buf ) + 1;
365                 char both_buf[both_len];
366                 snprintf(both_buf, sizeof(both_buf), "%s%s", hash, pass_buf);
367
368                 char* mess_buf = md5sum(both_buf);
369
370                 growing_buffer* argbuf = buffer_init(64);
371                 buffer_fadd(argbuf, 
372                                 "request open-ils.auth open-ils.auth.authenticate.complete "
373                                 "{ \"username\" : \"%s\", \"password\" : \"%s\"", username, mess_buf );
374
375                 if(type) buffer_fadd( argbuf, ", \"type\" : \"%s\"", type );
376                 if(orgloci) buffer_fadd( argbuf, ", \"org\" : %d", orgloci );
377                 if(workstation) buffer_fadd( argbuf, ", \"workstation\" : \"%s\"", workstation);
378                 buffer_add(argbuf, "}");
379
380                 free(pass_buf);
381                 free(mess_buf);
382
383                 parse_request( argbuf->buf );
384                 buffer_free(argbuf);
385
386                 if( login_session != NULL )
387                         free( login_session );
388
389                 const jsonObject* x = last_result->_result_content;
390                 double authtime = 0;
391                 if(x) {
392                         const char* authtoken = jsonObjectGetString(
393                                         jsonObjectGetKeyConst(jsonObjectGetKeyConst(x,"payload"), "authtoken"));
394                         authtime  = jsonObjectGetNumber(
395                                         jsonObjectGetKeyConst(jsonObjectGetKeyConst(x,"payload"), "authtime"));
396
397                         if(authtoken)
398                                 login_session = strdup(authtoken);
399                         else
400                                 login_session = NULL;
401                 }
402                 else login_session = NULL;
403
404                 printf("Login Session: %s.  Session timeout: %f\n",
405                            (login_session ? login_session : "(none)"), authtime );
406                 
407                 return 1;
408
409         }
410
411         return 0;
412 }
413
414 static int handle_set( char* words[]) {
415
416         char* variable;
417         if( (variable=words[1]) ) {
418
419                 char* val;
420                 if( (val=words[2]) ) {
421
422                         if(!strcmp(variable,"pretty_print")) {
423                                 if(!strcmp(val,"true")) {
424                                         pretty_print = 1;
425                                         printf("pretty_print = true\n");
426                                         return 1;
427                                 } 
428                                 if(!strcmp(val,"false")) {
429                                         pretty_print = 0;
430                                         printf("pretty_print = false\n");
431                                         return 1;
432                                 } 
433                         }
434
435                         if(!strcmp(variable,"raw_print")) {
436                                 if(!strcmp(val,"true")) {
437                                         raw_print = 1;
438                                         printf("raw_print = true\n");
439                                         return 1;
440                                 } 
441                                 if(!strcmp(val,"false")) {
442                                         raw_print = 0;
443                                         printf("raw_print = false\n");
444                                         return 1;
445                                 } 
446                         }
447
448                 }
449         }
450
451         return 0;
452 }
453
454
455 static int handle_print( char* words[]) {
456
457         char* variable;
458         if( (variable=words[1]) ) {
459                 if(!strcmp(variable,"pretty_print")) {
460                         if(pretty_print) {
461                                 printf("pretty_print = true\n");
462                                 return 1;
463                         } else {
464                                 printf("pretty_print = false\n");
465                                 return 1;
466                         }
467                 }
468
469                 if(!strcmp(variable,"raw_print")) {
470                         if(raw_print) {
471                                 printf("raw_print = true\n");
472                                 return 1;
473                         } else {
474                                 printf("raw_print = false\n");
475                                 return 1;
476                         }
477                 }
478
479                 if(!strcmp(variable,"login")) {
480                         printf("login session = %s\n",
481                                    login_session ? login_session : "(none)" );
482                         return 1;
483                 }
484
485         }
486         return 0;
487 }
488
489 static int handle_router( char* words[] ) {
490
491         if(!client)
492                 return 1;
493
494         int i;
495
496         if( words[1] ) { 
497                 if( !strcmp(words[1],"query") ) {
498                         
499                         if( words[2] && !strcmp(words[2],"servers") ) {
500                                 for(i=3; i < COMMAND_BUFSIZE - 3 && words[i]; i++ ) {   
501                                         router_query_servers( words[i] );
502                                 }
503                                 return 1;
504                         }
505                         return 0;
506                 }
507                 return 0;
508         }
509         return 0;
510 }
511
512
513
514 static int handle_request( char* words[], int relay ) {
515
516         if(!client)
517                 return 1;
518
519         if(words[1]) {
520                 char* server = words[1];
521                 char* method = words[2];
522                 int i;
523                 growing_buffer* buffer = NULL;
524                 if(!relay) {
525                         buffer = buffer_init(128);
526                         buffer_add(buffer, "[");
527                         for(i = 3; words[i] != NULL; i++ ) {
528                                 /* removes trailing semicolon if user accidentally enters it */
529                                 if( words[i][strlen(words[i])-1] == ';' )
530                                         words[i][strlen(words[i])-1] = '\0';
531                                 buffer_add( buffer, words[i] );
532                                 buffer_add(buffer, " ");
533                         }
534                         buffer_add(buffer, "]");
535                 }
536
537                 int rc = send_request( server, method, buffer, relay );
538                 buffer_free( buffer );
539                 return rc;
540         } 
541
542         return 0;
543 }
544
545 int send_request( char* server, 
546                 char* method, growing_buffer* buffer, int relay ) {
547         if( server == NULL || method == NULL )
548                 return 0;
549
550         jsonObject* params = NULL;
551         if( !relay ) {
552                 if( buffer != NULL && buffer->n_used > 0 ) 
553                         params = jsonParseString(buffer->buf);
554         } else {
555                 if(!last_result || ! last_result->_result_content) { 
556                         printf("We're not going to call 'relay' with no result params\n");
557                         return 1;
558                 }
559                 else {
560                         params = jsonNewObject(NULL);
561                         jsonObjectPush(params, last_result->_result_content );
562                 }
563         }
564
565
566         if(buffer->n_used > 0 && params == NULL) {
567                 fprintf(stderr, "JSON error detected, not executing\n");
568                 jsonObjectFree(params);
569                 return 1;
570         }
571
572         osrfAppSession* session = osrfAppSessionClientInit(server);
573
574         if(!osrf_app_session_connect(session)) {
575                 fprintf(stderr, "Unable to communicate with service %s\n", server);
576                 osrfLogWarning( OSRF_LOG_MARK,  "Unable to connect to remote service %s\n", server );
577                 jsonObjectFree(params);
578                 return 1;
579         }
580
581         double start = get_timestamp_millis();
582
583         int req_id = osrfAppSessionMakeRequest( session, params, method, 1, NULL );
584         jsonObjectFree(params);
585
586         osrf_message* omsg = osrfAppSessionRequestRecv( session, req_id, recv_timeout );
587
588         if(!omsg) 
589                 printf("\nReceived no data from server\n");
590         
591         
592         signal(SIGPIPE, SIG_IGN);
593
594         FILE* less; 
595         if(!is_from_script) less = popen( "less -EX", "w");
596         else less = stdout;
597
598         if( less == NULL ) { less = stdout; }
599
600         growing_buffer* resp_buffer = buffer_init(4096);
601
602         while(omsg) {
603
604                 if(raw_print) {
605
606                         if(omsg->_result_content) {
607         
608                                 osrfMessageFree(last_result);
609                                 last_result = omsg;
610         
611                                 char* content;
612         
613                                 if( pretty_print ) {
614                                         char* j = jsonObjectToJSON(omsg->_result_content);
615                                         //content = json_printer(j); 
616                                         content = jsonFormatString(j);
617                                         free(j);
618                                 } else {
619                                         const char * temp_content = jsonObjectGetString(omsg->_result_content);
620                                         if( ! temp_content )
621                                                 temp_content = "[null]";
622                                         content = strdup( temp_content );
623                                 }
624                                 
625                                 printf( "\nReceived Data: %s\n", content ); 
626                                 free(content);
627         
628                         } else {
629
630                                 char code[16];
631                                 snprintf( code, sizeof(code), "%d", omsg->status_code );
632                                 buffer_add( resp_buffer, code );
633
634                                 printf( "\nReceived Exception:\nName: %s\nStatus: %s\nStatus: %s\n", 
635                                                 omsg->status_name, omsg->status_text, code );
636
637                                 fflush(stdout);
638                         }
639
640                 } else {
641
642                         if(omsg->_result_content) {
643         
644                                 osrfMessageFree(last_result);
645                                 last_result = omsg;
646         
647                                 char* content;
648         
649                                 if( pretty_print && omsg->_result_content ) {
650                                         char* j = jsonObjectToJSON(omsg->_result_content);
651                                         //content = json_printer(j); 
652                                         content = jsonFormatString(j);
653                                         free(j);
654                                 } else {
655                                         const char * temp_content = jsonObjectGetString(omsg->_result_content);
656                                         if( temp_content )
657                                                 content = strdup( temp_content );
658                                         else
659                                                 content = NULL;
660                                 }
661
662                                 buffer_add( resp_buffer, "\nReceived Data: " ); 
663                                 buffer_add( resp_buffer, content );
664                                 buffer_add( resp_buffer, "\n" );
665                                 free(content);
666         
667                         } else {
668         
669                                 buffer_add( resp_buffer, "\nReceived Exception:\nName: " );
670                                 buffer_add( resp_buffer, omsg->status_name );
671                                 buffer_add( resp_buffer, "\nStatus: " );
672                                 buffer_add( resp_buffer, omsg->status_text );
673                                 buffer_add( resp_buffer, "\nStatus: " );
674                                 char code[16];
675                                 snprintf( code, sizeof(code), "%d", omsg->status_code );
676                                 buffer_add( resp_buffer, code );
677                         }
678                 }
679
680
681                 omsg = osrfAppSessionRequestRecv( session, req_id, recv_timeout );
682
683         }
684
685         double end = get_timestamp_millis();
686
687         fputs( resp_buffer->buf, less );
688         buffer_free( resp_buffer );
689         fputs("\n------------------------------------\n", less);
690         if( osrf_app_session_request_complete( session, req_id ))
691                 fputs("Request Completed Successfully\n", less);
692
693
694         fprintf(less, "Request Time in seconds: %.6f\n", end - start );
695         fputs("------------------------------------\n", less);
696
697         pclose(less); 
698
699         osrf_app_session_request_finish( session, req_id );
700         osrf_app_session_disconnect( session );
701         osrfAppSessionFree( session );
702
703
704         return 1;
705
706
707 }
708
709 static int handle_time( char* words[] ) {
710         if(!words[1]) {
711                 printf("%f\n", get_timestamp_millis());
712     } else {
713         time_t epoch = (time_t) atoi(words[1]);
714                 printf("%s", ctime(&epoch));
715     }
716         return 1;
717 }
718
719                 
720
721 static int router_query_servers( const char* router_server ) {
722
723         if( ! router_server || strlen(router_server) == 0 ) 
724                 return 0;
725
726         const static char router_text[] = "router@%s/router";
727         size_t len = sizeof( router_text ) + strlen( router_server ) + 1;
728         char rbuf[len];
729         snprintf(rbuf, sizeof(rbuf), router_text, router_server );
730                 
731         transport_message* send = 
732                 message_init( "servers", NULL, NULL, rbuf, NULL );
733         message_set_router_info( send, NULL, NULL, NULL, "query", 0 );
734
735         client_send_message( client, send );
736         message_free( send );
737
738         transport_message* recv = client_recv( client, -1 );
739         if( recv == NULL ) {
740                 fprintf(stderr, "NULL message received from router\n");
741                 return 1;
742         }
743         
744         printf( 
745                         "---------------------------------------------------------------------------------\n"
746                         "Received from 'server' query on %s\n"
747                         "---------------------------------------------------------------------------------\n"
748                         "original reg time | latest reg time | last used time | class | server\n"
749                         "---------------------------------------------------------------------------------\n"
750                         "%s"
751                         "---------------------------------------------------------------------------------\n"
752                         , router_server, recv->body );
753
754         message_free( recv );
755         
756         return 1;
757 }
758
759 static int print_help( void ) {
760
761         fputs(
762                         "---------------------------------------------------------------------------------\n"
763                         "Commands:\n"
764                         "---------------------------------------------------------------------------------\n"
765                         "help                   - Display this message\n"
766                         "!<command> [args]      - Forks and runs the given command in the shell\n"
767                 /*
768                         "time                   - Prints the current time\n"
769                         "time <timestamp>       - Formats seconds since epoch into readable format\n"
770                 */
771                         "set <variable> <value> - set a srfsh variable (e.g. set pretty_print true )\n"
772                         "print <variable>       - Displays the value of a srfsh variable\n"
773                         "---------------------------------------------------------------------------------\n"
774
775                         "router query servers <server1 [, server2, ...]>\n"
776                         "       - Returns stats on connected services\n"
777                         "\n"
778                         "\n"
779                         "request <service> <method> [ <json formatted string of params> ]\n"
780                         "       - Anything passed in will be wrapped in a json array,\n"
781                         "               so add commas if there is more than one param\n"
782                         "\n"
783                         "\n"
784                         "relay <service> <method>\n"
785                         "       - Performs the requested query using the last received result as the param\n"
786                         "\n"
787                         "\n"
788                         "math_bench <num_batches> [0|1|2]\n"
789                         "       - 0 means don't reconnect, 1 means reconnect after each batch of 4, and\n"
790                         "                2 means reconnect after every request\n"
791                         "\n"
792                         "introspect <service>\n"
793                         "       - prints the API for the service\n"
794                         "\n"
795                         "\n"
796                         "---------------------------------------------------------------------------------\n"
797                         " Commands for Open-ILS\n"
798                         "---------------------------------------------------------------------------------\n"
799                         "login <username> <password>\n"
800                         "       - Logs into the 'server' and displays the session id\n"
801                         "       - To view the session id later, enter: print login\n"
802                         "---------------------------------------------------------------------------------\n"
803                         "\n"
804                         "\n"
805                         "Note: long output is piped through 'less'. To search in 'less', type: /<search>\n"
806                         "---------------------------------------------------------------------------------\n"
807                         "\n",
808                         stdout );
809
810         return 1;
811 }
812
813
814 /*
815 static char* tabs(int count) {
816         growing_buffer* buf = buffer_init(24);
817         int i;
818         for(i=0;i!=count;i++)
819                 buffer_add(buf, "  ");
820
821         char* final = buffer_data( buf );
822         buffer_free( buf );
823         return final;
824 }
825 */
826
827
828 static int handle_math( char* words[] ) {
829         if( words[1] )
830                 return do_math( atoi(words[1]), 0 );
831         return 0;
832 }
833
834
835 static int do_math( int count, int style ) {
836
837         osrfAppSession* session = osrfAppSessionClientInit( "opensrf.math" );
838         osrf_app_session_connect(session);
839
840         jsonObject* params = jsonParseString("[]");
841         jsonObjectPush(params,jsonNewObject("1"));
842         jsonObjectPush(params,jsonNewObject("2"));
843
844         char* methods[] = { "add", "sub", "mult", "div" };
845         char* answers[] = { "3", "-1", "2", "0.5" };
846
847         float times[ count * 4 ];
848         memset(times, 0, sizeof(times));
849
850         int k;
851         for(k=0;k!=100;k++) {
852                 if(!(k%10)) 
853                         fprintf(stderr,"|");
854                 else
855                         fprintf(stderr,".");
856         }
857
858         fprintf(stderr,"\n\n");
859
860         int running = 0;
861         int i;
862         for(i=0; i!= count; i++) {
863
864                 int j;
865                 for(j=0; j != 4; j++) {
866
867                         ++running;
868
869                         double start = get_timestamp_millis();
870                         int req_id = osrfAppSessionMakeRequest( session, params, methods[j], 1, NULL );
871                         osrf_message* omsg = osrfAppSessionRequestRecv( session, req_id, 5 );
872                         double end = get_timestamp_millis();
873
874                         times[(4*i) + j] = end - start;
875
876                         if(omsg) {
877         
878                                 if(omsg->_result_content) {
879                                         char* jsn = jsonObjectToJSON(omsg->_result_content);
880                                         if(!strcmp(jsn, answers[j]))
881                                                 fprintf(stderr, "+");
882                                         else
883                                                 fprintf(stderr, "\n![%s] - should be %s\n", jsn, answers[j] );
884                                         free(jsn);
885                                 }
886
887
888                                 osrfMessageFree(omsg);
889                 
890                         } else { fprintf( stderr, "\nempty message for tt: %d\n", req_id ); }
891
892                         osrf_app_session_request_finish( session, req_id );
893
894                         if(style == 2)
895                                 osrf_app_session_disconnect( session );
896
897                         if(!(running%100))
898                                 fprintf(stderr,"\n");
899                 }
900
901                 if(style==1)
902                         osrf_app_session_disconnect( session );
903         }
904
905         osrfAppSessionFree( session );
906         jsonObjectFree(params);
907
908         int c;
909         float total = 0;
910         for(c=0; c!= count*4; c++) 
911                 total += times[c];
912
913         float avg = total / (count*4); 
914         fprintf(stderr, "\n      Average round trip time: %f\n", avg );
915
916         return 1;
917 }