summaryrefslogtreecommitdiff
path: root/lib/sbin/CreateFunctionBindings.pl
blob: 81783003e887a0a662211a539e67bc91075c58e5 (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
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
#! /usr/bin/perl
#/*@@
#  @file      CreateFunctionBindings.pl
#  @date      Sat Feb 10 2001
#  @author    Gabrielle Allen
#  @desc 
#  
#  @enddesc
#  @version $Id$ 
#@@*/


#/*@@
#  @routine    CreateFunctionBindings
#  @date       Sat Feb 10 2001
#  @author     Gabrielle Allen
#  @desc 
#  Creates bindings for thorn provided functions
#  @enddesc 
#  @calls     
#  @calledby   
#  @history 
#
#  @endhistory 
#
#@@*/

sub CreateFunctionBindings
{
  my($bindings_dir, $rhinterface_db) = @_;
  my($dataout);
  my($function_db);

# Create Function Database
  $function_db = &FunctionDatabase($rhinterface_db);

# Create directories
  if(! -d $bindings_dir)
  {
    mkdir("$bindings_dir", 0755) || die "Unable to create $bindings_dir";
  }
  $start_dir = `pwd`;

  chdir $bindings_dir;

  if(! -d "Functions")
  {
    mkdir("Functions", 0755) || die "Unable to create Functions directory";
  }

  if(! -d "include")
  {
    mkdir("include", 0755) || die "Unable to create include directory";
  }


# Create ThornOverloadables.h
  chdir "include";
  $dataout = &ThornOverloadables($function_db);
  &WriteFile("ThornOverloadables.h",\$dataout);
  chdir $bindings_dir;

# Create DummyThornFunctions.c
  chdir "Functions";
  $dataout = &DummyThornFunctions($function_db);
  &WriteFile("DummyThornFunctions.c",\$dataout);
  chdir $bindings_dir;

# Create OverloadThorns.c
  chdir "Functions";
  $dataout = &OverloadThorns();
  &WriteFile("OverloadThorns.c",\$dataout);
  chdir $bindings_dir;

# Create FortranThornFunctions.c
  chdir "Functions";
  $dataout = &FortranThornFunctions($function_db);
  &WriteFile("FortranThornFunctions.c",\$dataout);
  chdir $bindings_dir;

# Create Thorn Include Prototypes
  chdir "include";
  foreach $thorn (split(" ",$rhinterface_db->{"THORNS"}))
  {
    $filename = $thorn."_Prototypes.h";
    $dataout = &ThornIncludes($thorn,$function_db,$rhinterface_db);
    &WriteFile($filename,\$dataout);
  }
  chdir $bindings_dir;

# Create Master Include Prototypes
  chdir "include";
  $filename = "cctk_FunctionAliases.h";
  $dataout = &ThornMasterIncludes($rhinterface_db);
  &WriteFile($filename,\$dataout);
  chdir $bindings_dir;

# Create THORN_Register.c
  chdir "Functions";
  $registerfiles = "";
  foreach $thorn (split(" ",$rhinterface_db->{"THORNS"}))
  {
    $filename = $thorn."_Register.c";
    $dataout = &RegisterThornFunctions($thorn,$function_db,$rhinterface_db);
    &WriteFile($filename,\$dataout);
    $registerfiles .= " $filename";
  }
  chdir $bindings_dir;

# Create Master registration file RegisterThornFunctions.c
  chdir "Functions";
  $dataout = &RegisterAllFunctions($rhinterface_db);
  &WriteFile("RegisterThornFunctions.c",\$dataout);
  chdir $bindings_dir;

# Create IsOverloaded functions
  chdir "Functions";
  $dataout = &IsOverloadedBindings($function_db);
  &WriteFile("IsOverloaded.c",\$dataout);
  chdir $bindings_dir;

# Create make.code.defn
  chdir "Functions";
  $dataout = "\nSRCS = IsOverloaded.c OverloadThorns.c FortranThornFunctions.c DummyThornFunctions.c RegisterThornFunctions.c $registerfiles\n\n"; 
  &WriteFile("make.code.defn",\$dataout);
  chdir $start_dir;

  return;
}


#/*@@
#  @routine    IsOverloadedBindings
#  @date       Tue Feb 20 2001
#  @author     Gabrielle Allen
#  @desc 
#  Code for returning number of times a function has been overloaded.
#  This should be done in a better way, and include flesh overloaded 
#  functions
#  @enddesc 
#  @calls     
#  @calledby   
#  @history 
#
#  @endhistory 
#
#@@*/

sub IsOverloadedBindings
{
  my($function_db) = @_;
  my($dataout,$line,@data);

  # Header Data
  $line = "/*\@\@\n";
  push(@data, $line);
  $line = "  \@header    IsOverloaded.c\n";
  push(@data, $line);
  $line = "  \@desc\n";
  push(@data, $line);
  $line = "  Query how many times a function is overloaded\n";
  push(@data, $line);
  $line = "  \@enddesc \n";
  push(@data, $line);
  $line = "  \@\@*/\n\n";
  push(@data, $line);

  $line = "\#include <stdlib.h>\n\n";
  push(@data, $line);
  $line = "\#include \"cctk_Flesh.h\"\n\n";
  push(@data, $line);
  $line = "\#include \"cctk_FortranString.h\"\n\n";
  push(@data, $line);

  foreach $function (split(" ",$function_db->{"FUNCTIONS"}))
  {
    if ($function !~ m:^\s*$:)
    {
      $line = "int CCTKBindings_Overload$function(void *);\n";
      push(@data, $line);
    }
  }

  $line = "int CCTK_IsOverloaded(const char *function);\n";
  push(@data, $line);

  $line = "int CCTK_IsOverloaded(const char *function)\n";
  push(@data, $line);
  $line = "{\n";
  push(@data, $line);
  $line = "  int retval=0;\n\n";
  push(@data, $line);
  $line = "  const char *cctk_dummy_string; /* avoid warnings */\n\n";  
  push(@data, $line);
  $line = "  cctk_dummy_string=function; /* avoid warnings */\n\n";  
  push(@data, $line);

  foreach $function (split(" ",$function_db->{"FUNCTIONS"}))
  {
    if ($function !~ m:^\s*$:)
    {
      $line = "  if (strcmp(function,\"$function\")==0)\n";
      push(@data, $line);
      $line = "  {\n";
      push(@data, $line);
      $line = "    retval = CCTKBindings_Overload$function(NULL);\n";
      push(@data, $line);
      $line = "  }\n\n";
      push(@data, $line);
    }
  }

  $line = "  return retval;\n";
  push(@data, $line);
  $line = "}\n\n\n";
  push(@data, $line);

  # Put fortran binding here for the moment
  $line = "void CCTK_FCALL CCTK_FNAME(CCTK_IsOverloaded)\n";
  push(@data, $line);
  $line = "  (int *ret, ONE_FORTSTRING_ARG);\n";
  push(@data, $line);
  $line = "void CCTK_FCALL CCTK_FNAME(CCTK_IsOverloaded)\n";
  push(@data, $line);
  $line = "  (int *ret, ONE_FORTSTRING_ARG)\n";
  push(@data, $line);
  $line = "{\n";
  push(@data, $line);
  $line = "  ONE_FORTSTRING_CREATE(name);\n";
  push(@data, $line);
  $line = "  *ret = CCTK_IsOverloaded(name);\n";
  push(@data, $line);
  $line = "  free(name);\n";
  push(@data, $line);
  $line = "}\n";
  push(@data, $line);
    

  $dataout = "";
  foreach $line (@data)
  {
    $dataout .= $line;
  }

  return $dataout;
}


#/*@@
#  @routine    ThornOverloadables
#  @date       Sat Feb 10
#  @author     Gabrielle Allen
#  @desc 
#  Create include file for thorn function overloads
#  @enddesc 
#  @calls     
#  @calledby   
#  @history 
#
#  @endhistory 
#
#@@*/

sub ThornOverloadables
{
  my($function_db) = @_;
  my($dataout,$line,@data);

  # Header Data
  $line = "/*\@\@\n";
  push(@data, $line);
  $line = "  \@header    ThornOverloadables.h\n";
  push(@data, $line);
  $line = "  \@desc\n";
  push(@data, $line);
  $line = "  The overloadable functions from thorns\n";
  push(@data, $line);
  $line = "  See OverloadMacros.h to see how to use these.\n";
  push(@data, $line);
  $line = "  \@enddesc \n";
  push(@data, $line);
  $line = "  \@\@*/\n\n";
  push(@data, $line);
  $line = "\#ifdef OVERLOADABLE_CALL\n";
  push(@data, $line);
  $line = "\#undef OVERLOADABLE_CALL\n";
  push(@data, $line);
  $line = "\#endif\n\n";
  push(@data, $line);
  $line = "\#ifdef OVERLOABLE_PREFIX\n";
  push(@data, $line);
  $line = "\#undef OVERLOADABLE_PREFIX\n";
  push(@data, $line);
  $line = "\#endif\n\n";
  push(@data, $line);
  $line = "\#ifdef OVERLOABLE_DUMMY_PREFIX\n";
  push(@data, $line);
  $line = "\#undef OVERLOADABLE_DUMMY_PREFIX\n";
  push(@data, $line);
  $line = "\#endif\n\n";
  push(@data, $line);
  $line = "\#define OVERLOADABLE_CALL CCTKBindings_\n";
  push(@data, $line);
  $line = "\#define OVERLOADABLE_PREFIX\n";
  push(@data, $line);
  $line = "\#define OVERLOADABLE_DUMMY_PREFIX CCTKBindings_Dummy\n\n";
  push(@data, $line);
  $line = "#ifdef ARGUMENTS\n";
  push(@data, $line);
  $line = "#undef ARGUMENTS\n";
  push(@data, $line);
  $line = "#endif\n\n";
  push(@data, $line);
  $line = "#ifdef RETURN_TYPE\n";
  push(@data, $line);
  $line = "#undef RETURN_TYPE\n";
  push(@data, $line);
  $line = "#endif\n\n";
  push(@data, $line);

  foreach $function (split(" ",$function_db->{"FUNCTIONS"}))
  {
    if ($function !~ m:^\s*$:)
    {
      $line = "\#define ARGUMENTS $function_db->{\"$function CARGS\"}\n";
      push(@data, $line);
      $line = "\#define RETURN_TYPE $function_db->{\"$function RET\"}\n\n";
      push(@data,$line);
      $line = "OVERLOADABLE($function)\n\n";
      push(@data,$line);
      $line = "\#undef ARGUMENTS\n";
      push(@data,$line);
      $line = "\#undef RETURN_TYPE\n\n";
      push(@data,$line);
    }
  }
    
  $line = "#ifdef ARGUMENTS\n";
  push(@data, $line);
  $line = "#undef ARGUMENTS\n";
  push(@data, $line);
  $line = "#endif\n\n";
  push(@data, $line);
  $line = "#ifdef RETURN_TYPE\n";
  push(@data, $line);
  $line = "#undef RETURN_TYPE\n";
  push(@data, $line);
  $line = "#endif\n\n";
  push(@data, $line);
  $line = "\#undef OVERLOADABLE_CALL\n";
  push(@data,$line);
  $line = "\#undef OVERLOADABLE_PREFIX\n";
  push(@data,$line);
  $line = "\#undef OVERLOADABLE_DUMMY_PREFIX\n";
  push(@data,$line);
  
  $dataout = "";
  foreach $line (@data)
  {
    $dataout .= $line;
  }

  return $dataout;
}



#/*@@
#  @routine    ThornMasterIncludes
#  @date       Thu Feb 15 2001
#  @author     Gabrielle Allen
#  @desc 
#  Master file of function prototypes for each thorn
#  @enddesc 
#  @calls     
#  @calledby   
#  @history 
#
#  @endhistory 
#
#@@*/

sub ThornMasterIncludes
{
  my($rhinterface_db) = @_;
  my($line,@data,$dataout,$thorn);

  # Header Data
  $line = "/*\@\@\n";
  push(@data, $line);
  $line = "  \@header    cctk_FunctionAliases.h\n";
  push(@data, $line);
  $line = "  \@desc\n";
  push(@data, $line);
  $line = "  Prototypes for overloaded functions used by all thorn\n";
  push(@data, $line);
  $line = "  \@enddesc \n";
  push(@data, $line);
  $line = "  \@\@*/\n\n";
  push(@data, $line);
  $line = "\#ifndef _CCTK_FUNCTIONALIASES_H_\n";
  push(@data, $line);
  $line = "\#define _CCTK_FUNCTIONALIASES_H_\n\n";
  push(@data, $line);

  $line = "\#ifdef CCODE\n";
  push(@data, $line);
  $line = "int CCTK_IsOverloaded(const char *function);\n\n";
  push(@data, $line);
  $line = "\#endif\n\n";
  push(@data, $line);

  foreach $thorn (split(" ",$rhinterface_db->{"THORNS"}))
  {
    $line = "\#ifdef THORN_IS_$thorn\n";
    push(@data, $line);
    $line = "\#include \"$thorn"."_Prototypes.h\"\n";
    push(@data, $line);
    $line = "\#endif\n\n";
    push(@data, $line);
  }

  $line = "\#endif\n\n";
  push(@data, $line);

  $dataout = "";
  foreach $line (@data)
  {
    $dataout .= $line;
  }

  return $dataout;
}



#/*@@
#  @routine    OverloadThorns
#  @date       Tue Feb 20 2001
#  @author     Gabrielle Allen
#  @desc 
#  Main file for overloading thorns. Note that the text doesn't change
#  but the contents does depending on the thorn set used. For this reason
#  it is in the bindings and not in the Flesh.
#  @enddesc 
#  @calls     
#  @calledby   
#  @history 
#
#  @endhistory 
#
#@@*/

sub OverloadThorns
{
  my($line,@data,$dataout);

  # Header Data
  $line = "/*\@\@\n";
  push(@data, $line);
  $line = "\@file      OverloadThornFunctions.c\n";
  push(@data, $line);
  $line = "\@desc \n";
  push(@data, $line);
  $line = "Contains routines to overload thorn functions\n";
  push(@data, $line);
  $line = "Uses the overload macros to make sure of consistency and\n";
  push(@data, $line);
  $line = "to save typing !\n";
  push(@data, $line);
  $line = "\@enddesc\n";
  push(@data, $line);
  $line = "\@\@*/\n\n";
  push(@data, $line);

  $line = "\#include <stdio.h>\n";
  push(@data, $line);
  $line = "\#include <stdlib.h>\n";
  push(@data, $line);
  $line = "\#include <string.h>\n\n";
  push(@data, $line);

  $line = "\#include \"cctk_Flesh.h\"\n";
  push(@data, $line);
  $line = "\#include \"cctk_WarnLevel.h\"\n";
  push(@data, $line);
  $line = "\#include \"OverloadMacros.h\"\n\n";
  push(@data, $line);

  $line = "/* Define the prototypes for the dummy functions. */\n";
  push(@data, $line);
  $line = "\#define OVERLOADABLE(name) OVERLOADABLE_DUMMYPROTOTYPE(name)\n\n";
  push(@data, $line);

  $line = "\#include \"ThornOverloadables.h\"\n\n";
  push(@data, $line);

  $line = "\#undef OVERLOADABLE\n\n";
  push(@data, $line);

  $line = "\#define OVERLOADABLE(name) OVERLOADABLE_FUNCTION(name)\n\n";
  push(@data, $line);

  $line = "\#include \"ThornOverloadables.h\"\n\n";
  push(@data, $line);

  $line = "\#undef OVERLOADABLE\n\n";
  push(@data, $line);

  $line = "\#undef OVERLOADABLE_CALL\n";
  push(@data, $line);
  $line = "\#undef OVERLOADABLE_PREFIX\n";
  push(@data, $line);
  $line = "\#undef OVERLOADABLE_DUMMY_PREFIX\n\n";
  push(@data, $line);

  $line = "/* Initialising Stuff */\n\n";
  push(@data, $line);

  $line = "void CCTKBindings_SetupThornFunctions(void);\n";
  push(@data, $line);
  $line = "void CCTKBindings_SetupThornFunctions(void)\n";
  push(@data, $line);
  $line = "{\n";
  push(@data, $line);
  $line = "\#undef OVERLOADABLE\n";
  push(@data, $line);
  $line = "\#define OVERLOADABLE(name) OVERLOADABLE_INITIALISE(name)\n";
  push(@data, $line);
  $line = "\#include \"ThornOverloadables.h\"\n";
  push(@data, $line);
  $line = "#undef OVERLOADABLE\n";
  push(@data, $line);
  $line = "}\n\n";
  push(@data, $line);

  $dataout = "";
  foreach $line (@data)
  {
    $dataout .= $line;
  }

  return $dataout;
}



#/*@@
#  @routine    ThornIncludes.h
#  @date       Thu Feb 15 2001
#  @author     Gabrielle Allen
#  @desc 
#  Create function prototypes for each thorn
#  @enddesc 
#  @calls     
#  @calledby   
#  @history 
#
#  @endhistory 
#
#@@*/

sub ThornIncludes
{

  my($thorn,$function_db,$rhinterface_db) = @_;
  my($line,@data,$dataout,$function);

  # Header Data
  $line = "/*\@\@\n";
  push(@data, $line);
  $line = "  \@header    $thorn"."_Prototypes.h\n";
  push(@data, $line);
  $line = "  \@desc\n";
  push(@data, $line);
  $line = "  Prototypes for overloaded functions used by this thorn\n";
  push(@data, $line);
  $line = "  \@enddesc \n";
  push(@data, $line);
  $line = "  \@\@*/\n\n";
  push(@data, $line);
  $line = "\#ifndef _\U$thorn\E_PROTOTYPES_H_\n";
  push(@data, $line);
  $line = "\#define _\U$thorn\E_PROTOTYPES_H_\n\n";
  push(@data, $line);


  $line = "\#ifdef CCODE\n";
  push(@data, $line);

  foreach $function (split(" ",($rhinterface_db->{"\U$thorn USES FUNCTION\E"})))
  {
    if ($function !~ m:^\s*$:)
    {
	$line = "extern $function_db->{\"$function RET\"} (*$function)($function_db->{\"$function CARGS\"});\n";
	push(@data, $line);
    }
  }

  $line = "\#endif /*CCODE*/\n\n";
  push(@data, $line);

  $line = "\#endif\n\n";
  push(@data, $line);

  $dataout = "";
  foreach $line (@data)
  {
    $dataout .= $line;
  }

  return $dataout;
}


#/*@@
#  @routine    RegisterAllFunctions
#  @date       Sun Feb 11 2001
#  @author     Gabrielle Allen
#  @desc 
#  Create file to call all thorn function registration
#  @enddesc 
#  @calls     
#  @calledby   
#  @history 
#
#  @endhistory 
#
#@@*/

sub RegisterAllFunctions
{
  my($rhinterface_db) = @_;
  my($dataout,$line,@data);

  $line = "/*\@\@\n";
  push(@data, $line);
  $line = "  \@header    RegisterAllFunctions.c\n";
  push(@data, $line);
  $line = "  \@desc\n";
  push(@data, $line);
  $line = "  Register aliased functions from active thorns\n";
  push(@data, $line);
  $line = "  \@enddesc \n";
  push(@data, $line);
  $line = "  \@returntype int\n";
  push(@data, $line);
  $line = "  \@returndesc \n";
  push(@data, $line);
  $line = "  Minus number of failed overloads\n";
  push(@data, $line);
  $line = "  \@endreturndesc\n";
  push(@data, $line);
  $line = "  \@\@*/\n\n";
  push(@data, $line);
  $line = "\#include \"cctk_Flesh.h\"\n";
  push(@data, $line);
  $line = "\#include \"cctk_ActiveThorns.h\"\n\n";
  push(@data, $line);

  foreach $thorn (split(" ",$rhinterface_db->{"THORNS"}))
  {
    $line = "int CCTKBindings_".$thorn."Aliases(void);\n";
    push(@data, $line);
  }
  $line = "int CCTKBindings_RegisterThornFunctions(void);\n\n";
  push(@data, $line);
  $line = "int CCTKBindings_RegisterThornFunctions(void)\n";
  push(@data, $line);
  $line = "{\n";
  push(@data, $line);
  $line = "  int retval = 0;\n";
  push(@data, $line);

  foreach $thorn (split(" ",$rhinterface_db->{"THORNS"}))
  {
    $line = "  if (CCTK_IsThornActive(\"$thorn\"))\n";
    push(@data, $line);
    $line = "  {\n";
    push(@data, $line);
    $line = "    retval =+ CCTKBindings_".$thorn."Aliases();\n";
    push(@data, $line);
    $line = "  }\n";
    push(@data, $line);
  }
  $line = "  return retval;\n";
  push(@data, $line);
  $line = "}\n";
  push(@data, $line);

  $dataout = "";
  foreach $line (@data)
  {
    $dataout .= $line;
  }

  return $dataout;

}

#/*@@
#  @routine    DummyThornFunctions
#  @date       Sat Feb 10
#  @author     Gabrielle Allen
#  @desc 
#  Check contents for ThornOverloadables_h
#  @enddesc 
#  @calls     
#  @calledby   
#  @history 
#
#  @endhistory 
#
#@@*/

sub DummyThornFunctions
{
  my($function_db) = @_;
  my($dataout,$line,@data);

  # Header Data
  $line = "/*\@\@\n";
  push(@data, $line);
  $line = "  \@header    DummyThornFunctions.h\n";
  push(@data, $line);
  $line = "  \@desc\n";
  push(@data, $line);
  $line = "  Dummy functions for overloaded thorn functions\n";
  push(@data, $line);
  $line = "  \@enddesc \n";
  push(@data, $line);
  $line = "  \@\@*/\n\n";
  push(@data, $line);
  $line = "\#include <stdlib.h>\n\n";
  push(@data, $line);
  $line = "\#include \"cctk_Flesh.h\"\n";
  push(@data, $line);
  $line = "\#include \"cctk_WarnLevel.h\"\n\n";
  push(@data, $line);

  foreach $function (split(" ",$function_db->{"FUNCTIONS"}))
  {
    if ($function !~ m:^\s*$:)
      {
	$ret = $function_db->{"$function RET"};

	$line = "$ret CCTKBindings_Dummy$function($function_db->{\"$function CARGS\"});\n";
	push(@data, $line);
	$line = "$ret CCTKBindings_Dummy$function($function_db->{\"$function CARGS\"})\n";
	push(@data, $line);
	$line = "{\n";
	push(@data, $line);
	
	# Make sure we use all arguments to avoid warnings
	$line = "  const void *cctk_dummy_pointer;\n";
	push(@data, $line);
	$line = "  cctk_dummy_pointer = cctk_dummy_pointer;\n";
	push(@data, $line);
	foreach $arg (split(",",$function_db->{"$function CARGS"}))
	{
	  $arg =~ m:(.*\s+\**)([^\s*\*]+)\s*:;
#	  $type=$1;
	  $name=$2;
	  $line = "  cctk_dummy_pointer = \&$name;\n";
	  push(@data, $line);
	}
	$line = "  CCTK_Warn(1,__LINE__,__FILE__,\"Bindings\",\n";
	push(@data, $line);
	$line = "            \"CCTKBindings_Dummy$function: Calling thorn function $function which has not been overloaded\");\n";
	push(@data, $line);
	if ($ret =~ m:INT:i)
	{
	  $line = "return -1;";
	  push(@data, $line);
	}
	elsif ($ret =~ m:REAL:i)
	{
	  $line = "return 0;";
	  push(@data, $line);
	}	  
	$line = "}\n\n";
	push(@data, $line);
    }      
  }

  $dataout = "";
  foreach $line (@data)
  {
    $dataout .= $line;
  }

  return $dataout;
  
}


#/*@@
#  @routine    RegisterThornFunctions
#  @date       Sun Feb 11 2001
#  @author     Gabrielle Allen
#  @desc 
#  Create contents for files to register aliased functions
#  @enddesc 
#  @calls     
#  @calledby   
#  @history 
#
#  @endhistory 
#
#@@*/

sub RegisterThornFunctions
{
  my($thorn,$function_db,$rhinterface_db) = @_;
  my($dataout,$line,@data,$function);

  # Header Data
  $line = "/*\@\@\n";
  push(@data, $line);
  $line = "  \@header    $thorn"."_Register.h\n";
  push(@data, $line);
  $line = "  \@desc\n";
  push(@data, $line);
  $line = "  Register aliased functions for $thorn\n";
  push(@data, $line);
  $line = "  \@enddesc \n";
  push(@data, $line);
  $line = "  \@\@*/\n\n";
  push(@data, $line);
  $line = "\#include \"cctk_Flesh.h\"\n";
  push(@data, $line);

  foreach $function (split(" ",$rhinterface_db->{"\U$thorn PROVIDES FUNCTION\E"}))
  {
    if ($function !~ m:^\s*$:)
    {
      $provided_with = $rhinterface_db->{"\U$thorn PROVIDES FUNCTION\E $function WITH"};
      $ret = $function_db->{"$function RET"};
      $args = $function_db->{"$function CARGS"};

      $line = "$ret $provided_with($args);\n";
      push(@data, $line);
      $line = "int CCTKBindings_Overload$function($ret (* $function)($args));\n";
      push(@data, $line);
    }
  }
  $line = "\n";
  push(@data, $line);
  $line = "int CCTKBindings_".$thorn."Aliases(void);\n";
  push(@data, $line);
  $line = "\n";
  push(@data, $line);
  $line = "int CCTKBindings_".$thorn."Aliases(void)\n";
  push(@data, $line);
  $line = "{\n";
  push(@data, $line);
  $line = "  int retval=0; /* returns minus number of failed overloads */\n";
  push(@data, $line);
  $line = "  int ierr=0;\n\n";
  push(@data, $line);
  $line = "  retval = ierr; /* use ierr to prevent warnings */\n\n";
  push(@data, $line);


  foreach $function (split(" ",$rhinterface_db->{"\U$thorn PROVIDES FUNCTION\E"}))
  {
    if ($function !~ m:^\s*$:)
    {
	$line = "  ierr = CCTKBindings_Overload$function($rhinterface_db->{\"\U$thorn PROVIDES FUNCTION\E $function WITH\"});\n";
	push(@data, $line);
	$line = "  retval = (ierr == 0) ? retval-- : retval;\n";
	push(@data, $line);
    }
  }
  
  $line = "  return retval;\n";
  push(@data, $line);
  $line = "}\n";
  push(@data, $line);
  
  $dataout = "";
  foreach $line (@data)
  {
    $dataout .= $line;
  }

  return ($dataout);
}


#/*@@
#  @routine    FortranThornFunctions
#  @date       Sat Feb 10 2001
#  @author     Gabrielle Allen
#  @desc 
#  Create fortran wrappers for thorn functions
#  @enddesc 
#  @calls     
#  @calledby   
#  @history 
#
#  @endhistory 
#
#@@*/

sub FortranThornFunctions
{
  my($function_db) = @_;
  my($dataout,$line,@data,$function);

  # Header Data
  $line = "/*\@\@\n";
  push(@data, $line);
  $line = "  \@header    FortranThornFunctions.h\n";
  push(@data, $line);
  $line = "  \@desc\n";
  push(@data, $line);
  $line = "  Fortran wrappers for overloaded thorn functions\n";
  push(@data, $line);
  $line = "  \@enddesc \n";
  push(@data, $line);
  $line = "  \@\@*/\n\n";
  push(@data, $line);
  $line = "\#include <stdlib.h>\n\n";
  push(@data, $line);
  $line = "\#include \"cctk_Flesh.h\"\n";
  push(@data, $line);
  $line = "\#include \"cctk_WarnLevel.h\"\n\n";
  push(@data, $line);
  $line = "\#include \"cctk_FortranString.h\"\n\n";
  push(@data, $line);

  # Do aliased function prototypes
  foreach $function (split(" ",$function_db->{"FUNCTIONS"}))
  {
    if ($function !~ m:^\s*$:)
    {
	$line = "extern $function_db->{\"$function RET\"} (*$function)($function_db->{\"$function CARGS\"});\n";
	push(@data, $line);
    }
  }
  $line = "\n\n";
  push(@data, $line);


  foreach $function (split(" ",$function_db->{"FUNCTIONS"}))
  {
    if ($function !~ m:^\s*$:)
    {
      $line = "$function_db->{\"$function RET\"} CCTK_FCALL CCTK_FNAME($function)\n";
      $line .= "($function_db->{\"$function WARGS\"}";
      if ($function_db->{"$function STRINGS"} == 1)
      {
	$line .= ", ONE_FORTSTRING_ARG";
      }
      elsif ($function_db->{"$function STRINGS"} == 2)
      {
	$line .= ", TWO_FORTSTRINGS_ARGS";
      }
      elsif ($function_db->{"$function STRINGS"} == 3)
      {
	$line .= ", THREE_FORTSTRINGS_ARGS";
      }

      $line .= ")";

      # prototype
      push(@data, "$line;\n");
      # call
      push(@data, "$line\n");
      $line = "{\n";
      push(@data, $line);

      if ($function_db->{"$function TYPE"} =~ "FUNC")
      {
	$line = "  $function_db->{\"$function RET\"} cctki_retval;\n";
	push(@data, $line);
      }

      if ($function_db->{"$function STRINGS"} == 1)
      {
	$line = "ONE_FORTSTRING_CREATE(cctki_string1)\n";
	push(@data, $line);
      }
      elsif ($function_db->{"$function STRINGS"} == 2)
      {
	$line = "TWO_FORTSTRINGS_CREATE(cctki_string1,cctki_string2)\n";
	push(@data, $line);
      }
      elsif ($function_db->{"$function STRINGS"} == 3)
      {
	$line = "THREE_FORTSTRINGS_CREATE(cctki_string1,cctki_string2,cctki_string3)\n";
	push(@data, $line);
      }

      if ($function_db->{"$function TYPE"} =~ "FUNC")
      {
	$line = "  cctki_retval = \n";
	push(@data, $line);
      }

      $line = "    $function($function_db->{\"$function WCALL\"}";
      push(@data, $line);

      if ($function_db->{"$function STRINGS"} == 1)
      {
	$line = ", cctki_string1";
	push(@data, $line);
      }
      elsif ($function_db->{"$function STRINGS"} == 2)
      {
	$line = ", cctki_string1, cctki_string2";
	push(@data, $line);
      }
      elsif ($function_db->{"$function STRINGS"} == 3)
      {
	$line = ", cctki_string1, cctki_string2, cctki_string3";
	push(@data, $line);
      }

      $line = ");\n";
      push(@data, $line);

      if ($function_db->{"$function STRINGS"} == 1)
      {
	$line = "  free(cctki_string1);\n";
	push(@data, $line);
      }
      elsif ($function_db->{"$function STRINGS"} == 2)
      {
	$line = "  free(cctki_string1);\n  free(cctki_string2);\n";
	push(@data, $line);
      }
      elsif ($function_db->{"$function STRINGS"} == 3)
      {
	$line = "  free(cctki_string1);\n  free(cctki_string2);\n  free(cctki_string3);\n";
	push(@data, $line);
      }

      if ($function_db->{"$function TYPE"} =~ "FUNC")
      {
	$line = "  return cctki_retval; \n";
	push(@data, $line);
      }

      $line = "}\n";
      push(@data, $line);
    }
  }

  $dataout = "";
  foreach $line (@data)
  {
    $dataout .= $line;
  }
  
  return $dataout;
}

#/*@@
#  @routine    FunctionDatabase
#  @date       Wed Dec 06 11.37
#  @author     Gabrielle Allen
#  @desc 
#  Check consistency for Thorn Functions and create database
#  @enddesc 
#  @calls     
#  @calledby   
#  @history 
#
#  @endhistory 
#
#@@*/

sub FunctionDatabase
{
  my($rhinterface_db) = @_;
  my($thorn,$inret,$inargs,$message,$function);

  $function_db->{"FUNCTIONS"}= " ";
  $function_db->{"PROVIDED FUNCTIONS"}= " ";

  # Add used functions to database
  foreach $thorn (split(" ",$rhinterface_db->{"THORNS"}))
  {
    foreach $function (split(" ",($rhinterface_db->{"\U$thorn USES FUNCTION\E"})))
    {
      $inargs = $rhinterface_db->{"\U$thorn FUNCTION\E $function ARGS"};
      $inret  = $rhinterface_db->{"\U$thorn FUNCTION\E $function RET"};

      ($nstrings,$types,$c,$fortran,$wrappercall,$wrapperargs,$cargs) = &ParseArguments($inret,$inargs);

      if ($function_db->{"FUNCTIONS"} =~ / $function / && $function !~ /^\s*$/)
      {
	if ($types ne $function_db->{"$function TYPES"})
	{
	  $message = "Argument types for aliased $function do not match";
	  &CST_error(0,$message,__LINE__,__FILE__);
	}
	if ($inret ne $function_db->{"$function RET"})
	{
	  $message = "Return types for aliased $function do not match";
	  &CST_error(0,$message,__LINE__,__FILE__);
	}
      }
      else
      {
	if ($inret =~ m:^\s*void\s*$:)
	{
	  $function_db->{"$function CARGS"} = "SUB";
	}
	else
	{
	  $function_db->{"$function CARGS"} = "FUNC";
	}

	if ($c)
	{
	  if ($fortran)
	  {
	    $function_db->{"$function LANG"} = "FC";
	  }
	  else
	  {
	    $function_db->{"$function LANG"} = "C";
	    $message = "Fortran wrapper not created for alias $function";
	    &CST_error(1,$message,__LINE__,__FILE__);
	  }
	}
	else
	{
	  $function_db->{"$function LANG"} = "";
	  $message = "Can't create alias for $function";
	  &CST_error(0,$message,__LINE__,__FILE__);
	}	  

	if ($rhinterface_db->{"\U$thorn FUNCTION\E $function RET"} eq "void")
	{
	  $function_db->{"$function TYPE"} = "SUB";
	}
	else
	{
	  $function_db->{"$function TYPE"} = "FUNC";
	}

	$function_db->{"FUNCTIONS"} .= "$function ";
	$function_db->{"$function STRINGS"} = $nstrings;
	$function_db->{"$function CARGS"} = $cargs;
	$function_db->{"$function TYPES"} = $types;
	$function_db->{"$function WARGS"} = $wrapperargs;
	$function_db->{"$function WCALL"} = $wrappercall;
	$function_db->{"$function RET"} = $rhinterface_db->{"\U$thorn FUNCTION\E $function RET"};
      }
    }
  }

  # Check consistency of providing functions
  foreach $thorn (split(" ",$rhinterface_db->{"THORNS"}))
  {
    foreach $function (split(" ",($rhinterface_db->{"\U$thorn PROVIDES FUNCTION\E"})))
    {
      $inargs = $rhinterface_db->{"\U$thorn FUNCTION\E $function ARGS"};
      $inret  = $rhinterface_db->{"\U$thorn FUNCTION\E $function RET"};

      ($nstrings,$types,$c,$fortran,$wrappercall,$wrapperargs,$cargs) = &ParseArguments($inret,$inargs);

      if ($function_db->{"FUNCTIONS"} =~ / $function / && $function !~ /^\s*$/)
      {
	if ($types ne $function_db->{"$function TYPES"})
	{
	  $message = "Argument types for aliased $function do not match";
	  &CST_error(0,$message,__LINE__,__FILE__);
	}
	if ($inret ne $function_db->{"$function RET"})
	{
	  $message = "Return types for aliased $function do not match";
	  &CST_error(0,$message,__LINE__,__FILE__);
	}
      }
      $function_db->{"PROVIDED FUNCTIONS"} .= "$function ";
    }
  }

  # Check to see if any functions are potentially used and not provided
  foreach $function (split(" ",($function_db->{"FUNCTIONS"})))
  {
    if ($function_db->{"PROVIDED FUNCTIONS"} !~ / $function /)
    {
      $message = "Aliased function $function is not provided by any thorn";
      &CST_error(1,$message,__LINE__,__FILE__);
    }
  }

  return $function_db;
}

#/*@@
#  @routine    ParseArguments
#  @date       Sun Feb 11 2001
#  @author     Gabrielle Allen
#  @desc 
#  Parse the argument list and create versions for C and Fortran
#  @enddesc 
#  @calls     
#  @calledby   
#  @history 
#
#  @endhistory 
#
#@@*/

sub ParseArguments
{
  my($ret,$args) = @_;
  my($number_args);

#  print "\nParsing Arguments\n";
#  print "=================\n";
#  print "All args: $args\n";

  $fwrapperargs     = "";
  $fwrappercallargs = "";
  $ccallargs        = "";
  $types            = "";
  $number_args  = split(",",$args);

  # Need to count strings for fortran wrappers
  $number_strings = 0;

  # Will be set to zero if can't generate a fortran wrapper
  $fortran = 1;
  # Will be set to zero if can't add the aliased C function
  $c = 1;

  foreach $arg (split(",",$args))
  {

#    print "  Arg is $arg\n";

    # last part is the argument name
    $arg =~ m:(.*)\s+([^\s]+)\s*:;
    $name = $2;
    $type = $1;
    $name =~ s:^\s*::;
    $name =~ s:\s*$::;
    $type =~ s:^\s*::;
    $type =~ s:\s*$::;

    $types = "$types $type";

#    print "    Name is $name\n";
#    print "    Type is $type\n";

    # treat string differently
    
    if ($type =~ m/CCTK_STRING/)
    {
      $number_strings++;
      $ccallargs .= "$type $name, ";
    }
    elsif ($type =~ m/CCTK_INT/ || $type =~ m/CCTK_REAL/)
    {
      if ($number_strings)
      {
	$fortran = 0;
      }
      # look for an array
      if ($type =~ m/^\s*(CCTK_INT??|CCTK_REAL??):ARRAY\s*$/)
      {
	$ccallargs .= "$1 *$name, ";
	$fwrapperargs .= "$1 *$name, ";
	$fwrappercallargs .= "$name, ";
      }
      else
      {
	$ccallargs .= "$type $name, ";
	$fwrapperargs .= "$type *$name, ";
	$fwrappercallargs .= "*$name, ";
      }
    }
    else
    {
      $fortran = 0;
      $c = 0;
      $message = "Error parsing aliased function argument $arg";
      &CST_error(1,$message,__LINE__,__FILE__);
    }
  }

  # Remove trailing comma
  $ccallargs =~ s/,\s$//;
  $fwrapperargs =~ s/,\s$//;
  $fwrappercallargs =~ s/,\s$//;

  # Can't do more than three strings for fortran
  if ($number_strings > 3)
  {
    $fortran = 0;
  }

  return ($number_strings,$types,$c,$fortran,$fwrappercallargs,$fwrapperargs,$ccallargs);
}

1;