aboutsummaryrefslogtreecommitdiff
path: root/src/Server.c
blob: 0aee5623736662f1cf3893bc6aeabfc5ee114eec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
 /*@@
   @file      Server.c
   @date      Wed Sep 13 20:10:24 2000
   @author    Tom Goodale
   @desc 
   Web serving and utility routines.   
   @enddesc
   @version  $Header$
 @@*/

#include <stdlib.h>
#include <string.h>

#include "cctk.h"

#include "cctk_Parameters.h"

#include "httpd_Map.h"
#include "util_String.h"

#include "httpd.h"

#include "Steer.h"
#include "Expression.h"

#include "SString_Namespace.h"

static const char *rcsid = "$Header$";

CCTK_FILEVERSION(CactusConnect_HTTPD_Server_c)

/********************************************************************
 *********************     Local Data Types   ***********************
 ********************************************************************/

typedef struct
{
  int (*function)(const cGH *, httpRequest *, void *);
  void *data;
} httpPage;

/********************************************************************
 ********************* Local Routine Prototypes *********************
 ********************************************************************/

static httpPage *CreatePageData(int (*function)(const cGH *,httpRequest *, void *), void *data);
static httpPage *FindPage(const char *path, const char **residual);

static int StatusUntilIt (const cGH *cctkGH);
static int StatusUntilTime (const cGH *cctkGH);
static int StatusUntilExpression (cGH *cctkGH);

static double evaluator(const char *name, void *data);


/********************************************************************
 ********************* Other Routine Prototypes *********************
 ********************************************************************/

/********************************************************************
 *********************     Local Data   *****************************
 ********************************************************************/

static uMap pages = NULL;

static const char *notfound_page =
"<html>\n<head>\n<title>Error 404: Not Found</title>\n</head>\n"
"<body>\nThe URI you requested could not be found\n</body>\n</html>\n";

static const char *notimplemented_page =
"<html>\n<head>\n<title>Error 501: Not Implemented</title>\n</head>\n"
"<body>\nThe requested method is not implemented\n</body>\n<html>\n";

#define INITIAL_SIZE 16

