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
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
|
#
# $Id: gen_rpc.awk,v 11.25 2001/01/02 20:04:55 sue Exp $
# Awk script for generating client/server RPC code.
#
# This awk script generates most of the RPC routines for DB client/server
# use. It also generates a template for server and client procedures. These
# functions must still be edited, but are highly stylized and the initial
# template gets you a fair way along the path).
#
# This awk script requires that these variables be set when it is called:
#
# client_file -- the C source file being created for client code
# cproto_file -- the header file create for client prototypes
# ctmpl_file -- the C template file being created for client code
# sed_file -- the sed file created to alter server proc code
# server_file -- the C source file being created for server code
# sproto_file -- the header file create for server prototypes
# stmpl_file -- the C template file being created for server code
# xdr_file -- the XDR message file created
#
# And stdin must be the input file that defines the RPC setup.
BEGIN {
if (client_file == "" || cproto_file == "" || ctmpl_file == "" ||
sed_file == "" || server_file == "" ||
sproto_file == "" || stmpl_file == "" || xdr_file == "") {
print "Usage: gen_rpc.awk requires these variables be set:"
print "\tclient_file\t-- the client C source file being created"
print "\tcproto_file\t-- the client prototype header created"
print "\tctmpl_file\t-- the client template file being created"
print "\tsed_file\t-- the sed command file being created"
print "\tserver_file\t-- the server C source file being created"
print "\tsproto_file\t-- the server prototype header created"
print "\tstmpl_file\t-- the server template file being created"
print "\txdr_file\t-- the XDR message file being created"
error = 1; exit
}
FS="\t\t*"
CFILE=client_file
printf("/* Do not edit: automatically built by gen_rpc.awk. */\n") \
> CFILE
CHFILE=cproto_file
printf("/* Do not edit: automatically built by gen_rpc.awk. */\n") \
> CHFILE
TFILE = ctmpl_file
printf("/* Do not edit: automatically built by gen_rpc.awk. */\n") \
> TFILE
SFILE = server_file
printf("/* Do not edit: automatically built by gen_rpc.awk. */\n") \
> SFILE
SHFILE=sproto_file
printf("/* Do not edit: automatically built by gen_rpc.awk. */\n") \
> SHFILE
# Server procedure template and a sed file to massage an existing
# template source file to change args.
# SEDFILE should be same name as PFILE but .c
#
PFILE = stmpl_file
SEDFILE = sed_file
printf("") > SEDFILE
printf("/* Do not edit: automatically built by gen_rpc.awk. */\n") \
> PFILE
XFILE = xdr_file
printf("/* Do not edit: automatically built by gen_rpc.awk. */\n") \
> XFILE
nendlist = 1;
}
END {
printf("#endif /* HAVE_RPC */\n") >> CFILE
printf("#endif /* HAVE_RPC */\n") >> TFILE
printf("program DB_SERVERPROG {\n") >> XFILE
printf("\tversion DB_SERVERVERS {\n") >> XFILE
for (i = 1; i < nendlist; ++i)
printf("\t\t%s;\n", endlist[i]) >> XFILE
printf("\t} = 1;\n") >> XFILE
printf("} = 351457;\n") >> XFILE
}
/^[ ]*BEGIN/ {
name = $2;
msgid = $3;
nofunc_code = 0;
funcvars = 0;
gen_code = 1;
ret_code = 0;
if ($4 == "NOCLNTCODE")
gen_code = 0;
if ($4 == "NOFUNC")
nofunc_code = 1;
if ($4 == "RETCODE")
ret_code = 1;
nvars = 0;
rvars = 0;
newvars = 0;
db_handle = 0;
env_handle = 0;
dbc_handle = 0;
txn_handle = 0;
mp_handle = 0;
dbt_handle = 0;
xdr_free = 0;
}
/^[ ]*ARG/ {
rpc_type[nvars] = $2;
c_type[nvars] = $3;
pr_type[nvars] = $3;
args[nvars] = $4;
func_arg[nvars] = 0;
if (rpc_type[nvars] == "LIST") {
list_type[nvars] = $5;
} else
list_type[nvars] = 0;
if (c_type[nvars] == "DBT *")
dbt_handle = 1;
if (c_type[nvars] == "DB_ENV *") {
ctp_type[nvars] = "CT_ENV";
env_handle = 1;
env_idx = nvars;
}
if (c_type[nvars] == "DB *") {
ctp_type[nvars] = "CT_DB";
db_handle = 1;
db_idx = nvars;
}
if (c_type[nvars] == "DBC *") {
ctp_type[nvars] = "CT_CURSOR";
dbc_handle = 1;
dbc_idx = nvars;
}
if (c_type[nvars] == "DB_TXN *") {
ctp_type[nvars] = "CT_TXN";
txn_handle = 1;
txn_idx = nvars;
}
if (c_type[nvars] == "DB_MPOOLFILE *") {
mp_handle = 1;
mp_idx = nvars;
}
++nvars;
}
/^[ ]*FUNCPROT/ {
pr_type[nvars] = $2;
}
/^[ ]*FUNCARG/ {
rpc_type[nvars] = "IGNORE";
c_type[nvars] = $2;
args[nvars] = sprintf("func%d", funcvars);
func_arg[nvars] = 1;
++funcvars;
++nvars;
}
/^[ ]*RET/ {
ret_type[rvars] = $2;
retc_type[rvars] = $3;
retargs[rvars] = $4;
if (ret_type[rvars] == "LIST" || ret_type[rvars] == "DBT") {
xdr_free = 1;
}
if (ret_type[rvars] == "LIST") {
retlist_type[rvars] = $5;
} else
retlist_type[rvars] = 0;
++rvars;
}
/^[ ]*END/ {
#
# =====================================================
# Generate Client Nofunc code first if necessary
# NOTE: This code must be first, because we don't want any
# other code other than this function, so before we write
# out to the XDR and server files, we just generate this
# and move on if this is all we are doing.
#
if (nofunc_code == 1) {
#
# First time through, put out the general illegal function
#
if (first_nofunc == 0) {
printf("int __dbcl_rpc_illegal ") >> CHFILE
printf("__P((DB_ENV *, char *));\n") >> CHFILE
printf("int\n__dbcl_rpc_illegal(dbenv, name)\n") \
>> CFILE
printf("\tDB_ENV *dbenv;\n\tchar *name;\n") >> CFILE
printf("{\n\t__db_err(dbenv,\n") >> CFILE
printf("\t \"%%s method meaningless in RPC") >> CFILE
printf(" environment\", name);\n") >> CFILE
printf("\treturn (__db_eopnotsup(dbenv));\n") >> CFILE
printf("}\n\n") >> CFILE
first_nofunc = 1
}
#
# If we are doing a list, spit out prototype decl.
#
for (i = 0; i < nvars; i++) {
if (rpc_type[i] != "LIST")
continue;
printf("static int __dbcl_%s_%slist __P((", \
name, args[i]) >> CFILE
printf("__%s_%slist **, ", name, args[i]) >> CFILE
if (list_type[i] == "STRING")
printf("%s));\n", c_type[i]) >> CFILE
if (list_type[i] == "INT")
printf("u_int32_t));\n") >> CFILE
if (list_type[i] == "ID")
printf("%s));\n", c_type[i]) >> CFILE
printf("static void __dbcl_%s_%sfree __P((", \
name, args[i]) >> CFILE
printf("__%s_%slist **));\n", name, args[i]) >> CFILE
}
#
# Spit out PUBLIC prototypes.
#
printf("int __dbcl_%s __P((",name) >> CHFILE
sep = "";
for (i = 0; i < nvars; ++i) {
printf("%s%s", sep, pr_type[i]) >> CHFILE
sep = ", ";
}
printf("));\n") >> CHFILE
#
# Spit out function name/args.
#
printf("int\n") >> CFILE
printf("__dbcl_%s(", name) >> CFILE
sep = "";
for (i = 0; i < nvars; ++i) {
printf("%s%s", sep, args[i]) >> CFILE
sep = ", ";
}
printf(")\n") >> CFILE
for (i = 0; i < nvars; ++i)
if (func_arg[i] == 0)
printf("\t%s %s;\n", c_type[i], args[i]) \
>> CFILE
else
printf("\t%s;\n", c_type[i]) >> CFILE
#
# Call error function and return EINVAL
#
printf("{\n") >> CFILE
#
# If we don't have a local env, set one.
#
if (env_handle == 0) {
printf("\tDB_ENV *dbenv;\n\n") >> CFILE
if (db_handle)
printf("\tdbenv = %s->dbenv;\n", \
args[db_idx]) >> CFILE
else if (dbc_handle)
printf("\tdbenv = %s->dbp->dbenv;\n", \
args[dbc_idx]) >> CFILE
else if (txn_handle)
printf("\tdbenv = %s->mgrp->dbenv;\n", \
args[txn_idx]) >> CFILE
else if (mp_handle)
printf("\tdbenv = %s->dbmp->dbenv;\n", \
args[mp_idx]) >> CFILE
else
printf("\tdbenv = NULL;\n") >> CFILE
}
#
# Quiet the compiler for all variables.
#
# NOTE: Index 'i' starts at 1, not 0. Our first arg is
# the handle we need to get to the env, and we do not want
# to COMPQUIET that one.
for (i = 1; i < nvars; ++i) {
if (rpc_type[i] == "CONST" || rpc_type[i] == "DBT" ||
rpc_type[i] == "LIST" || rpc_type[i] == "STRING") {
printf("\tCOMPQUIET(%s, NULL);\n", args[i]) \
>> CFILE
}
if (rpc_type[i] == "INT" || rpc_type[i] == "IGNORE" ||
rpc_type[i] == "ID") {
printf("\tCOMPQUIET(%s, 0);\n", args[i]) \
>> CFILE
}
}
if (!env_handle) {
printf("\treturn (__dbcl_rpc_illegal(dbenv, ") >> CFILE
printf("\"%s\"));\n", name) >> CFILE
} else
printf("\treturn (__dbcl_rpc_illegal(%s, \"%s\"));\n", \
args[env_idx], name) >> CFILE
printf("}\n\n") >> CFILE
next;
}
#
# =====================================================
# XDR messages.
#
printf("\n") >> XFILE
#
# If there are any lists, generate the structure to contain them.
#
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "LIST") {
printf("struct __%s_%slist {\n", name, args[i]) >> XFILE
printf("\topaque ent<>;\n") >> XFILE
printf("\t__%s_%slist *next;\n", name, args[i]) >> XFILE
printf("};\n\n") >> XFILE
}
}
printf("struct __%s_msg {\n", name) >> XFILE
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "ID") {
printf("\tunsigned int %scl_id;\n", args[i]) >> XFILE
}
if (rpc_type[i] == "STRING") {
printf("\tstring %s<>;\n", args[i]) >> XFILE
}
if (rpc_type[i] == "INT") {
printf("\tunsigned int %s;\n", args[i]) >> XFILE
}
if (rpc_type[i] == "DBT") {
printf("\tunsigned int %sdlen;\n", args[i]) >> XFILE
printf("\tunsigned int %sdoff;\n", args[i]) >> XFILE
printf("\tunsigned int %sflags;\n", args[i]) >> XFILE
printf("\topaque %sdata<>;\n", args[i]) >> XFILE
}
if (rpc_type[i] == "LIST") {
printf("\t__%s_%slist *%slist;\n", \
name, args[i], args[i]) >> XFILE
}
}
printf("};\n") >> XFILE
printf("\n") >> XFILE
#
# If there are any lists, generate the structure to contain them.
#
for (i = 0; i < rvars; ++i) {
if (ret_type[i] == "LIST") {
printf("struct __%s_%sreplist {\n", \
name, retargs[i]) >> XFILE
printf("\topaque ent<>;\n") >> XFILE
printf("\t__%s_%sreplist *next;\n", \
name, retargs[i]) >> XFILE
printf("};\n\n") >> XFILE
}
}
#
# Generate the reply message
#
printf("struct __%s_reply {\n", name) >> XFILE
printf("\tunsigned int status;\n") >> XFILE
for (i = 0; i < rvars; ++i) {
if (ret_type[i] == "ID") {
printf("\tunsigned int %scl_id;\n", retargs[i]) >> XFILE
}
if (ret_type[i] == "STRING") {
printf("\tstring %s<>;\n", retargs[i]) >> XFILE
}
if (ret_type[i] == "INT") {
printf("\tunsigned int %s;\n", retargs[i]) >> XFILE
}
if (ret_type[i] == "DBL") {
printf("\tdouble %s;\n", retargs[i]) >> XFILE
}
if (ret_type[i] == "DBT") {
printf("\topaque %sdata<>;\n", retargs[i]) >> XFILE
}
if (ret_type[i] == "LIST") {
printf("\t__%s_%sreplist *%slist;\n", \
name, retargs[i], retargs[i]) >> XFILE
}
}
printf("};\n") >> XFILE
endlist[nendlist] = \
sprintf("__%s_reply __DB_%s(__%s_msg) = %d", \
name, name, name, nendlist);
nendlist++;
#
# =====================================================
# File headers, if necessary.
#
if (first == 0) {
printf("#include \"db_config.h\"\n") >> CFILE
printf("\n") >> CFILE
printf("#ifdef HAVE_RPC\n") >> CFILE
printf("#ifndef NO_SYSTEM_INCLUDES\n") >> CFILE
printf("#include <sys/types.h>\n") >> CFILE
printf("#include <rpc/rpc.h>\n") >> CFILE
printf("#include <rpc/xdr.h>\n") >> CFILE
printf("\n") >> CFILE
printf("#include <errno.h>\n") >> CFILE
printf("#include <string.h>\n") >> CFILE
printf("#endif\n") >> CFILE
printf("#include \"db_server.h\"\n") >> CFILE
printf("\n") >> CFILE
printf("#include \"db_int.h\"\n") >> CFILE
printf("#include \"db_page.h\"\n") >> CFILE
printf("#include \"db_ext.h\"\n") >> CFILE
printf("#include \"mp.h\"\n") >> CFILE
printf("#include \"rpc_client_ext.h\"\n") >> CFILE
printf("#include \"txn.h\"\n") >> CFILE
printf("\n") >> CFILE
n = split(CHFILE, hpieces, "/");
printf("#include \"%s\"\n", hpieces[n]) >> CFILE
printf("\n") >> CFILE
printf("#include \"db_config.h\"\n") >> TFILE
printf("\n") >> TFILE
printf("#ifdef HAVE_RPC\n") >> TFILE
printf("#ifndef NO_SYSTEM_INCLUDES\n") >> TFILE
printf("#include <sys/types.h>\n") >> TFILE
printf("#include <rpc/rpc.h>\n") >> TFILE
printf("\n") >> TFILE
printf("#include <errno.h>\n") >> TFILE
printf("#include <string.h>\n") >> TFILE
printf("#endif\n") >> TFILE
printf("#include \"db_server.h\"\n") >> TFILE
printf("\n") >> TFILE
printf("#include \"db_int.h\"\n") >> TFILE
printf("#include \"db_page.h\"\n") >> TFILE
printf("#include \"db_ext.h\"\n") >> TFILE
printf("#include \"txn.h\"\n") >> TFILE
printf("\n") >> TFILE
n = split(CHFILE, hpieces, "/");
printf("#include \"%s\"\n", hpieces[n]) >> TFILE
printf("\n") >> TFILE
printf("#include \"db_config.h\"\n") >> SFILE
printf("\n") >> SFILE
printf("#ifndef NO_SYSTEM_INCLUDES\n") >> SFILE
printf("#include <sys/types.h>\n") >> SFILE
printf("\n") >> SFILE
printf("#include <rpc/rpc.h>\n") >> SFILE
printf("#include <rpc/xdr.h>\n") >> SFILE
printf("\n") >> SFILE
printf("#include <errno.h>\n") >> SFILE
printf("#include <string.h>\n") >> SFILE
printf("#endif\n") >> SFILE
printf("#include \"db_server.h\"\n") >> SFILE
printf("\n") >> SFILE
printf("#include \"db_int.h\"\n") >> SFILE
printf("#include \"db_server_int.h\"\n") >> SFILE
printf("#include \"rpc_server_ext.h\"\n") >> SFILE
printf("\n") >> SFILE
n = split(SHFILE, hpieces, "/");
printf("#include \"%s\"\n", hpieces[n]) >> SFILE
printf("\n") >> SFILE
printf("#include \"db_config.h\"\n") >> PFILE
printf("\n") >> PFILE
printf("#ifndef NO_SYSTEM_INCLUDES\n") >> PFILE
printf("#include <sys/types.h>\n") >> PFILE
printf("\n") >> PFILE
printf("#include <rpc/rpc.h>\n") >> PFILE
printf("\n") >> PFILE
printf("#include <errno.h>\n") >> PFILE
printf("#include <string.h>\n") >> PFILE
printf("#include \"db_server.h\"\n") >> PFILE
printf("#endif\n") >> PFILE
printf("\n") >> PFILE
printf("#include \"db_int.h\"\n") >> PFILE
printf("#include \"db_server_int.h\"\n") >> PFILE
printf("#include \"rpc_server_ext.h\"\n") >> PFILE
printf("\n") >> PFILE
n = split(SHFILE, hpieces, "/");
printf("#include \"%s\"\n", hpieces[n]) >> PFILE
printf("\n") >> PFILE
first = 1;
}
#
# =====================================================
# Server functions.
#
# If we are doing a list, send out local list prototypes.
#
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] != "LIST")
continue;
if (list_type[i] != "STRING" && list_type[i] != "INT" &&
list_type[i] != "ID")
continue;
printf("int __db_%s_%slist __P((", name, args[i]) >> SFILE
printf("__%s_%slist *, ", name, args[i]) >> SFILE
if (list_type[i] == "STRING") {
printf("char ***));\n") >> SFILE
}
if (list_type[i] == "INT" || list_type[i] == "ID") {
printf("u_int32_t **));\n") >> SFILE
}
printf("void __db_%s_%sfree __P((", name, args[i]) >> SFILE
if (list_type[i] == "STRING")
printf("char **));\n\n") >> SFILE
if (list_type[i] == "INT" || list_type[i] == "ID")
printf("u_int32_t *));\n\n") >> SFILE
}
#
# First spit out PUBLIC prototypes for server functions.
#
printf("__%s_reply * __db_%s_%d __P((__%s_msg *));\n", \
name, name, msgid, name) >> SHFILE
printf("__%s_reply *\n", name) >> SFILE
printf("__db_%s_%d(req)\n", name, msgid) >> SFILE
printf("\t__%s_msg *req;\n", name) >> SFILE;
printf("{\n") >> SFILE
doing_list = 0;
#
# If we are doing a list, decompose it for server proc we'll call.
#
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] != "LIST")
continue;
doing_list = 1;
if (list_type[i] == "STRING")
printf("\tchar **__db_%slist;\n", args[i]) >> SFILE
if (list_type[i] == "ID" || list_type[i] == "INT")
printf("\tu_int32_t *__db_%slist;\n", args[i]) >> SFILE
}
if (doing_list)
printf("\tint ret;\n") >> SFILE
printf("\tstatic __%s_reply reply; /* must be static */\n", \
name) >> SFILE
if (xdr_free) {
printf("\tstatic int __%s_free = 0; /* must be static */\n\n", \
name) >> SFILE
printf("\tif (__%s_free)\n", name) >> SFILE
printf("\t\txdr_free((xdrproc_t)xdr___%s_reply, (void *)&reply);\n", \
name) >> SFILE
printf("\t__%s_free = 0;\n", name) >> SFILE
printf("\n\t/* Reinitialize allocated fields */\n") >> SFILE
for (i = 0; i < rvars; ++i) {
if (ret_type[i] == "LIST") {
printf("\treply.%slist = NULL;\n", \
retargs[i]) >> SFILE
}
if (ret_type[i] == "DBT") {
printf("\treply.%sdata.%sdata_val = NULL;\n", \
retargs[i], retargs[i]) >> SFILE
}
}
}
need_out = 0;
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "LIST") {
printf("\n\tif ((ret = __db_%s_%slist(", \
name, args[i]) >> SFILE
printf("req->%slist, &__db_%slist)) != 0)\n", \
args[i], args[i]) >> SFILE
printf("\t\tgoto out;\n") >> SFILE
need_out = 1;
}
}
#
# Compose server proc to call. Decompose message components as args.
#
printf("\n\t__%s_%d_proc(", name, msgid) >> SFILE
sep = "";
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "ID") {
printf("%sreq->%scl_id", sep, args[i]) >> SFILE
}
if (rpc_type[i] == "STRING") {
printf("%s(*req->%s == '\\0') ? NULL : req->%s", \
sep, args[i], args[i]) >> SFILE
}
if (rpc_type[i] == "INT") {
printf("%sreq->%s", sep, args[i]) >> SFILE
}
if (rpc_type[i] == "LIST") {
printf("%s__db_%slist", sep, args[i]) >> SFILE
}
if (rpc_type[i] == "DBT") {
printf("%sreq->%sdlen", sep, args[i]) >> SFILE
sep = ",\n\t ";
printf("%sreq->%sdoff", sep, args[i]) >> SFILE
printf("%sreq->%sflags", sep, args[i]) >> SFILE
printf("%sreq->%sdata.%sdata_val", \
sep, args[i], args[i]) >> SFILE
printf("%sreq->%sdata.%sdata_len", \
sep, args[i], args[i]) >> SFILE
}
sep = ",\n\t ";
}
printf("%s&reply", sep) >> SFILE
if (xdr_free)
printf("%s&__%s_free);\n", sep, name) >> SFILE
else
printf(");\n\n") >> SFILE
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "LIST") {
printf("\t__db_%s_%sfree(__db_%slist);\n", \
name, args[i], args[i]) >> SFILE
}
}
if (need_out) {
printf("\nout:\n") >> SFILE
}
printf("\treturn (&reply);\n") >> SFILE
printf("}\n\n") >> SFILE
#
# If we are doing a list, write list functions for this op.
#
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] != "LIST")
continue;
if (list_type[i] != "STRING" && list_type[i] != "INT" &&
list_type[i] != "ID")
continue;
printf("int\n") >> SFILE
printf("__db_%s_%slist(locp, ppp)\n", name, args[i]) >> SFILE
printf("\t__%s_%slist *locp;\n", name, args[i]) >> SFILE
if (list_type[i] == "STRING") {
printf("\tchar ***ppp;\n{\n") >> SFILE
printf("\tchar **pp;\n") >> SFILE
}
if (list_type[i] == "INT" || list_type[i] == "ID") {
printf("\tu_int32_t **ppp;\n{\n") >> SFILE
printf("\tu_int32_t *pp;\n") >> SFILE
}
printf("\tint cnt, ret, size;\n") >> SFILE
printf("\t__%s_%slist *nl;\n\n", name, args[i]) >> SFILE
printf("\tfor (cnt = 0, nl = locp;") >> SFILE
printf(" nl != NULL; cnt++, nl = nl->next)\n\t\t;\n\n") >> SFILE
printf("\tif (cnt == 0) {\n") >> SFILE
printf("\t\t*ppp = NULL;\n") >> SFILE
printf("\t\treturn (0);\n\t}\n") >> SFILE
printf("\tsize = sizeof(*pp) * (cnt + 1);\n") >> SFILE
printf("\tif ((ret = __os_malloc(NULL, size, ") >> SFILE
printf("NULL, ppp)) != 0)\n") >> SFILE
printf("\t\treturn (ret);\n") >> SFILE
printf("\tmemset(*ppp, 0, size);\n") >> SFILE
printf("\tfor (pp = *ppp, nl = locp;") >> SFILE
printf(" nl != NULL; nl = nl->next, pp++) {\n") >> SFILE
if (list_type[i] == "STRING") {
printf("\t\tif ((ret = __os_malloc(NULL ,") >> SFILE
printf("nl->ent.ent_len + 1, NULL, pp)) != 0)\n") \
>> SFILE
printf("\t\t\tgoto out;\n") >> SFILE
printf("\t\tif ((ret = __os_strdup(NULL, ") >> SFILE
printf("(char *)nl->ent.ent_val, pp)) != 0)\n") >> SFILE
printf("\t\t\tgoto out;\n") >> SFILE
}
if (list_type[i] == "INT" || list_type[i] == "ID")
printf("\t\t*pp = *(u_int32_t *)nl->ent.ent_val;\n") \
>> SFILE
printf("\t}\n") >> SFILE
printf("\treturn (0);\n") >> SFILE
if (list_type[i] == "STRING") {
printf("out:\n") >> SFILE
printf("\t__db_%s_%sfree(*ppp);\n", \
name, args[i]) >> SFILE
printf("\treturn (ret);\n") >> SFILE
}
printf("}\n\n") >> SFILE
printf("void\n") >> SFILE
printf("__db_%s_%sfree(pp)\n", name, args[i]) >> SFILE
if (list_type[i] == "STRING")
printf("\tchar **pp;\n") >> SFILE
if (list_type[i] == "INT" || list_type[i] == "ID")
printf("\tu_int32_t *pp;\n") >> SFILE
printf("{\n") >> SFILE
printf("\tsize_t size;\n") >> SFILE
if (list_type[i] == "STRING")
printf("\tchar **p;\n\n") >> SFILE
if (list_type[i] == "INT" || list_type[i] == "ID")
printf("\tu_int32_t *p;\n\n") >> SFILE
printf("\tif (pp == NULL)\n\t\treturn;\n") >> SFILE
printf("\tsize = sizeof(*p);\n") >> SFILE
printf("\tfor (p = pp; *p != 0; p++) {\n") >> SFILE
printf("\t\tsize += sizeof(*p);\n") >> SFILE
if (list_type[i] == "STRING")
printf("\t\t__os_free(*p, strlen(*p)+1);\n") >> SFILE
printf("\t}\n") >> SFILE
printf("\t__os_free(pp, size);\n") >> SFILE
printf("}\n\n") >> SFILE
}
#
# =====================================================
# Generate Procedure Template Server code
#
# Produce SED file commands if needed at the same time
#
# Start with PUBLIC prototypes
#
printf("void __%s_%d_proc __P((", name, msgid) >> SHFILE
sep = "";
argcount = 0;
for (i = 0; i < nvars; ++i) {
argcount++;
split_lines(1);
if (argcount == 0) {
sep = "";
}
if (rpc_type[i] == "IGNORE")
continue;
if (rpc_type[i] == "ID") {
printf("%slong", sep) >> SHFILE
}
if (rpc_type[i] == "STRING") {
printf("%schar *", sep) >> SHFILE
}
if (rpc_type[i] == "INT") {
printf("%su_int32_t", sep) >> SHFILE
}
if (rpc_type[i] == "LIST" && list_type[i] == "STRING") {
printf("%schar **", sep) >> SHFILE
}
if (rpc_type[i] == "LIST" && list_type[i] == "INT") {
printf("%su_int32_t *", sep) >> SHFILE
}
if (rpc_type[i] == "LIST" && list_type[i] == "ID") {
printf("%su_int32_t *", sep) >> SHFILE
}
if (rpc_type[i] == "DBT") {
printf("%su_int32_t", sep) >> SHFILE
sep = ", ";
argcount++;
split_lines(1);
if (argcount == 0) {
sep = "";
} else {
sep = ", ";
}
printf("%su_int32_t", sep) >> SHFILE
argcount++;
split_lines(1);
if (argcount == 0) {
sep = "";
} else {
sep = ", ";
}
printf("%su_int32_t", sep) >> SHFILE
argcount++;
split_lines(1);
if (argcount == 0) {
sep = "";
} else {
sep = ", ";
}
printf("%svoid *", sep) >> SHFILE
argcount++;
split_lines(1);
if (argcount == 0) {
sep = "";
} else {
sep = ", ";
}
printf("%su_int32_t", sep) >> SHFILE
}
sep = ", ";
}
printf("%s__%s_reply *", sep, name) >> SHFILE
if (xdr_free) {
printf("%sint *));\n", sep) >> SHFILE
} else {
printf("));\n") >> SHFILE
}
#
# Spit out function name and arg list
#
printf("/^\\/\\* BEGIN __%s_%d_proc/,/^\\/\\* END __%s_%d_proc/c\\\n", \
name, msgid, name, msgid) >> SEDFILE
printf("/* BEGIN __%s_%d_proc */\n", name, msgid) >> PFILE
printf("/* BEGIN __%s_%d_proc */\\\n", name, msgid) >> SEDFILE
printf("void\n") >> PFILE
printf("void\\\n") >> SEDFILE
printf("__%s_%d_proc(", name, msgid) >> PFILE
printf("__%s_%d_proc(", name, msgid) >> SEDFILE
sep = "";
argcount = 0;
for (i = 0; i < nvars; ++i) {
argcount++;
split_lines(0);
if (argcount == 0) {
sep = "";
}
if (rpc_type[i] == "IGNORE")
continue;
if (rpc_type[i] == "ID") {
printf("%s%scl_id", sep, args[i]) >> PFILE
printf("%s%scl_id", sep, args[i]) >> SEDFILE
}
if (rpc_type[i] == "STRING") {
printf("%s%s", sep, args[i]) >> PFILE
printf("%s%s", sep, args[i]) >> SEDFILE
}
if (rpc_type[i] == "INT") {
printf("%s%s", sep, args[i]) >> PFILE
printf("%s%s", sep, args[i]) >> SEDFILE
}
if (rpc_type[i] == "LIST") {
printf("%s%slist", sep, args[i]) >> PFILE
printf("%s%slist", sep, args[i]) >> SEDFILE
}
if (rpc_type[i] == "DBT") {
printf("%s%sdlen", sep, args[i]) >> PFILE
printf("%s%sdlen", sep, args[i]) >> SEDFILE
sep = ", ";
argcount++;
split_lines(0);
if (argcount == 0) {
sep = "";
} else {
sep = ", ";
}
printf("%s%sdoff", sep, args[i]) >> PFILE
printf("%s%sdoff", sep, args[i]) >> SEDFILE
argcount++;
split_lines(0);
if (argcount == 0) {
sep = "";
} else {
sep = ", ";
}
printf("%s%sflags", sep, args[i]) >> PFILE
printf("%s%sflags", sep, args[i]) >> SEDFILE
argcount++;
split_lines(0);
if (argcount == 0) {
sep = "";
} else {
sep = ", ";
}
printf("%s%sdata", sep, args[i]) >> PFILE
printf("%s%sdata", sep, args[i]) >> SEDFILE
argcount++;
split_lines(0);
if (argcount == 0) {
sep = "";
} else {
sep = ", ";
}
printf("%s%ssize", sep, args[i]) >> PFILE
printf("%s%ssize", sep, args[i]) >> SEDFILE
}
sep = ", ";
}
printf("%sreplyp",sep) >> PFILE
printf("%sreplyp",sep) >> SEDFILE
if (xdr_free) {
printf("%sfreep)\n",sep) >> PFILE
printf("%sfreep)\\\n",sep) >> SEDFILE
} else {
printf(")\n") >> PFILE
printf(")\\\n") >> SEDFILE
}
#
# Spit out arg types/names;
#
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "ID") {
printf("\tlong %scl_id;\n", args[i]) >> PFILE
printf("\\\tlong %scl_id;\\\n", args[i]) >> SEDFILE
}
if (rpc_type[i] == "STRING") {
printf("\tchar *%s;\n", args[i]) >> PFILE
printf("\\\tchar *%s;\\\n", args[i]) >> SEDFILE
}
if (rpc_type[i] == "INT") {
printf("\tu_int32_t %s;\n", args[i]) >> PFILE
printf("\\\tu_int32_t %s;\\\n", args[i]) >> SEDFILE
}
if (rpc_type[i] == "LIST" && list_type[i] == "STRING") {
printf("\tchar ** %slist;\n", args[i]) >> PFILE
printf("\\\tchar ** %slist;\\\n", args[i]) >> SEDFILE
}
if (rpc_type[i] == "LIST" && list_type[i] == "INT") {
printf("\tu_int32_t * %slist;\n", args[i]) >> PFILE
printf("\\\tu_int32_t * %slist;\\\n", \
args[i]) >> SEDFILE
}
if (rpc_type[i] == "LIST" && list_type[i] == "ID") {
printf("\tu_int32_t * %slist;\n", args[i]) >> PFILE
printf("\\\tu_int32_t * %slist;\\\n", args[i]) \
>> SEDFILE
}
if (rpc_type[i] == "DBT") {
printf("\tu_int32_t %sdlen;\n", args[i]) >> PFILE
printf("\\\tu_int32_t %sdlen;\\\n", args[i]) >> SEDFILE
printf("\tu_int32_t %sdoff;\n", args[i]) >> PFILE
printf("\\\tu_int32_t %sdoff;\\\n", args[i]) >> SEDFILE
printf("\tu_int32_t %sflags;\n", args[i]) >> PFILE
printf("\\\tu_int32_t %sflags;\\\n", args[i]) >> SEDFILE
printf("\tvoid *%sdata;\n", args[i]) >> PFILE
printf("\\\tvoid *%sdata;\\\n", args[i]) >> SEDFILE
printf("\tu_int32_t %ssize;\n", args[i]) >> PFILE
printf("\\\tu_int32_t %ssize;\\\n", args[i]) >> SEDFILE
}
}
printf("\t__%s_reply *replyp;\n",name) >> PFILE
printf("\\\t__%s_reply *replyp;\\\n",name) >> SEDFILE
if (xdr_free) {
printf("\tint * freep;\n") >> PFILE
printf("\\\tint * freep;\\\n") >> SEDFILE
}
printf("/* END __%s_%d_proc */\n", name, msgid) >> PFILE
printf("/* END __%s_%d_proc */\n", name, msgid) >> SEDFILE
#
# Function body
#
printf("{\n") >> PFILE
printf("\tint ret;\n") >> PFILE
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "ID") {
printf("\t%s %s;\n", c_type[i], args[i]) >> PFILE
printf("\tct_entry *%s_ctp;\n", args[i]) >> PFILE
}
}
printf("\n") >> PFILE
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "ID") {
printf("\tACTIVATE_CTP(%s_ctp, %scl_id, %s);\n", \
args[i], args[i], ctp_type[i]) >> PFILE
printf("\t%s = (%s)%s_ctp->ct_anyp;\n", \
args[i], c_type[i], args[i]) >> PFILE
}
}
printf("\n\t/*\n\t * XXX Code goes here\n\t */\n\n") >> PFILE
printf("\treplyp->status = ret;\n") >> PFILE
printf("\treturn;\n") >> PFILE
printf("}\n\n") >> PFILE
#
# If we don't want client code generated, go on to next.
#
if (gen_code == 0)
next;
#
# =====================================================
# Generate Client code
#
# If we are doing a list, spit out prototype decl.
#
for (i = 0; i < nvars; i++) {
if (rpc_type[i] != "LIST")
continue;
printf("static int __dbcl_%s_%slist __P((", \
name, args[i]) >> CFILE
printf("__%s_%slist **, ", name, args[i]) >> CFILE
if (list_type[i] == "STRING")
printf("%s));\n", c_type[i]) >> CFILE
if (list_type[i] == "INT")
printf("u_int32_t));\n") >> CFILE
if (list_type[i] == "ID")
printf("%s));\n", c_type[i]) >> CFILE
printf("static void __dbcl_%s_%sfree __P((", \
name, args[i]) >> CFILE
printf("__%s_%slist **));\n", name, args[i]) >> CFILE
}
#
# Spit out PUBLIC prototypes.
#
printf("int __dbcl_%s __P((",name) >> CHFILE
sep = "";
for (i = 0; i < nvars; ++i) {
printf("%s%s", sep, pr_type[i]) >> CHFILE
sep = ", ";
}
printf("));\n") >> CHFILE
#
# Spit out function name/args.
#
printf("int\n") >> CFILE
printf("__dbcl_%s(", name) >> CFILE
sep = "";
for (i = 0; i < nvars; ++i) {
printf("%s%s", sep, args[i]) >> CFILE
sep = ", ";
}
printf(")\n") >> CFILE
for (i = 0; i < nvars; ++i)
if (func_arg[i] == 0)
printf("\t%s %s;\n", c_type[i], args[i]) >> CFILE
else
printf("\t%s;\n", c_type[i]) >> CFILE
printf("{\n") >> CFILE
printf("\tCLIENT *cl;\n") >> CFILE
printf("\t__%s_msg req;\n", name) >> CFILE
printf("\tstatic __%s_reply *replyp = NULL;\n", name) >> CFILE;
printf("\tint ret;\n") >> CFILE
if (!env_handle)
printf("\tDB_ENV *dbenv;\n") >> CFILE
printf("\n") >> CFILE
printf("\tret = 0;\n") >> CFILE
if (!env_handle) {
printf("\tdbenv = NULL;\n") >> CFILE
if (db_handle)
printf("\tdbenv = %s->dbenv;\n", args[db_idx]) >> CFILE
else if (dbc_handle)
printf("\tdbenv = %s->dbp->dbenv;\n", \
args[dbc_idx]) >> CFILE
else if (txn_handle)
printf("\tdbenv = %s->mgrp->dbenv;\n", \
args[txn_idx]) >> CFILE
printf("\tif (dbenv == NULL || dbenv->cl_handle == NULL) {\n") \
>> CFILE
printf("\t\t__db_err(dbenv, \"No server environment.\");\n") \
>> CFILE
} else {
printf("\tif (%s == NULL || %s->cl_handle == NULL) {\n", \
args[env_idx], args[env_idx]) >> CFILE
printf("\t\t__db_err(%s, \"No server environment.\");\n", \
args[env_idx]) >> CFILE
}
printf("\t\treturn (DB_NOSERVER);\n") >> CFILE
printf("\t}\n") >> CFILE
printf("\n") >> CFILE
#
# Free old reply if there was one.
#
printf("\tif (replyp != NULL) {\n") >> CFILE
printf("\t\txdr_free((xdrproc_t)xdr___%s_reply, (void *)replyp);\n", \
name) >> CFILE
printf("\t\treplyp = NULL;\n\t}\n") >> CFILE
if (!env_handle)
printf("\tcl = (CLIENT *)dbenv->cl_handle;\n") >> CFILE
else
printf("\tcl = (CLIENT *)%s->cl_handle;\n", \
args[env_idx]) >> CFILE
printf("\n") >> CFILE
#
# If there is a function arg, check that it is NULL
#
for (i = 0; i < nvars; ++i) {
if (func_arg[i] != 1)
continue;
printf("\tif (%s != NULL) {\n", args[i]) >> CFILE
printf("\t\t__db_err(%s, ", args[env_idx]) >> CFILE
printf("\"User functions not supported in RPC.\");\n") >> CFILE
printf("\t\treturn (EINVAL);\n\t}\n") >> CFILE
}
#
# Compose message components
#
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "ID") {
printf("\tif (%s == NULL)\n", args[i]) >> CFILE
printf("\t\treq.%scl_id = 0;\n\telse\n", \
args[i]) >> CFILE
if (c_type[i] == "DB_TXN *") {
printf("\t\treq.%scl_id = %s->txnid;\n", \
args[i], args[i]) >> CFILE
} else {
printf("\t\treq.%scl_id = %s->cl_id;\n", \
args[i], args[i]) >> CFILE
}
}
if (rpc_type[i] == "INT") {
printf("\treq.%s = %s;\n", args[i], args[i]) >> CFILE
}
if (rpc_type[i] == "STRING") {
printf("\tif (%s == NULL)\n", args[i]) >> CFILE
printf("\t\treq.%s = \"\";\n", args[i]) >> CFILE
printf("\telse\n") >> CFILE
printf("\t\treq.%s = (char *)%s;\n", \
args[i], args[i]) >> CFILE
}
if (rpc_type[i] == "DBT") {
printf("\treq.%sdlen = %s->dlen;\n", \
args[i], args[i]) >> CFILE
printf("\treq.%sdoff = %s->doff;\n", \
args[i], args[i]) >> CFILE
printf("\treq.%sflags = %s->flags;\n", \
args[i], args[i]) >> CFILE
printf("\treq.%sdata.%sdata_val = %s->data;\n", \
args[i], args[i], args[i]) >> CFILE
printf("\treq.%sdata.%sdata_len = %s->size;\n", \
args[i], args[i], args[i]) >> CFILE
}
if (rpc_type[i] == "LIST") {
printf("\tif ((ret = __dbcl_%s_%slist(", \
name, args[i]) >> CFILE
printf("&req.%slist, %s)) != 0)\n", \
args[i], args[i]) >> CFILE
printf("\t\tgoto out;\n") >> CFILE
}
}
printf("\n") >> CFILE
printf("\treplyp = __db_%s_%d(&req, cl);\n", name, msgid) >> CFILE
printf("\tif (replyp == NULL) {\n") >> CFILE
if (!env_handle) {
printf("\t\t__db_err(dbenv, ") >> CFILE
printf("clnt_sperror(cl, \"Berkeley DB\"));\n") >> CFILE
} else {
printf("\t\t__db_err(%s, ", args[env_idx]) >> CFILE
printf("clnt_sperror(cl, \"Berkeley DB\"));\n") >> CFILE
}
printf("\t\tret = DB_NOSERVER;\n") >> CFILE
printf("\t\tgoto out;\n") >> CFILE
printf("\t}\n") >> CFILE
if (ret_code == 0) {
printf("\tret = replyp->status;\n") >> CFILE
} else {
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "LIST") {
printf("\t__dbcl_%s_%sfree(&req.%slist);\n", \
name, args[i], args[i]) >> CFILE
}
}
printf("\treturn (__dbcl_%s_ret(", name) >> CFILE
sep = "";
for (i = 0; i < nvars; ++i) {
printf("%s%s", sep, args[i]) >> CFILE
sep = ", ";
}
printf("%sreplyp));\n", sep) >> CFILE
}
printf("out:\n") >> CFILE
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "LIST") {
printf("\t__dbcl_%s_%sfree(&req.%slist);\n", \
name, args[i], args[i]) >> CFILE
}
}
printf("\treturn (ret);\n") >> CFILE
printf("}\n\n") >> CFILE
#
# If we are doing a list, write list functions for op.
#
for (i = 0; i < nvars; i++) {
if (rpc_type[i] != "LIST")
continue;
printf("int\n__dbcl_%s_%slist(locp, pp)\n", \
name, args[i]) >> CFILE
printf("\t__%s_%slist **locp;\n", name, args[i]) >> CFILE
if (list_type[i] == "STRING")
printf("\t%s pp;\n{\n\t%s p;\n", \
c_type[i], c_type[i]) >> CFILE
if (list_type[i] == "INT")
printf("\tu_int32_t *pp;\n{\n\tu_int32_t *p, *q;\n") \
>> CFILE
if (list_type[i] == "ID")
printf("\t%s pp;\n{\n\t%s p;\n\tu_int32_t *q;\n", \
c_type[i], c_type[i]) >> CFILE
printf("\tint ret;\n") >> CFILE
printf("\t__%s_%slist *nl, **nlp;\n\n", name, args[i]) >> CFILE
printf("\t*locp = NULL;\n") >> CFILE
printf("\tif (pp == NULL)\n\t\treturn (0);\n") >> CFILE
printf("\tnlp = locp;\n") >> CFILE
printf("\tfor (p = pp; *p != 0; p++) {\n") >> CFILE
printf("\t\tif ((ret = __os_malloc(NULL, ") >> CFILE
printf("sizeof(*nl), NULL, nlp)) != 0)\n") >> CFILE
printf("\t\t\tgoto out;\n") >> CFILE
printf("\t\tnl = *nlp;\n") >> CFILE
printf("\t\tnl->next = NULL;\n") >> CFILE
printf("\t\tnl->ent.ent_val = NULL;\n") >> CFILE
printf("\t\tnl->ent.ent_len = 0;\n") >> CFILE
if (list_type[i] == "STRING") {
printf("\t\tif ((ret = __os_strdup(NULL, ") >> CFILE
printf("*p, &nl->ent.ent_val)) != 0)\n") >> CFILE
printf("\t\t\tgoto out;\n") >> CFILE
printf("\t\tnl->ent.ent_len = strlen(*p)+1;\n") >> CFILE
}
if (list_type[i] == "INT") {
printf("\t\tif ((ret = __os_malloc(NULL, ") >> CFILE
printf("sizeof(%s), NULL, &nl->ent.ent_val)) != 0)\n", \
c_type[i]) >> CFILE
printf("\t\t\tgoto out;\n") >> CFILE
printf("\t\tq = (u_int32_t *)nl->ent.ent_val;\n") \
>> CFILE
printf("\t\t*q = *p;\n") >> CFILE
printf("\t\tnl->ent.ent_len = sizeof(%s);\n", \
c_type[i]) >> CFILE
}
if (list_type[i] == "ID") {
printf("\t\tif ((ret = __os_malloc(NULL, ") >> CFILE
printf("sizeof(u_int32_t),") >> CFILE
printf(" NULL, &nl->ent.ent_val)) != 0)\n") >> CFILE
printf("\t\t\tgoto out;\n") >> CFILE
printf("\t\tq = (u_int32_t *)nl->ent.ent_val;\n") \
>> CFILE
printf("\t\t*q = (*p)->cl_id;\n") >> CFILE
printf("\t\tnl->ent.ent_len = sizeof(u_int32_t);\n") \
>> CFILE
}
printf("\t\tnlp = &nl->next;\n") >> CFILE
printf("\t}\n") >> CFILE
printf("\treturn (0);\n") >> CFILE
printf("out:\n") >> CFILE
printf("\t__dbcl_%s_%sfree(locp);\n", name, args[i]) >> CFILE
printf("\treturn (ret);\n") >> CFILE
printf("}\n\n") >> CFILE
printf("void\n__dbcl_%s_%sfree(locp)\n", name, args[i]) >> CFILE
printf("\t__%s_%slist **locp;\n", name, args[i]) >> CFILE
printf("{\n") >> CFILE
printf("\t__%s_%slist *nl, *nl1;\n\n", name, args[i]) >> CFILE
printf("\tif (locp == NULL)\n\t\treturn;\n") >> CFILE
printf("\tfor (nl = *locp; nl != NULL; nl = nl1) {\n") >> CFILE
printf("\t\tnl1 = nl->next;\n") >> CFILE
printf("\t\tif (nl->ent.ent_val)\n") >> CFILE
printf("\t\t\t__os_free(nl->ent.ent_val, nl->ent.ent_len);\n") \
>> CFILE
printf("\t\t__os_free(nl, sizeof(*nl));\n") >> CFILE
printf("\t}\n}\n\n") >> CFILE
}
#
# Generate Client Template code
#
if (ret_code) {
#
# If we are doing a list, write prototypes
#
for (i = 0; i < rvars; ++i) {
if (ret_type[i] != "LIST")
continue;
if (retlist_type[i] != "STRING" &&
retlist_type[i] != "INT" && list_type[i] != "ID")
continue;
printf("int __db_%s_%sreplist __P((", \
name, retargs[i]) >> TFILE
printf("__%s_%sreplist, ", \
name, retargs[i]) >> TFILE
if (retlist_type[i] == "STRING") {
printf("char ***));\n") >> TFILE
}
if (retlist_type[i] == "INT" ||
retlist_type[i] == "ID") {
printf("u_int32_t **));\n") >> TFILE
}
printf("void __db_%s_%sfree __P((", \
name, retargs[i]) >> TFILE
if (retlist_type[i] == "STRING")
printf("char **));\n") >> TFILE
if (retlist_type[i] == "INT" || retlist_type[i] == "ID")
printf("u_int32_t *));\n\n") >> TFILE
}
printf("int __dbcl_%s_ret __P((", name) >> CHFILE
sep = "";
for (i = 0; i < nvars; ++i) {
printf("%s%s", sep, pr_type[i]) >> CHFILE
sep = ", ";
}
printf("%s__%s_reply *));\n", sep, name) >> CHFILE
printf("int\n") >> TFILE
printf("__dbcl_%s_ret(", name) >> TFILE
sep = "";
for (i = 0; i < nvars; ++i) {
printf("%s%s", sep, args[i]) >> TFILE
sep = ", ";
}
printf("%sreplyp)\n",sep) >> TFILE
for (i = 0; i < nvars; ++i)
if (func_arg[i] == 0)
printf("\t%s %s;\n", c_type[i], args[i]) \
>> TFILE
else
printf("\t%s;\n", c_type[i]) >> TFILE
printf("\t__%s_reply *replyp;\n", name) >> TFILE;
printf("{\n") >> TFILE
printf("\tint ret;\n") >> TFILE
#
# Local vars in template
#
for (i = 0; i < rvars; ++i) {
if (ret_type[i] == "ID" || ret_type[i] == "STRING" ||
ret_type[i] == "INT" || ret_type[i] == "DBL") {
printf("\t%s %s;\n", \
retc_type[i], retargs[i]) >> TFILE
} else if (ret_type[i] == "LIST") {
if (retlist_type[i] == "STRING")
printf("\tchar **__db_%slist;\n", \
retargs[i]) >> TFILE
if (retlist_type[i] == "ID" ||
retlist_type[i] == "INT")
printf("\tu_int32_t *__db_%slist;\n", \
retargs[i]) >> TFILE
} else {
printf("\t/* %s %s; */\n", \
ret_type[i], retargs[i]) >> TFILE
}
}
#
# Client return code
#
printf("\n") >> TFILE
printf("\tif (replyp->status != 0)\n") >> TFILE
printf("\t\treturn (replyp->status);\n") >> TFILE
for (i = 0; i < rvars; ++i) {
varname = "";
if (ret_type[i] == "ID") {
varname = sprintf("%scl_id", retargs[i]);
}
if (ret_type[i] == "STRING") {
varname = retargs[i];
}
if (ret_type[i] == "INT" || ret_type[i] == "DBL") {
varname = retargs[i];
}
if (ret_type[i] == "DBT") {
varname = sprintf("%sdata", retargs[i]);
}
if (ret_type[i] == "ID" || ret_type[i] == "STRING" ||
ret_type[i] == "INT" || ret_type[i] == "DBL") {
printf("\t%s = replyp->%s;\n", \
retargs[i], varname) >> TFILE
} else if (ret_type[i] == "LIST") {
printf("\n\tif ((ret = __db_%s_%slist(", \
name, retargs[i]) >> TFILE
printf("replyp->%slist, &__db_%slist)) != 0)", \
retargs[i], retargs[i]) >> TFILE
printf("\n\t\treturn (ret);\n") >> TFILE
printf("\n\t/*\n") >> TFILE
printf("\t * XXX Handle list\n") >> TFILE
printf("\t */\n\n") >> TFILE
printf("\t__db_%s_%sfree(__db_%slist);\n", \
name, retargs[i], retargs[i]) >> TFILE
} else {
printf("\t/* Handle replyp->%s; */\n", \
varname) >> TFILE
}
}
printf("\n\t/*\n\t * XXX Code goes here\n\t */\n\n") >> TFILE
printf("\treturn (replyp->status);\n") >> TFILE
printf("}\n\n") >> TFILE
#
# If we are doing a list, write list functions for this op.
#
for (i = 0; i < rvars; ++i) {
if (ret_type[i] != "LIST")
continue;
if (retlist_type[i] != "STRING" &&
retlist_type[i] != "INT" && list_type[i] != "ID")
continue;
printf("int\n") >> TFILE
printf("__db_%s_%sreplist(locp, ppp)\n", \
name, retargs[i]) >> TFILE
printf("\t__%s_%sreplist *locp;\n", \
name, retargs[i]) >> TFILE
if (retlist_type[i] == "STRING") {
printf("\tchar ***ppp;\n{\n") >> TFILE
printf("\tchar **pp;\n") >> TFILE
}
if (retlist_type[i] == "INT" ||
retlist_type[i] == "ID") {
printf("\tu_int32_t **ppp;\n{\n") >> TFILE
printf("\tu_int32_t *pp;\n") >> TFILE
}
printf("\tint cnt, ret, size;\n") >> TFILE
printf("\t__%s_%sreplist *nl;\n\n", \
name, retargs[i]) >> TFILE
printf("\tfor (cnt = 0, nl = locp; ") >> TFILE
printf("nl != NULL; cnt++, nl = nl->next)\n\t\t;\n\n") \
>> TFILE
printf("\tif (cnt == 0) {\n") >> TFILE
printf("\t\t*ppp = NULL;\n") >> TFILE
printf("\t\treturn (0);\n\t}\n") >> TFILE
printf("\tsize = sizeof(*pp) * cnt;\n") >> TFILE
printf("\tif ((ret = __os_malloc(NULL, ") >> TFILE
printf("size, NULL, ppp)) != 0)\n") >> TFILE
printf("\t\treturn (ret);\n") >> TFILE
printf("\tmemset(*ppp, 0, size);\n") >> TFILE
printf("\tfor (pp = *ppp, nl = locp; ") >> TFILE
printf("nl != NULL; nl = nl->next, pp++) {\n") >> TFILE
if (retlist_type[i] == "STRING") {
printf("\t\tif ((ret = __os_malloc(NULL, ") \
>> TFILE
printf("nl->ent.ent_len + 1, NULL,") >> TFILE
printf(" pp)) != 0)\n") >> TFILE
printf("\t\t\tgoto out;\n") >> TFILE
printf("\t\tif ((ret = __os_strdup(") >> TFILE
printf("NULL, (char *)nl->ent.ent_val,") \
>> TFILE
printf(" pp)) != 0)\n") >> TFILE
printf("\t\t\tgoto out;\n") >> TFILE
}
if (retlist_type[i] == "INT" ||
retlist_type[i] == "ID") {
printf("\t\t*pp = *(u_int32_t *)") >> TFILE
printf("nl->ent.ent_val;\n") >> TFILE
}
printf("\t}\n") >> TFILE
printf("\treturn (0);\n") >> TFILE
printf("out:\n") >> TFILE
printf("\t__db_%s_%sfree(*ppp);\n", \
name, retargs[i]) >> TFILE
printf("\treturn (ret);\n") >> TFILE
printf("}\n\n") >> TFILE
printf("void\n") >> TFILE
printf("__db_%s_%sfree(pp)\n", \
name, retargs[i]) >> TFILE
if (retlist_type[i] == "STRING")
printf("\tchar **pp;\n") >> TFILE
if (retlist_type[i] == "INT" || retlist_type[i] == "ID")
printf("\tu_int32_t *pp;\n") >> TFILE
printf("{\n") >> TFILE
printf("\tsize_t size;\n") >> TFILE
if (retlist_type[i] == "STRING")
printf("\tchar **p;\n\n") >> TFILE
if (retlist_type[i] == "INT" || retlist_type[i] == "ID")
printf("\tu_int32_t *p;\n\n") >> TFILE
printf("\tif (pp == NULL)\n\t\treturn;\n") >> TFILE
printf("\tsize = sizeof(*p);\n") >> TFILE
printf("\tfor (p = pp; *p != 0; p++) {\n") >> TFILE
printf("\t\tsize += sizeof(*p);\n") >> TFILE
if (retlist_type[i] == "STRING")
printf("\t\t__os_free(*p, strlen(*p)+1);\n") \
>> TFILE
printf("\t}\n") >> TFILE
printf("\t__os_free(pp, size);\n") >> TFILE
printf("}\n\n") >> TFILE
}
}
}
#
# split_lines --
# Add line separators to pretty-print the output.
function split_lines(is_public) {
if (argcount > 3) {
# Reset the counter, remove any trailing whitespace from
# the separator.
argcount = 0;
sub("[ ]$", "", sep)
if (is_public) {
printf("%s\n\t", sep) >> SHFILE
} else {
printf("%s\n\t\t", sep) >> PFILE
printf("%s\\\n\\\t\\\t", sep) >> SEDFILE
}
}
}
|