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
|
#
# $Id: gen_rpc.awk,v 1.1.1.1 2003/11/20 22:13:24 toshok 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:
#
# major -- Major version number
# minor -- Minor version number
# xidsize -- size of GIDs
# client_file -- the C source file being created for client code
# 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
# 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 (major == "" || minor == "" || xidsize == "" ||
client_file == "" || ctmpl_file == "" ||
sed_file == "" || server_file == "" ||
stmpl_file == "" || xdr_file == "") {
print "Usage: gen_rpc.awk requires these variables be set:"
print "\tmajor\t-- Major version number"
print "\tminor\t-- Minor version number"
print "\txidsize\t-- GID size"
print "\tclient_file\t-- the client C source file being 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 "\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
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
# 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_RPC_SERVERPROG {\n") >> XFILE
printf("\tversion DB_RPC_SERVERVERS {\n") >> XFILE
for (i = 1; i < nendlist; ++i)
printf("\t\t%s;\n", endlist[i]) >> XFILE
printf("\t} = %d%03d;\n", major, minor) >> XFILE
printf("} = 351457;\n") >> XFILE
}
/^[ ]*BEGIN/ {
name = $2;
nofunc_code = 0;
funcvars = 0;
ret_code = 0;
if ($3 == "NOFUNC")
nofunc_code = 1;
if ($3 == "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";
if (db_handle != 1) {
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/ {
#
# =====================================================
# 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\n") >> CFILE
printf("#include <rpc/rpc.h>\n") >> CFILE
printf("#include <rpc/xdr.h>\n") >> CFILE
printf("\n") >> CFILE
printf("#include <string.h>\n") >> CFILE
printf("#endif\n") >> CFILE
printf("\n") >> CFILE
printf("#include \"db_int.h\"\n") >> CFILE
printf("#include \"dbinc/txn.h\"\n") >> CFILE
printf("\n") >> CFILE
printf("#include \"dbinc_auto/db_server.h\"\n") >> CFILE
printf("#include \"dbinc_auto/rpc_client_ext.h\"\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 <string.h>\n") >> TFILE
printf("#endif\n") >> TFILE
printf("#include \"db_int.h\"\n") >> TFILE
printf("#include \"dbinc_auto/db_server.h\"\n") >> TFILE
printf("#include \"dbinc/txn.h\"\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 <string.h>\n") >> SFILE
printf("#endif\n") >> SFILE
printf("\n") >> SFILE
printf("#include \"db_int.h\"\n") >> SFILE
printf("#include \"dbinc_auto/db_server.h\"\n") >> SFILE
printf("#include \"dbinc/db_server_int.h\"\n") >> SFILE
printf("#include \"dbinc_auto/rpc_server_ext.h\"\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 <string.h>\n") >> PFILE
printf("#endif\n") >> PFILE
printf("\n") >> PFILE
printf("#include \"db_int.h\"\n") >> PFILE
printf("#include \"dbinc_auto/db_server.h\"\n") >> PFILE
printf("#include \"dbinc/db_server_int.h\"\n") >> PFILE
printf("#include \"dbinc_auto/rpc_server_ext.h\"\n") >> PFILE
printf("\n") >> PFILE
first = 1;
}
#
# =====================================================
# 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 no server and
# illegal functions.
#
if (first_nofunc == 0) {
printf("static int __dbcl_noserver ") >> CFILE
printf("__P((DB_ENV *));\n\n") >> CFILE
printf("static int\n") >> CFILE
printf("__dbcl_noserver(dbenv)\n") >> CFILE
printf("\tDB_ENV *dbenv;\n") >> CFILE
printf("{\n\t__db_err(dbenv,") >> CFILE
printf(" \"No server environment\");\n") >> CFILE
printf("\treturn (DB_NOSERVER);\n") >> CFILE
printf("}\n\n") >> CFILE
printf("static int __dbcl_rpc_illegal ") >> CFILE
printf("__P((DB_ENV *, char *));\n\n") >> CFILE
printf("static int\n") >> CFILE
printf("__dbcl_rpc_illegal(dbenv, name)\n") >> CFILE
printf("\tDB_ENV *dbenv;\n\tchar *name;\n") >> CFILE
printf("{\n\t__db_err(dbenv,") >> CFILE
printf(" \"%%s method meaningless in an RPC") >> CFILE
printf(" environment\", name);\n") >> CFILE
printf("\treturn (__db_eopnotsup(dbenv));\n") >> CFILE
printf("}\n\n") >> CFILE
first_nofunc = 1
}
#
# Spit out PUBLIC prototypes.
#
pi = 1;
p[pi++] = sprintf("int __dbcl_%s __P((", name);
p[pi++] = "";
for (i = 0; i < nvars; ++i) {
p[pi++] = pr_type[i];
p[pi++] = ", ";
}
p[pi - 1] = "";
p[pi++] = "));";
p[pi] = "";
proto_format(p, 0, CFILE);
#
# 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" ||
rpc_type[i] == "GID") {
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
printf("struct __%s_msg {\n", name) >> XFILE
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "LIST") {
if (list_type[i] == "GID") {
printf("\topaque %s<>;\n", args[i]) >> XFILE
} else {
printf("\tunsigned int %s<>;\n", args[i]) >> XFILE
}
}
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] == "GID") {
printf("\topaque %s[%d];\n", args[i], xidsize) >> 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 %sulen;\n", args[i]) >> XFILE
printf("\tunsigned int %sflags;\n", args[i]) >> XFILE
printf("\topaque %sdata<>;\n", args[i]) >> XFILE
}
}
printf("};\n") >> XFILE
printf("\n") >> XFILE
#
# Generate the reply message
#
printf("struct __%s_reply {\n", name) >> XFILE
printf("\tint 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") {
if (retlist_type[i] == "GID") {
printf("\topaque %s<>;\n", retargs[i]) >> XFILE
} else {
printf("\tunsigned int %s<>;\n", retargs[i]) >> XFILE
}
}
}
printf("};\n") >> XFILE
endlist[nendlist] = \
sprintf("__%s_reply __DB_%s(__%s_msg) = %d", \
name, name, name, nendlist);
nendlist++;
#
# =====================================================
# Server functions.
#
# First spit out PUBLIC prototypes for server functions.
#
p[1] = sprintf("__%s_reply *__db_%s_%d%03d __P((__%s_msg *, struct svc_req *));",
name, name, major, minor, name);
p[2] = "";
proto_format(p, 0, SFILE);
printf("__%s_reply *\n", name) >> SFILE
printf("__db_%s_%d%03d(msg, req)\n", name, major, minor) >> SFILE
printf("\t__%s_msg *msg;\n", name) >> SFILE;
printf("\tstruct svc_req *req;\n", name) >> SFILE;
printf("{\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("\tCOMPQUIET(req, NULL);\n", name) >> SFILE
if (xdr_free) {
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.%s.%s_val = NULL;\n", \
retargs[i], retargs[i]) >> SFILE
}
if (ret_type[i] == "DBT") {
printf("\treply.%sdata.%sdata_val = NULL;\n", \
retargs[i], retargs[i]) >> SFILE
}
}
}
need_out = 0;
#
# Compose server proc to call. Decompose message components as args.
#
printf("\n\t__%s_proc(", name) >> SFILE
sep = "";
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "IGNORE") {
continue;
}
if (rpc_type[i] == "ID") {
printf("%smsg->%scl_id", sep, args[i]) >> SFILE
}
if (rpc_type[i] == "STRING") {
printf("%s(*msg->%s == '\\0') ? NULL : msg->%s", \
sep, args[i], args[i]) >> SFILE
}
if (rpc_type[i] == "GID") {
printf("%smsg->%s", sep, args[i]) >> SFILE
}
if (rpc_type[i] == "INT") {
printf("%smsg->%s", sep, args[i]) >> SFILE
}
if (rpc_type[i] == "LIST") {
printf("%smsg->%s.%s_val", \
sep, args[i], args[i]) >> SFILE
printf("%smsg->%s.%s_len", \
sep, args[i], args[i]) >> SFILE
}
if (rpc_type[i] == "DBT") {
printf("%smsg->%sdlen", sep, args[i]) >> SFILE
sep = ",\n\t ";
printf("%smsg->%sdoff", sep, args[i]) >> SFILE
printf("%smsg->%sulen", sep, args[i]) >> SFILE
printf("%smsg->%sflags", sep, args[i]) >> SFILE
printf("%smsg->%sdata.%sdata_val", \
sep, args[i], args[i]) >> SFILE
printf("%smsg->%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
if (need_out) {
printf("\nout:\n") >> SFILE
}
printf("\treturn (&reply);\n") >> SFILE
printf("}\n\n") >> SFILE
#
# =====================================================
# Generate Procedure Template Server code
#
# Produce SED file commands if needed at the same time
#
# Spit out comment, prototype, function name and arg list.
#
printf("/^\\/\\* BEGIN __%s_proc/,/^\\/\\* END __%s_proc/c\\\n", \
name, name) >> SEDFILE
printf("/* BEGIN __%s_proc */\n", name) >> PFILE
printf("/* BEGIN __%s_proc */\\\n", name) >> SEDFILE
pi = 1;
p[pi++] = sprintf("void __%s_proc __P((", name);
p[pi++] = "";
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "IGNORE")
continue;
if (rpc_type[i] == "ID") {
p[pi++] = "long";
p[pi++] = ", ";
}
if (rpc_type[i] == "STRING") {
p[pi++] = "char *";
p[pi++] = ", ";
}
if (rpc_type[i] == "GID") {
p[pi++] = "u_int8_t *";
p[pi++] = ", ";
}
if (rpc_type[i] == "INT") {
p[pi++] = "u_int32_t";
p[pi++] = ", ";
}
if (rpc_type[i] == "LIST" && list_type[i] == "GID") {
p[pi++] = "u_int8_t *";
p[pi++] = ", ";
p[pi++] = "u_int32_t";
p[pi++] = ", ";
}
if (rpc_type[i] == "LIST" && list_type[i] == "INT") {
p[pi++] = "u_int32_t *";
p[pi++] = ", ";
p[pi++] = "u_int32_t";
p[pi++] = ", ";
}
if (rpc_type[i] == "LIST" && list_type[i] == "ID") {
p[pi++] = "u_int32_t *";
p[pi++] = ", ";
p[pi++] = "u_int32_t";
p[pi++] = ", ";
}
if (rpc_type[i] == "DBT") {
p[pi++] = "u_int32_t";
p[pi++] = ", ";
p[pi++] = "u_int32_t";
p[pi++] = ", ";
p[pi++] = "u_int32_t";
p[pi++] = ", ";
p[pi++] = "u_int32_t";
p[pi++] = ", ";
p[pi++] = "void *";
p[pi++] = ", ";
p[pi++] = "u_int32_t";
p[pi++] = ", ";
}
}
p[pi++] = sprintf("__%s_reply *", name);
if (xdr_free) {
p[pi++] = ", ";
p[pi++] = "int *));";
} else {
p[pi++] = "";
p[pi++] = "));";
}
p[pi++] = "";
proto_format(p, 1, SEDFILE);
printf("void\n") >> PFILE
printf("void\\\n") >> SEDFILE
printf("__%s_proc(", name) >> PFILE
printf("__%s_proc(", name) >> SEDFILE
sep = "";
argcount = 0;
for (i = 0; i < nvars; ++i) {
argcount++;
split_lines();
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] == "GID") {
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%s", sep, args[i]) >> PFILE
printf("%s%s", sep, args[i]) >> SEDFILE
argcount++;
split_lines();
if (argcount == 0) {
sep = "";
} else {
sep = ", ";
}
printf("%s%slen", sep, args[i]) >> PFILE
printf("%s%slen", 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();
if (argcount == 0) {
sep = "";
} else {
sep = ", ";
}
printf("%s%sdoff", sep, args[i]) >> PFILE
printf("%s%sdoff", sep, args[i]) >> SEDFILE
argcount++;
split_lines();
if (argcount == 0) {
sep = "";
} else {
sep = ", ";
}
printf("%s%sulen", sep, args[i]) >> PFILE
printf("%s%sulen", sep, args[i]) >> SEDFILE
argcount++;
split_lines();
if (argcount == 0) {
sep = "";
} else {
sep = ", ";
}
printf("%s%sflags", sep, args[i]) >> PFILE
printf("%s%sflags", sep, args[i]) >> SEDFILE
argcount++;
split_lines();
if (argcount == 0) {
sep = "";
} else {
sep = ", ";
}
printf("%s%sdata", sep, args[i]) >> PFILE
printf("%s%sdata", sep, args[i]) >> SEDFILE
argcount++;
split_lines();
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] == "GID") {
printf("\tu_int8_t *%s;\n", args[i]) >> PFILE
printf("\\\tu_int8_t *%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] == "GID") {
printf("\tu_int8_t * %s;\n", args[i]) >> PFILE
printf("\\\tu_int8_t * %s;\\\n", args[i]) >> SEDFILE
}
if (rpc_type[i] == "LIST" && list_type[i] == "INT") {
printf("\tu_int32_t * %s;\n", args[i]) >> PFILE
printf("\\\tu_int32_t * %s;\\\n", \
args[i]) >> SEDFILE
printf("\tu_int32_t %ssize;\n", args[i]) >> PFILE
printf("\\\tu_int32_t %ssize;\\\n", args[i]) >> SEDFILE
}
if (rpc_type[i] == "LIST" && list_type[i] == "ID") {
printf("\tu_int32_t * %s;\n", args[i]) >> PFILE
printf("\\\tu_int32_t * %s;\\\n", args[i]) \
>> SEDFILE
}
if (rpc_type[i] == "LIST") {
printf("\tu_int32_t %slen;\n", args[i]) >> PFILE
printf("\\\tu_int32_t %slen;\\\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 %sulen;\n", args[i]) >> PFILE
printf("\\\tu_int32_t %sulen;\\\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_proc */\n", name) >> PFILE
printf("/* END __%s_proc */\n", name) >> 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
#
# =====================================================
# Generate Client code
#
# Spit out PUBLIC prototypes.
#
pi = 1;
p[pi++] = sprintf("int __dbcl_%s __P((", name);
p[pi++] = "";
for (i = 0; i < nvars; ++i) {
p[pi++] = pr_type[i];
p[pi++] = ", ";
}
p[pi - 1] = "";
p[pi++] = "));";
p[pi] = "";
proto_format(p, 0, CFILE);
#
# 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 msg;\n", name) >> CFILE
printf("\t__%s_reply *replyp = NULL;\n", name) >> CFILE;
printf("\tint ret;\n") >> CFILE
if (!env_handle)
printf("\tDB_ENV *dbenv;\n") >> CFILE
#
# If we are managing a list, we need a few more vars.
#
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "LIST") {
printf("\t%s %sp;\n", c_type[i], args[i]) >> CFILE
printf("\tint %si;\n", args[i]) >> CFILE
if (list_type[i] == "GID")
printf("\tu_int8_t ** %sq;\n", args[i]) >> CFILE
else
printf("\tu_int32_t * %sq;\n", args[i]) >> CFILE
}
}
printf("\n") >> CFILE
printf("\tret = 0;\n") >> CFILE
if (!env_handle) {
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
printf("\tdbenv = NULL;\n") >> CFILE
printf("\tif (dbenv == NULL || !RPC_ON(dbenv))\n") \
>> CFILE
printf("\t\treturn (__dbcl_noserver(NULL));\n") >> CFILE
} else {
printf("\tif (%s == NULL || !RPC_ON(%s))\n", \
args[env_idx], args[env_idx]) >> CFILE
printf("\t\treturn (__dbcl_noserver(%s));\n", \
args[env_idx]) >> CFILE
}
printf("\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
if (!env_handle) {
printf("\t\t__db_err(dbenv, ") >> CFILE
} else {
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\tmsg.%scl_id = 0;\n\telse\n", \
args[i]) >> CFILE
if (c_type[i] == "DB_TXN *") {
printf("\t\tmsg.%scl_id = %s->txnid;\n", \
args[i], args[i]) >> CFILE
} else {
printf("\t\tmsg.%scl_id = %s->cl_id;\n", \
args[i], args[i]) >> CFILE
}
}
if (rpc_type[i] == "GID") {
printf("\tmemcpy(msg.%s, %s, %d);\n", \
args[i], args[i], xidsize) >> CFILE
}
if (rpc_type[i] == "INT") {
printf("\tmsg.%s = %s;\n", args[i], args[i]) >> CFILE
}
if (rpc_type[i] == "STRING") {
printf("\tif (%s == NULL)\n", args[i]) >> CFILE
printf("\t\tmsg.%s = \"\";\n", args[i]) >> CFILE
printf("\telse\n") >> CFILE
printf("\t\tmsg.%s = (char *)%s;\n", \
args[i], args[i]) >> CFILE
}
if (rpc_type[i] == "DBT") {
printf("\tmsg.%sdlen = %s->dlen;\n", \
args[i], args[i]) >> CFILE
printf("\tmsg.%sdoff = %s->doff;\n", \
args[i], args[i]) >> CFILE
printf("\tmsg.%sulen = %s->ulen;\n", \
args[i], args[i]) >> CFILE
printf("\tmsg.%sflags = %s->flags;\n", \
args[i], args[i]) >> CFILE
printf("\tmsg.%sdata.%sdata_val = %s->data;\n", \
args[i], args[i], args[i]) >> CFILE
printf("\tmsg.%sdata.%sdata_len = %s->size;\n", \
args[i], args[i], args[i]) >> CFILE
}
if (rpc_type[i] == "LIST") {
printf("\tfor (%si = 0, %sp = %s; *%sp != 0; ", \
args[i], args[i], args[i], args[i]) >> CFILE
printf(" %si++, %sp++)\n\t\t;\n", args[i], args[i]) \
>> CFILE
#
# If we are an array of ints, *_len is how many
# elements. If we are a GID, *_len is total bytes.
#
printf("\tmsg.%s.%s_len = %si",args[i], args[i], \
args[i]) >> CFILE
if (list_type[i] == "GID")
printf(" * %d;\n", xidsize) >> CFILE
else
printf(";\n") >> CFILE
printf("\tif ((ret = __os_calloc(") >> CFILE
if (!env_handle)
printf("dbenv,\n") >> CFILE
else
printf("%s,\n", args[env_idx]) >> CFILE
printf("\t msg.%s.%s_len,", \
args[i], args[i]) >> CFILE
if (list_type[i] == "GID")
printf(" 1,") >> CFILE
else
printf(" sizeof(u_int32_t),") >> CFILE
printf(" &msg.%s.%s_val)) != 0)\n",\
args[i], args[i], args[i], args[i]) >> CFILE
printf("\t\treturn (ret);\n") >> CFILE
printf("\tfor (%sq = msg.%s.%s_val, %sp = %s; ", \
args[i], args[i], args[i], \
args[i], args[i]) >> CFILE
printf("%si--; %sq++, %sp++)\n", \
args[i], args[i], args[i]) >> CFILE
printf("\t\t*%sq = ", args[i]) >> CFILE
if (list_type[i] == "GID")
printf("*%sp;\n", args[i]) >> CFILE
if (list_type[i] == "ID")
printf("(*%sp)->cl_id;\n", args[i]) >> CFILE
if (list_type[i] == "INT")
printf("*%sp;\n", args[i]) >> CFILE
}
}
printf("\n") >> CFILE
printf("\treplyp = __db_%s_%d%03d(&msg, cl);\n", name, major, minor) \
>> CFILE
for (i = 0; i < nvars; ++i) {
if (rpc_type[i] == "LIST") {
printf("\t__os_free(") >> CFILE
if (!env_handle)
printf("dbenv, ") >> CFILE
else
printf("%s, ", args[env_idx]) >> CFILE
printf("msg.%s.%s_val);\n", args[i], args[i]) >> 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 {
printf("\tret = __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
#
# Free reply if there was one.
#
printf("\tif (replyp != NULL)\n") >> CFILE
printf("\t\txdr_free((xdrproc_t)xdr___%s_reply,",name) >> CFILE
printf(" (void *)replyp);\n") >> CFILE
printf("\treturn (ret);\n") >> CFILE
printf("}\n\n") >> CFILE
#
# Generate Client Template code
#
if (ret_code) {
#
# If we are doing a list, write prototypes
#
pi = 1;
p[pi++] = sprintf("int __dbcl_%s_ret __P((", name);
p[pi++] = "";
for (i = 0; i < nvars; ++i) {
p[pi++] = pr_type[i];
p[pi++] = ", ";
}
p[pi++] = sprintf("__%s_reply *));", name);
p[pi++] = "";
proto_format(p, 0, TFILE);
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] == "GID")
printf("\tu_int8_t *__db_%s;\n", \
retargs[i]) >> TFILE
if (retlist_type[i] == "ID" ||
retlist_type[i] == "INT")
printf("\tu_int32_t *__db_%s;\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\t/*\n") >> TFILE
printf("\t * XXX Handle list\n") >> TFILE
printf("\t */\n\n") >> 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
}
}
#
# split_lines --
# Add line separators to pretty-print the output.
function split_lines() {
if (argcount > 3) {
# Reset the counter, remove any trailing whitespace from
# the separator.
argcount = 0;
sub("[ ]$", "", sep)
printf("%s\n\t\t", sep) >> PFILE
printf("%s\\\n\\\t\\\t", sep) >> SEDFILE
}
}
# proto_format --
# Pretty-print a function prototype.
function proto_format(p, sedfile, OUTPUT)
{
if (sedfile)
printf("/*\\\n") >> OUTPUT;
else
printf("/*\n") >> OUTPUT;
s = "";
for (i = 1; i in p; ++i)
s = s p[i];
if (sedfile)
t = "\\ * PUBLIC: "
else
t = " * PUBLIC: "
if (length(s) + length(t) < 80)
if (sedfile)
printf("%s%s", t, s) >> OUTPUT;
else
printf("%s%s", t, s) >> OUTPUT;
else {
split(s, p, "__P");
len = length(t) + length(p[1]);
printf("%s%s", t, p[1]) >> OUTPUT
n = split(p[2], comma, ",");
comma[1] = "__P" comma[1];
for (i = 1; i <= n; i++) {
if (len + length(comma[i]) > 75) {
if (sedfile)
printf(\
"\\\n\\ * PUBLIC: ") >> OUTPUT;
else
printf("\n * PUBLIC: ") >> OUTPUT;
len = 0;
}
printf("%s%s", comma[i], i == n ? "" : ",") >> OUTPUT;
len += length(comma[i]);
}
}
if (sedfile)
printf("\\\n\\ */\\\n") >> OUTPUT;
else
printf("\n */\n") >> OUTPUT;
delete p;
}
|