/********************************************************************
 *********************     External Routines   **********************
 ********************************************************************/

 /*@@
   @routine    HTTP_RequestGet
   @date       Wed Sep 13 20:10:24 2000
   @author     Tom Goodale
   @desc 
   Routine to deal with a GET request.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/

int HTTP_RequestGET(cGH *cctkGH, httpRequest *request)
{
  int retval = -1;
  const char *residual = NULL;
  httpPage *pagedata = FindPage(HTTP_URI( request ), &residual );
  HTTP_SetResidual( request, residual );

  if( pagedata )
  {
    retval = pagedata->function(cctkGH, request, pagedata->data);
  }

  if(retval < 0)
  {
    HTTP_Send(request,"HTTP/1.0 404 Not Found\r\n");
    
    HTTP_Send(request,"Content-Type: text/html\r\n\r\n");

    HTTP_Send(request, notfound_page);
  }

  return retval;
}

 /*@@
   @routine    HTTP_RequestUnsupported
   @date       Thu Sep 14 12:18:56 2000
   @author     Tom Goodale
   @desc 
   
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
int HTTP_RequestUnsupported(cGH *cctkGH, httpRequest *request)
{
  cctkGH = cctkGH; /* avoid compiler warning about unused parameter */

  HTTP_Send(request,"HTTP/1.0 501 Not Implemented\r\n");

  HTTP_Send(request,"Content-Type: text/html\r\n\r\n");
  
  HTTP_Send(request, notimplemented_page );

  return 0;
}

 /*@@
   @routine    HTTP_RegisterPage
   @date       Wed Sep 13 20:10:24 2000
   @author     Tom Goodale
   @desc 
   Routine to register a web page.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
int HTTP_RegisterPage(const char *path, int (*function)(const cGH *, httpRequest *, void *), void *data)
{
  int retval = -1;

  /* Create the hash table if it's not already been created */
  if(! pages)
  {
    pages = Httpd_MapCreate();
  }

  if(Httpd_MapData(pages, strlen(path), path))
  {
    CCTK_VWarn(1, __LINE__,__FILE__,CCTK_THORNSTRING,
               "Page exists already:\n\"%s\"", path);
  }
  else
  {
    httpPage *pagedata = CreatePageData(function, data);

    if(pagedata)
    {
      retval = Httpd_MapStore(pages, strlen(path), path, (void *)pagedata);
    }
    else
    {
      retval = -2;
    }
  }

  return retval;
}


 /*@@
   @routine    HTTP_UpdateState
   @date       Sat Sep 16 21:12:23 2000
   @author     Tom Goodale
   @desc 
   Updates the state of the server from the latest parameter values.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
int HTTP_UpdateState(cGH *cctkGH, httpState *state)
{
  DECLARE_CCTK_PARAMETERS
  int stepping = single_step;
  static int steering = 1; 
  static int last_steered = -1;


  state->paused = (! stepping) && 
                  (pause || (cctkGH &&
                  ((until_it_active         && StatusUntilIt(cctkGH)) ||
                  (until_time_active   && StatusUntilTime(cctkGH)) ||
                  (until_expression_active && StatusUntilExpression(cctkGH)))));

  /* If single step is selected, need to reset the parameter to force a pause
   * next time.
   */
  if(stepping)
  {
    HTTP_SteerQueue(CCTK_THORNSTRING, "single_step", "no");
  }

  if(cctkGH && ! state->paused)
  {
    if(steering)
    {
      if(steering_frequency > 0 &&
         steering_frequency+last_steered <= cctkGH->cctk_iteration)
      {
        /* Time to steer */
        state->steer = 1;
        last_steered = cctkGH->cctk_iteration;
      }
      else
      {
        state->steer = 0;
      }
      
      if(steering_frequency <= 0)
      {
        /* Once steering is switched off, can't restart it ! */
        steering = 0;
      }
    }
  }
  else
  {
    state->steer = 1;
  }

  state->terminate = terminate;
  if(!state->paused)
  {  
    state->timeout_seconds = timeout_seconds;
    state->timeout_useconds = timeout_useconds;
  }
  else
  {
    state->timeout_seconds = -1;
    state->timeout_useconds = -1;
  }

  return 0;
}

 /*@@
   @routine    HTTP_Terminate
   @date       Sat Sep 16 21:40:27 2000
   @author     Tom Goodale
   @desc 
   Terminate the simulation.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
int HTTP_Terminate(cGH *cctkGH)
{
  HTTP_SteerQueue("Cactus","terminate_next","yes");

  return 0;
}

/********************************************************************
 *********************     Local Routines   *************************
 ********************************************************************/

 /*@@
   @routine    CreatePageData
   @date       Wed Sep 13 20:10:24 2000
   @author     Tom Goodale
   @desc 
   Creates a httpPage structure.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
static httpPage *CreatePageData(int (*function)(const cGH *, httpRequest *, void *), void *data)
{
  httpPage *pagedata = (httpPage *)malloc(sizeof(httpPage));

  if(pagedata)
  {
    pagedata->function = function;
    pagedata->data = data;
  }

  return pagedata;
}

 /*@@
   @routine    FindPage
   @date       Wed Sep 13 20:10:24 2000
   @author     Tom Goodale
   @desc 
   Finds a page, if it exists.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
static httpPage *FindPage(const char *path, const char **residual)
{
  httpPage *pagedata = NULL;

#ifdef HTTP_DEBUG
  printf ("Searching for '%s'\n", path);
#endif

  if(pages && path)
  {
    String *temp = String_New();
    /* Check for index.html */
    if(strlen(path) == 0 || strcmp( path, "/") == 0 )
    {
#ifdef HTTP_DEBUG
      printf("Looking for '%sindex.html'\n", path);
#endif
      SetToCString( temp, path);
      ConcatCString( temp,"index.html");

      pagedata = Httpd_MapData(pages, Length(temp), GetBuffer(temp));
    }
    else if((pagedata = Httpd_MapData(pages, strlen(path), path)))
    {
      /* Or exact path */
    }
    else
    {
#ifdef HTTP_DEBUG
      printf("Looking for '%s/index.html'\n", path);
#endif
      SetToCString( temp, path);
      ConcatCString( temp,"/index.html");

      pagedata = Httpd_MapData(pages, Length(temp), GetBuffer(temp));

    }
    *residual = NULL;

    if(!pagedata && strlen( path ) > 0)
    {
      const char *position;
      /* Ok, now cycle through.  Know it doesn't end with a slash */
      for(position = path+strlen(path)-1; position >= path; position--)
      {
        if(*position == '/')
        {
#ifdef HTTP_DEBUG
          printf("Looking for '%s' less '%s' \n", path, position);
#endif
          if((pagedata = Httpd_MapData(pages, position-path, path)))
          {
            *residual = position+1;
            break;
          }
        }
      }
    }
    String_Delete( temp );
    temp = NULL;
  }

  return pagedata;
}

 /*@@
   @routine    StatusUntilIt
   @date       Tue Sep 19 22:59:34 2000
   @author     Tom Goodale
   @desc 
   Is the iteration greater than the desired stop value ?
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
static int StatusUntilIt (const cGH *cctkGH)
{
  DECLARE_CCTK_PARAMETERS


  return (cctkGH && until_it <= cctkGH->cctk_iteration);
}


 /*@@
   @routine    StatusUntilTime
   @date       Tue Sep 19 23:00:16 2000
   @author     Tom Goodale
   @desc 
   Is the simulation time greater than the stop value ?
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
static int StatusUntilTime (const cGH *cctkGH)
{
  DECLARE_CCTK_PARAMETERS


  return (cctkGH && until_time <= cctkGH->cctk_time);
}


 /*@@
   @routine    StatusUntilExpression
   @date       Tue Sep 19 23:00:47 2000
   @author     Tom Goodale
   @desc 
   Is the stop expression true ?
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
static int StatusUntilExpression (cGH *cctkGH)
{
  DECLARE_CCTK_PARAMETERS
  static char *parsed_expression = NULL;
  static int times_set = -1;
  int retval = 0;

  /* See if we need to parse the expression again. */
  int new_times_set = CCTK_ParameterQueryTimesSet("until_expression",
                                              CCTK_THORNSTRING);
  
  if(new_times_set > times_set)
  {
    times_set = new_times_set;
    if(parsed_expression)
    {
      free(parsed_expression);
    }
    parsed_expression = HTTP_ExpressionParse(until_expression);
  }

  if(parsed_expression && strlen(parsed_expression) > 0 && cctkGH)
  {
    /* Make a copy */
    char *copy = Util_Strdup(parsed_expression);
    
    /* Evaluate the expression */
    retval = HTTP_ExpressionEvaluate(copy, evaluator, cctkGH);

    /* Free the copy */
    free(copy);
  }

  return retval;
}


 /*@@
   @routine    evaluator
   @date       Tue Sep 19 23:07:20 2000
   @author     Tom Goodale
   @desc 
   Takes the name of a gridscalar and returns its value.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
static double evaluator(const char *expression, void *data)
{
  double retval = 0.0;
  cGH *cctkGH = (cGH *)data;
  int varindex = CCTK_VarIndex(expression);

  if(varindex > -1)
  {
    int vartype  = CCTK_VarTypeI(varindex);
    int *pointer = CCTK_VarDataPtrI(cctkGH, 0, varindex);
    
    switch(vartype)
    {
      case CCTK_VARIABLE_BYTE :
        retval = *((CCTK_BYTE *)pointer);
        break;
      case CCTK_VARIABLE_INT :
        retval = *((CCTK_INT *)pointer);
        break;
      case CCTK_VARIABLE_REAL :
        retval = *((CCTK_REAL *)pointer);
        break;
      default :
        CCTK_WARN( 0, "Unsupported variable type" );
        retval = 0.0;
    }
  }
  else if(CCTK_Equals(expression,"time"))
  {
    retval = cctkGH->cctk_time;
  }
  else if(CCTK_Equals(expression,"iteration"))
  {
    retval = cctkGH->cctk_iteration;
  }    
  else
  {
    retval = strtod(expression,NULL);
  }

  return retval;
}