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 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633
|
/* -----------------------------------------------------------------------------
* java.cxx
*
* Java wrapper module.
*
* Copyright (C) 1999-2000. The University of Chicago
* See the file LICENSE for information on usage and redistribution.
* ----------------------------------------------------------------------------- */
#include <ctype.h>
#include "mod11.h"
#include "java.h"
char bigbuf[1024];
static char *usage = (char*)"\
Java Options\n\
-jnic - use c syntax for JNI calls\n\
-jnicpp - use c++ syntax for JNI calls\n\
-package <name> - set name of the package\n\
-shadow - generate shadow classes\n\
-nofinalize - do not generate finalize methods in shadow classes\n\
-rn - generate register natives code\n\n";
static char *module = 0; // Name of the module
static char *java_path = (char*)"java";
static char *package = 0; // Name of the package
static char *c_pkgstr; // Name of the package
static char *jni_pkgstr; // Name of the package
static char *shadow_classname;
static FILE *f_java = 0;
static FILE *f_shadow = 0;
static File *f_runtime = 0;
static File *f_header = 0;
static File *f_wrappers = 0;
static File *f_init = 0;
static int shadow = 0;
static Hash *shadow_classes;
static String *shadow_classdef;
static String *shadow_code;
static char *shadow_variable_name = 0; //Name of a c struct variable or c++ public member variable (may or may not be const)
static int classdef_emitted = 0;
static int have_default_constructor = 0;
static int native_func = 0; // Set to 1 when wrapping a native function
static int enum_flag = 0; // Set to 1 when wrapping an enum
static int static_flag = 0; // Set to 1 when wrapping a static functions or member variables
static int variable_wrapper_flag = 0; // Set to 1 when wrapping a nonstatic member variable
static int wrapping_member = 0; // Set to 1 when wrapping a member variable/enum/const
static int abstract_class_flag = 0;
static int jnic = -1; // 1: use c syntax jni; 0: use c++ syntax jni
static int nofinalize = 0; // for generating finalize methods
static int useRegisterNatives = 0; // Set to 1 when doing stuff with register natives
static String *registerNativesList = 0;
static String *shadow_constants_code = 0;
static String *module_constants_code = 0;
static String *module_extra_code = 0; // Extra code for the module class from %pragma
static String *all_shadow_extra_code = 0; // Extra code for all shadow classes from %pragma
static String *this_shadow_extra_code = 0; // Extra code for current single shadow class from %pragma
static String *module_import = 0; //module import from %pragma
static String *all_shadow_import = 0; //import for all shadow classes from %pragma
static String *this_shadow_import = 0; //import for current shadow classes from %pragma
static String *module_baseclass = 0; //inheritance for module class from %pragma
static String *all_shadow_baseclass = 0; //inheritance for all shadow classes from %pragma
static String *this_shadow_baseclass = 0; //inheritance for shadow class from %pragma and cpp_inherit
static String *module_interfaces = 0; //interfaces for module class from %pragma
static String *all_shadow_interfaces = 0; //interfaces for all shadow classes from %pragma
static String *this_shadow_interfaces = 0; //interfaces for shadow class from %pragma
static String *module_class_modifiers = 0; //class modifiers for module class overriden by %pragma
static String *all_shadow_class_modifiers = 0; //class modifiers for all shadow classes overriden by %pragma
static String *this_shadow_class_modifiers = 0; //class modifiers for shadow class overriden by %pragma
static String *module_method_modifiers = 0; //native method modifiers overridden by %pragma
/* Test to see if a type corresponds to something wrapped with a shadow class */
/* Return NULL if not otherwise the shadow name */
static String *is_shadow(SwigType *t) {
return Getattr(shadow_classes,SwigType_base(t));
}
// Return the type of the c array
static SwigType *get_array_type(SwigType *t) {
SwigType *ta = 0;
if (SwigType_type(t) == T_ARRAY) {
SwigType *aop;
ta = Copy(t);
aop = SwigType_pop(ta);
}
return ta;
}
/* JavaMethodSignature still needs updating for changes from SWIG1.3a3 to SWIG1.3a5 and for current version */
char *JAVA::JavaMethodSignature(SwigType *t, int ret, int inShadow) {
if(SwigType_ispointer(t) == 1) {
switch(SwigType_type(t)) {
case T_CHAR: return (char*)"Ljava/lang/String;";
case T_SCHAR: return (char*)"[B";
case T_UCHAR: return (char*)"[S";
case T_SHORT: return (char*)"[S";
case T_USHORT: return (char*)"[I";
case T_INT: return (char*)"[I";
case T_UINT: return (char*)"[J";
case T_LONG: return (char*)"[I";
case T_ULONG: return (char*)"[J";
case T_FLOAT: return (char*)"[F";
case T_DOUBLE: return (char*)"[D";
case T_BOOL: return (char*)"[Z";
case T_STRING: return (char*)"Ljava/lang/String;";
case T_POINTER: return (char*)"[J";
case T_REFERENCE: return (char*)"[J";
case T_ARRAY: return (char*)"???";
case T_VOID:
case T_USER: if(inShadow && is_shadow(t))
return Char(is_shadow(t));
else return (char*)"J";
}
} else if(SwigType_ispointer(t) > 1) {
if(ret) return (char*)"J";
else return (char*)"[J";
} else {
switch(SwigType_type(t)) {
case T_CHAR: return (char*)"B";
case T_SCHAR: return (char*)"B";
case T_UCHAR: return (char*)"S";
case T_SHORT: return (char*)"S";
case T_USHORT: return (char*)"I";
case T_INT: return (char*)"I";
case T_UINT: return (char*)"J";
case T_LONG: return (char*)"I";
case T_ULONG: return (char*)"J";
case T_FLOAT: return (char*)"F";
case T_DOUBLE: return (char*)"D";
case T_BOOL: return (char*)"Z";
case T_STRING: return (char*)"Ljava/lang/String;";
case T_POINTER: return (char*)"J";
case T_REFERENCE: return (char*)"J";
case T_ARRAY: return (char*)"???";
case T_VOID: return (char*)"V";
case T_USER: return (char*)"J";
}
}
Printf(stderr, "JavaMethodSignature: unhandled SWIG type [%d] %s\n", SwigType_type(t), SwigType_str(t,0));
return NULL;
}
char *JAVA::makeValidJniName(const char *name) {
const char *c = name;
char *b = bigbuf;
while(*c) {
*b++ = *c;
if(*c == '_')
*b++ = '1';
c++;
}
*b = '\0';
return Swig_copy_string(bigbuf);
}
// !! this approach fails for functions without arguments
char *JAVA::JNICALL(String_or_char *func) {
if(jnic)
sprintf(bigbuf, "(*jenv)->%s(jenv, ", Char(func));
else
sprintf(bigbuf, "jenv->%s(", Char(func));
return Swig_copy_string(bigbuf);
}
void JAVA::writeRegisterNatives()
{
if(Len(registerNativesList) == 0)
return;
Printf(f_wrappers,"\n");
Printf(f_wrappers,"JNINativeMethod nativeMethods[] = {\n");
Printv(f_wrappers, registerNativesList, 0);
Printf(f_wrappers, "};\n");
Printf(f_wrappers,"\nint numberOfNativeMethods=sizeof(nativeMethods)/sizeof(JNINativeMethod);\n\n");
// The registerNatives function
Printv(f_wrappers,
"jint registerNatives(JNIEnv *jenv) {", "\n",
tab4, "jclass nativeClass = ", JNICALL((char*)"FindClass"),
"\"", jni_pkgstr, module, "\");","\n",
0);
Printv(f_wrappers,
tab4, "if (nativeClass == 0)", "\n", tab8, "return -1;", "\n",
tab4, "return ", JNICALL((char*)"RegisterNatives"), "nativeClass, nativeMethods, ", "numberOfNativeMethods);", "\n",
"}", "\n", "\n",
0);
// The unregisterNatives function
Printv(f_wrappers,
"jint unregisterNatives(JNIEnv *jenv) {", "\n",
tab4, "jclass nativeClass = ", JNICALL((char*)"FindClass"),
"\"", jni_pkgstr, module, "\");","\n",
0);
Printv(f_wrappers,
tab4, "if (nativeClass == 0)", "\n", tab8, "return -1;", "\n",
tab4, "// Sun documentation suggests that this method should not be invoked in ",
"\"normal native code\".", "\n",
tab4, "// return ", JNICALL((char*)"UnregisterNatives"), "nativeClass);", "\n",
tab4, "return 0;", "\n",
"}", "\n",
0);
}
// ---------------------------------------------------------------------
// JAVA::main()
//
// Parse my command line options and initialize by variables.
// ---------------------------------------------------------------------
void JAVA::main(int argc, char *argv[]) {
SWIG_library_directory("java");
// Look for certain command line options
for (int i = 1; i < argc; i++) {
if (argv[i]) {
if (strcmp(argv[i],"-package") == 0) {
if (argv[i+1]) {
package = new char[strlen(argv[i+1])+1];
strcpy(package, argv[i+1]);
Swig_mark_arg(i);
Swig_mark_arg(i+1);
i++;
} else {
Swig_arg_error();
}
} else if (strcmp(argv[i],"-shadow") == 0) {
Swig_mark_arg(i);
shadow = 1;
} else if (strcmp(argv[i],"-jnic") == 0) {
Swig_mark_arg(i);
jnic = 1;
} else if (strcmp(argv[i],"-nofinalize") == 0) {
Swig_mark_arg(i);
nofinalize = 1;
} else if (strcmp(argv[i],"-rn") == 0) {
Swig_mark_arg(i);
useRegisterNatives = 1;
} else if (strcmp(argv[i],"-jnicpp") == 0) {
Swig_mark_arg(i);
jnic = 0;
} else if (strcmp(argv[i],"-help") == 0) {
Printf(stderr,"%s\n", usage);
}
}
}
if(jnic == -1) {
if(CPlusPlus)
jnic = 0;
else jnic = 1;
}
// Add a symbol to the parser for conditional compilation
Preprocessor_define((void *) "SWIGJAVA 1",0);
// Add typemap definitions
SWIG_typemap_lang("java");
SWIG_config_file("java.swg");
}
// ---------------------------------------------------------------------
// void JAVA::top()
// ---------------------------------------------------------------------
int JAVA::top(Node *n) {
/* Initialize all of the output files */
String *outfile = Getattr(n,"outfile");
f_runtime = NewFile(outfile,"w");
if (!f_runtime) {
Printf(stderr,"*** Can't open '%s'\n", outfile);
SWIG_exit(EXIT_FAILURE);
}
f_init = NewString("");
f_header = NewString("");
f_wrappers = NewString("");
/* Register file targets with the SWIG file handler */
Swig_register_filebyname("header",f_header);
Swig_register_filebyname("wrapper",f_wrappers);
Swig_register_filebyname("runtime",f_runtime);
Swig_register_filebyname("init",f_init);
shadow_classes = NewHash();
shadow_classdef = NewString("");
shadow_code = NewString("");
registerNativesList = NewString("");
module_constants_code = NewString("");
module_extra_code = NewString("");
module_baseclass = NewString("");
module_interfaces = NewString("");
module_class_modifiers = NewString("");
all_shadow_extra_code = NewString("");
all_shadow_import = NewString("");
all_shadow_baseclass = NewString("");
all_shadow_interfaces = NewString("");
all_shadow_class_modifiers = NewString("");
module_import = NewString("");
module_method_modifiers = NewString("public final static");
Swig_banner(f_runtime); // Print the SWIG banner message
Printf(f_runtime,"/* Implementation : Java */\n\n");
set_module(Char(Getattr(n,"name")));
String* wrapper_name = NewString("");
if(package) {
String *s = NewString(package);
char *jniname = makeValidJniName(Char(s));
Clear(s);
Printv(s, jniname, 0);
free(jniname);
Replace(s,".","_", DOH_REPLACE_ANY);
Append(s, "_");
c_pkgstr = Swig_copy_string(Char(s));
Delete(s);
String *s2 = NewString(package);
Replace(s2,".","/", DOH_REPLACE_ANY);
Append(s2,"/");
jni_pkgstr = Swig_copy_string(Char(s2));
Delete(s2);
} else {
package = c_pkgstr = jni_pkgstr = (char*)"";
}
char *jniname = makeValidJniName(module);
Printf(wrapper_name, "Java_%s%s_%%f", c_pkgstr, jniname);
free(jniname);
Swig_name_register((char*)"wrapper", Char(wrapper_name));
Swig_name_register((char*)"set", (char*)"set_%v");
Swig_name_register((char*)"get", (char*)"get_%v");
Swig_name_register((char*)"member", (char*)"%c_%m");
Delete(wrapper_name);
// Generate the java class
sprintf(bigbuf, "%s.java", module);
if((f_java = fopen(bigbuf, "w")) == 0) {
Printf(stderr,"Unable to open %s\n", bigbuf);
SWIG_exit(1);
}
Printf(f_header, "#define J_CLASSNAME %s\n", module);
if(package && *package) {
Printf(f_java, "package %s;\n\n", package);
Printf(f_header, "#define J_PACKAGE %s\n", package);
} else {
Printf(f_header, "#define J_PACKAGE\n");
}
/* Emit all nodes */
Language::top(n);
if(!classdef_emitted) emit_classdef();
// Write out all the enums constants
if (strlen(Char(module_constants_code)) != 0 )
Printv(f_java, " // enums and constants\n", module_constants_code, 0);
// Finish off the java class
Printf(f_java, "}\n");
fclose(f_java);
if(useRegisterNatives)
writeRegisterNatives();
Delete(shadow_classes); shadow_classes = NULL;
Delete(shadow_classdef); shadow_classdef = NULL;
Delete(shadow_code); shadow_code = NULL;
Delete(registerNativesList); registerNativesList = NULL;
Delete(module_constants_code); module_constants_code = NULL;
Delete(module_extra_code); module_extra_code = NULL;
Delete(module_baseclass); module_baseclass = NULL;
Delete(module_interfaces); module_interfaces = NULL;
Delete(module_class_modifiers); module_class_modifiers = NULL;
Delete(all_shadow_extra_code); all_shadow_extra_code = NULL;
Delete(all_shadow_import); all_shadow_import = NULL;
Delete(all_shadow_baseclass); all_shadow_baseclass = NULL;
Delete(all_shadow_interfaces); all_shadow_interfaces = NULL;
Delete(all_shadow_class_modifiers); all_shadow_class_modifiers = NULL;
Delete(module_import); module_import = NULL;
Delete(module_method_modifiers); module_method_modifiers = NULL;
/* Close all of the files */
Dump(f_header,f_runtime);
Dump(f_wrappers,f_runtime);
Wrapper_pretty_print(f_init,f_runtime);
Delete(f_header);
Delete(f_wrappers);
Delete(f_init);
Close(f_runtime);
Delete(f_runtime);
return SWIG_OK;
}
// ---------------------------------------------------------------------
// JAVA::set_module(char *mod_name)
//
// Sets the module name. Does nothing if it's already set (so it can
// be overriddent as a command line option).
//
//----------------------------------------------------------------------
void JAVA::set_module(char *mod_name) {
if (module) return;
module = new char[strlen(mod_name)+1];
strcpy(module,mod_name);
}
static void emit_banner(FILE *f) {
Printf(f, "/* ----------------------------------------------------------------------------\n");
Printf(f, " * This file was automatically generated by SWIG (http://www.swig.org).\n");
Printf(f, " * Version: %s\n", SWIG_VERSION);
Printf(f, " *\n");
Printf(f, " * Do not make changes to this file unless you know what you are doing--modify\n");
Printf(f, " * the SWIG interface file instead.\n");
Printf(f, " * ----------------------------------------------------------------------------- */\n\n");
}
void JAVA::emit_classdef() {
if(!classdef_emitted) {
emit_banner(f_java);
if(module_import)
Printf(f_java, "%s\n", module_import);
if (module_class_modifiers && *Char(module_class_modifiers))
Printf(f_java, "%s", module_class_modifiers);
else
Printf(f_java, "public");
Printf(f_java, " class %s ", module);
if (module_baseclass && *Char(module_baseclass))
Printf(f_java, "extends %s ", module_baseclass);
if (module_interfaces)
Printv(f_java, module_interfaces, " ", 0);
Printf(f_java, "{\n", module);
if (module_extra_code)
Printv(f_java, module_extra_code, 0);
}
classdef_emitted = 1;
}
int JAVA::nativeWrapper(Node *n) {
Swig_save(&n,"name",0);
Setattr(n,"name", Getattr(n,"wrap:name"));
native_func = 1;
functionWrapper(n);
Swig_restore(&n);
native_func = 0;
return SWIG_OK;
}
// ----------------------------------------------------------------------
// JAVA::functionWrapper()
//
// Create a function declaration and register it with the interpreter.
// ----------------------------------------------------------------------
int JAVA::functionWrapper(Node *n) {
char *name = GetChar(n,"name");
char *iname = GetChar(n,"sym:name");
SwigType *t = Getattr(n,"type");
ParmList *l = Getattr(n,"parms");
char source[256];
String *tm;
Parm *p;
Parm *jnip;
Parm *jtypep;
int i;
char *javaReturnSignature = 0;
String *jnirettype = NewString("");
String *javarettype = NewString("");
String *cleanup = NewString("");
String *outarg = NewString("");
String *body = NewString("");
String *javaParameterSignature = NewString("");
int num_arguments = 0;
int num_required = 0;
/*
Generate the java class wrapper function ie the java shadow class. Only done for public
member variables. That is this generates the getters/setters for member variables.
*/
if(shadow && wrapping_member && !enum_flag) {
String *member_function_name = NewString("");
String *java_function_name = NewString(iname);
if(strcmp(iname, Char(Swig_name_set(Swig_name_member(shadow_classname, shadow_variable_name)))) == 0)
Printf(member_function_name,"set");
else Printf(member_function_name,"get");
Putc(toupper((int) *shadow_variable_name), member_function_name);
Printf(member_function_name, "%s", shadow_variable_name+1);
Setattr(n,"java:shadfuncname", member_function_name);
Setattr(n,"java:funcname", iname);
javashadowfunctionHandler(n, NOT_VIRTUAL);
Delete(java_function_name);
Delete(member_function_name);
}
/*
The rest of this function deals with generating the java wrapper function (that wraps
a c/c++ function) and generating the JNI c code. Each java wrapper function has a
matching JNI c function call.
*/
// A new wrapper function object
Wrapper *f = NewWrapper();
if(!classdef_emitted) emit_classdef();
// Make a wrapper name for this function
char *jniname = makeValidJniName(iname);
String *wname = Swig_name_wrapper(jniname);
free(jniname);
/* Get the jni and java types of the return.
* The non-standard typemaps must first be attached to the parameter list. */
Swig_typemap_attach_parms("jni", l, f);
Swig_typemap_attach_parms("jtype", l, f);
if ((tm = Swig_typemap_lookup_new("jni",n,"",0))) {
Printf(jnirettype,"%s", tm);
} else {
Printf(stderr, "No jni typemap defined for %s\n", SwigType_str(t,0));
}
if ((tm = Swig_typemap_lookup_new("jtype",n,"",0))) {
Printf(javarettype,"%s", tm);
} else {
Printf(stderr, "No jtype typemap defined for %s\n", SwigType_str(t,0));
}
// If dumping the registerNative outputs, store the method return type
// signature
if (useRegisterNatives) {
javaReturnSignature = JavaMethodSignature(t, 1, 0);
}
if (SwigType_type(t) != T_VOID) {
Wrapper_add_localv(f,"jresult", jnirettype, "jresult = 0",0);
}
Printf(f_java, " %s ", module_method_modifiers);
Printf(f_java, "native %s %s(", javarettype, iname);
if(!jnic)
Printv(f->def, "extern \"C\"{\n", 0);
Printv(f->def, "JNIEXPORT ", jnirettype, " JNICALL ", wname, "(JNIEnv *jenv, jclass jcls", 0);
// Emit all of the local variables for holding arguments.
emit_args(t,l,f);
/* Attach the standard typemaps */
emit_attach_parmmaps(l,f);
/* Get number of required and total arguments */
num_arguments = emit_num_arguments(l);
num_required = emit_num_required(l);
int gencomma = 0;
// Now walk the function parameter list and generate code to get arguments
for (i = 0, p=l, jnip=l, jtypep=l; i < num_arguments; i++) {
while (Getattr(p,"tmap:ignore")) {
p = Getattr(p,"tmap:ignore:next");
}
SwigType *pt = Getattr(p,"type");
String *ln = Getattr(p,"lname");
String *javaparamtype = NewString("");
String *jni_param_type = NewString("");
sprintf(source,"j%s", Char(ln));
if (useRegisterNatives) {
Printv(javaParameterSignature, JavaMethodSignature(pt, 0, 0), 0);
}
/* Get the jni types of the parameter */
if ((tm = Getattr(jnip,"tmap:jni"))) {
jnip = Getattr(jnip,"tmap:jni:next");
Printv(jni_param_type, tm, 0);
} else {
jnip = nextSibling(jnip);
Printf(stderr, "No jni typemap defined for %s\n", SwigType_str(pt,0));
}
/* Get the java types of the parameter */
if ((tm = Getattr(jtypep,"tmap:jtype"))) {
jtypep = Getattr(jtypep,"tmap:jtype:next");
Printv(javaparamtype, tm, 0);
} else {
jtypep = nextSibling(jtypep);
Printf(stderr, "No jtype typemap defined for %s\n", SwigType_str(pt,0));
}
/* Add to java function header */
if(gencomma) Printf(f_java, ", ");
Printf(f_java, "%s %s", javaparamtype, source);
gencomma = 1;
// Add to Jni function header
Printv(f->def, ", ", jni_param_type, " ", source, 0);
// Get typemap for this argument
if ((tm = Getattr(p,"tmap:in"))) {
Replaceall(tm,"$source",source); /* deprecated */
Replaceall(tm,"$target",ln); /* deprecated */
Replaceall(tm,"$arg",source); /* deprecated? */
Replaceall(tm,"$input", source);
Setattr(p,"emit:input", source);
Printf(f->code,"%s\n", tm);
p = Getattr(p,"tmap:in:next");
} else {
Printf(stderr,"%s : Line %d. Unable to use type %s as a function argument.\n",input_file, line_number, SwigType_str(pt,0));
p = nextSibling(p);
}
Delete(javaparamtype);
Delete(jni_param_type);
}
/* Insert constraint checking code */
for (p = l; p;) {
if ((tm = Getattr(p,"tmap:check"))) {
Replaceall(tm,"$target",Getattr(p,"lname")); /* deprecated */
Replaceall(tm,"$arg",Getattr(p,"emit:input")); /* deprecated? */
Replaceall(tm,"$input",Getattr(p,"emit:input"));
Printv(f->code,tm,"\n",0);
p = Getattr(p,"tmap:check:next");
} else {
p = nextSibling(p);
}
}
/* Insert cleanup code */
for (p = l; p;) {
while (Getattr(p,"tmap:ignore")) {
p = Getattr(p,"tmap:ignore:next");
}
if ((tm = Getattr(p,"tmap:freearg"))) {
Replaceall(tm,"$source",Getattr(p,"emit:input")); /* deprecated */
Replaceall(tm,"$arg",Getattr(p,"emit:input")); /* deprecated? */
Replaceall(tm,"$input",Getattr(p,"emit:input"));
Printv(cleanup,tm,"\n",0);
p = Getattr(p,"tmap:freearg:next");
} else {
p = nextSibling(p);
}
}
/* Insert argument output code */
for (p = l; p;) {
while (Getattr(p,"tmap:ignore")) {
p = Getattr(p,"tmap:ignore:next");
}
if ((tm = Getattr(p,"tmap:argout"))) {
Replaceall(tm,"$source",Getattr(p,"emit:input")); /* deprecated */
Replaceall(tm,"$target",Getattr(p,"lname")); /* deprecated */
Replaceall(tm,"$arg",Getattr(p,"emit:input")); /* deprecated? */
Replaceall(tm,"$result","jresult");
Replaceall(tm,"$input",Getattr(p,"emit:input"));
Printv(outarg,tm,"\n",0);
p = Getattr(p,"tmap:argout:next");
} else {
p = nextSibling(p);
}
}
Printf(f_java, ");\n");
Printf(f->def,") {");
// Now write code to make the function call
if(!native_func)
emit_action(n,f);
/* Return value if necessary */
if((SwigType_type(t) != T_VOID) && !native_func) {
if ((tm = Swig_typemap_lookup_new("out",n,"result",0))) {
Replaceall(tm,"$source", "result"); /* deprecated */
Replaceall(tm,"$target", "jresult"); /* deprecated */
Replaceall(tm,"$result","jresult");
Printf(f->code,"%s\n", tm);
} else {
Printf(stderr,"%s: Line %d. Unable to use return type %s in function %s.\n", input_file, line_number, SwigType_str(t,0), name);
}
}
/* Output argument output code */
Printv(f->code,outarg,0);
/* Output cleanup code */
Printv(f->code,cleanup,0);
/* Look to see if there is any newfree cleanup code */
if (NewObject || (Getattr(n,"feature:new"))) {
if ((tm = Swig_typemap_lookup_new("newfree",n,"result",0))) {
Replaceall(tm,"$source","result"); /* deprecated */
Printf(f->code,"%s\n",tm);
}
}
/* See if there is any return cleanup code */
if((SwigType_type(t) != T_VOID) && !native_func) {
if ((tm = Swig_typemap_lookup_new("ret", n, "result", 0))) {
Replaceall(tm,"$source","result"); /* deprecated */
Printf(f->code,"%s\n",tm);
}
}
if(SwigType_type(t) != T_VOID)
Printv(f->code, tab4, "return jresult;\n", 0);
if(!jnic)
Printf(f->code, "}");
Printf(f->code, "}\n");
/* Substitute the cleanup code */
Replaceall(f->code,"$cleanup",cleanup);
if(SwigType_type(t) != T_VOID)
Replaceall(f->code,"$null","0");
else
Replaceall(f->code,"$null","");
/* Dump the function out */
if(!native_func)
Wrapper_print(f,f_wrappers);
// If registerNatives is active, store the table entry for this method
if (useRegisterNatives) {
Printv(registerNativesList,
tab4, "{",
"\"", name, "\", \"(", javaParameterSignature, ")", javaReturnSignature, "\", ", wname,
"},\n",
0);
}
Delete(jnirettype);
Delete(javarettype);
Delete(cleanup);
Delete(outarg);
Delete(body);
Delete(javaParameterSignature);
DelWrapper(f);
return SWIG_OK;
}
// -----------------------------------------------------------------------
// JAVA::variableWrapper()
//
// Create a JAVA link to a C variable.
// -----------------------------------------------------------------------
int JAVA::variableWrapper(Node *n)
{
Language::variableWrapper(n); /* Default to functions */
return SWIG_OK;
}
// -----------------------------------------------------------------------
// JAVA::enumDeclaration()
// ------------------------------------------------------------------------
int JAVA::enumDeclaration(Node *n) {
String *name = Getattr(n,"sym:name");
String* s1 = NewStringf("enum %s", name);
String* s2 = NewStringf("%s", name);
String *swigtype = NewString("enum SWIGTYPE");
/* Apply typemaps for handling arrays of enums and arrays of enum pointers for all known enums*/
TypemapApply(swigtype, NULL, s1, none, 1); //%apply enum SWIGTYPE[ANY] {enum name[ANY]};
TypemapApply(swigtype, NULL, s2, none, 1); //%apply enum SWIGTYPE[ANY] {name[ANY]};
TypemapApply(swigtype, NULL, s1, pointer, 1); //%apply enum SWIGTYPE*[ANY] {enum name*[ANY]};
TypemapApply(swigtype, NULL, s2, pointer, 1); //%apply enum SWIGTYPE*[ANY] {name*[ANY]};
return Language::enumDeclaration(n);
Delete(s1);
Delete(s2);
Delete(swigtype);
}
// -----------------------------------------------------------------------
// JAVA::constantWrapper()
// ------------------------------------------------------------------------
int JAVA::constantWrapper(Node *n) {
char *name = GetChar(n,"name");
char *iname = GetChar(n,"sym:name");
SwigType *type = Getattr(n,"type");
char *value = GetChar(n,"value");
ParmList *l = Getattr(n,"parms");
int OldReadOnly = ReadOnly;
String *tm;
char *jname;
DOH *jout;
String *constants_code;
ReadOnly = 1;
String *java_type = NewString("");
if(!classdef_emitted) emit_classdef();
if(shadow && wrapping_member) {
jout = shadow_code;
jname = shadow_variable_name;
constants_code = shadow_constants_code;
} else {
jout = f_java;
jname = name;
constants_code = module_constants_code;
}
if ((tm = Swig_typemap_lookup_new("const",n,"",0))) {
String *str = tm;
Replace(str,"$value",value, DOH_REPLACE_ANY);
Printf(jout," %s\n\n", str);
Delete(tm);
} else {
if (wrapping_member) {
Swig_typemap_attach_parms("jstype", l, 0);
if ((tm = Swig_typemap_lookup_new("jstype",n,"",0))) {
String *javaclassname = is_shadow(SwigType_base(Getattr(n,"type")));
Replaceall(javaclassname, "enum ", "");
Replaceall(tm,"$javaclassname", javaclassname);
Printf(java_type,"%s", tm);
} else {
Printf(stderr, "No jstype typemap defined for %s\n", SwigType_str(type,0));
}
} else {
Swig_typemap_attach_parms("jtype", l, 0);
if ((tm = Swig_typemap_lookup_new("jtype",n,"",0))) {
Printf(java_type,"%s", tm);
} else {
Printf(stderr, "No jtype typemap defined for %s\n", SwigType_str(type,0));
}
}
if(strcmp(jname, value) == 0 || strstr(value,"::") != NULL) {
/*
We have found an enum. The enum implementation is done using a public final static int in Java.
*/
if(shadow && wrapping_member) {
Printf(shadow_constants_code, " public final static %s %s = %s.%s;\n", java_type, jname, module, iname);
Printf(module_constants_code, " public final static %s %s = %s();\n", java_type, iname, Swig_name_get(iname));
}
else {
Printf(module_constants_code, " public final static %s %s = %s();\n", java_type, jname, Swig_name_get(iname));
}
enum_flag = 1;
variableWrapper(n);
enum_flag = 0;
} else {
if(SwigType_type(type) == T_STRING)
Printf(constants_code, " public final static %s %s = \"%s\";\n", java_type, jname, value);
else if(SwigType_type(type) == T_CHAR)
Printf(constants_code, " public final static String %s = \"%s\";\n", jname, value);
else
Printf(constants_code, " public final static %s %s = %s;\n", java_type, jname, value);
}
}
Delete(java_type);
ReadOnly = OldReadOnly;
return SWIG_OK;
}
/*
Valid Pragmas:
These pragmas start with 'allshadow' or 'module'
modulebase - base (extends) for the java module class
allshadowbase - base (extends) for all java shadow classes
modulecode - text (java code) is copied verbatim to the java module class
allshadowcode - text (java code) is copied verbatim to all java shadow classes
moduleclassmodifiers - class modifiers for the module class
allshadowclassmodifiers - class modifiers for all shadow classes
moduleimport - import statement generation for the java module class
allshadowimport - import statement generation for all java shadow classes
moduleinterface - interface (implements) for the module class
allshadowinterface - interface (implements) for all shadow classes
modulemethodmodifiers - replaces the generated native calls' default modifiers
*/
/*
C++ pragmas: pragmas declared within a class or c struct for the shadow class.
These pragmas start with 'shadow'
Valid pragmas:
shadowbase - base (extends) for all java shadow classes
shadowcode - text (java code) is copied verbatim to the shadow class
shadowclassmodifiers - class modifiers for the shadow class
shadowimport - import statement generation for the shadow class
shadowinterface - interfaces (extends) for the shadow class
*/
void JAVA::pragma(char *lang, char *code, char *value) {
if(strcmp(lang, "java") != 0) return;
String *strvalue = NewString(value);
Replace(strvalue,"\\\"", "\"", DOH_REPLACE_ANY);
if(strcmp(code, "moduleimport") == 0) {
Printf(module_import, "import %s;\n", strvalue);
}
else if(strcmp(code, "allshadowimport") == 0) {
if(shadow && all_shadow_import)
Printf(all_shadow_import, "import %s;\n", strvalue);
}
else if(strcmp(code, "import") == 0) {
Printf(stderr,"%s : Line %d. Ignored: Deprecated pragma. Please replace with moduleimport, shadowimport and/or allshadowimport pragmas.\n", input_file, line_number);
}
else if(strcmp(code, "modulecode") == 0 || strcmp(code, "module") == 0) {
if(strcmp(code, "module") == 0)
Printf(stderr,"%s : Line %d. Soon to be deprecated pragma. Please replace with modulecode pragma.\n", input_file, line_number);
Printf(module_extra_code, "%s\n", strvalue);
}
else if(strcmp(code, "allshadowcode") == 0 || strcmp(code, "shadow") == 0) {
if(shadow && all_shadow_extra_code) {
if(strcmp(code, "shadow") == 0)
Printf(stderr,"%s : Line %d. Soon to be deprecated pragma. Please replace with allshadowcode pragma.\n", input_file, line_number);
Printf(all_shadow_extra_code, "%s\n", strvalue);
}
}
else if(strcmp(code, "modulebase") == 0) {
if(shadow && module_baseclass)
Printf(module_baseclass, "%s", strvalue);
}
else if(strcmp(code, "allshadowbase") == 0) {
if(shadow && all_shadow_baseclass)
Printf(all_shadow_baseclass, "%s", strvalue);
}
else if(strcmp(code, "moduleinterface") == 0) {
if(shadow && module_interfaces)
if (!*Char(module_interfaces))
Printf(module_interfaces, "implements %s", strvalue);
else
Printf(module_interfaces, ", %s", strvalue);
}
else if(strcmp(code, "allshadowinterface") == 0) {
if(shadow && all_shadow_interfaces) {
if (!*Char(all_shadow_interfaces))
Printf(all_shadow_interfaces, "implements %s", strvalue);
else
Printf(all_shadow_interfaces, ", %s", strvalue);
}
}
else if(strcmp(code, "allshadowclassmodifiers") == 0) {
if(shadow && all_shadow_class_modifiers)
Printv(all_shadow_class_modifiers, strvalue, 0);
}
else if(strcmp(code, "moduleclassmodifiers") == 0) {
if(shadow && module_class_modifiers)
Printv(module_class_modifiers, strvalue, 0);
}
else if(strcmp(code, "modulemethodmodifiers") == 0 || strcmp(code, "modifiers") == 0) {
if(strcmp(code, "modifiers") == 0)
Printf(stderr,"%s : Line %d. Soon to be deprecated pragma. Please replace with modulemethodmodifiers pragma.\n", input_file, line_number);
Clear(module_method_modifiers);
Printv(module_method_modifiers, strvalue, 0);
} else if (shadow) {
if (strcmp(code,"shadowcode") == 0) {
if (f_shadow && shadow_code)
Printf(shadow_code, "%s\n", strvalue);
else
Printf(stderr,"%s : Line %d. Out of scope pragma.\n", input_file, line_number);
}
else if (strcmp(code,"shadowimport") == 0) {
if (this_shadow_import)
Printf(this_shadow_import, "import %s;\n", strvalue);
else
Printf(stderr,"%s : Line %d. Out of scope pragma.\n", input_file, line_number);
}
else if (strcmp(code,"shadowbase") == 0) {
if (this_shadow_baseclass)
Printf(this_shadow_baseclass, "%s", strvalue);
else
Printf(stderr,"%s : Line %d. Out of scope pragma.\n", input_file, line_number);
}
else if (strcmp(code,"shadowinterface") == 0) {
if (this_shadow_interfaces) {
if (!*Char(this_shadow_interfaces))
Printf(this_shadow_interfaces, "implements %s", strvalue);
else
Printf(this_shadow_interfaces, ", %s", strvalue);
}
else
Printf(stderr,"%s : Line %d. Out of scope pragma.\n", input_file, line_number);
}
else if (strcmp(code,"shadowclassmodifiers") == 0) {
if (this_shadow_class_modifiers)
Printv(this_shadow_class_modifiers, strvalue, 0);
else
Printf(stderr,"%s : Line %d. Out of scope pragma.\n", input_file, line_number);
} else {
Printf(stderr,"%s : Line %d. Unrecognized pragma.\n", input_file, line_number);
}
} else {
Printf(stderr,"%s : Line %d. Unrecognized pragma.\n", input_file, line_number);
}
Delete(strvalue);
}
void JAVA::emit_shadow_classdef() {
String* baseclass = NULL;
// Import statements
if(all_shadow_import)
Printf(shadow_classdef, "%s", all_shadow_import);
if(this_shadow_import)
Printf(shadow_classdef, "%s", this_shadow_import);
Printf(shadow_classdef, "\n");
// Class modifiers
if (this_shadow_class_modifiers && *Char(this_shadow_class_modifiers))
Printv(shadow_classdef, this_shadow_class_modifiers, 0);
else if (all_shadow_class_modifiers && *Char(all_shadow_class_modifiers))
Printv(shadow_classdef, all_shadow_class_modifiers, 0);
else
Printv(shadow_classdef, "public", 0);
if (abstract_class_flag)
Printv(shadow_classdef, " abstract", 0);
Printf(shadow_classdef, " class $class ");
// Inherited classes
if(this_shadow_baseclass && *Char(this_shadow_baseclass)) {
Printf(shadow_classdef, "extends %s ", this_shadow_baseclass);
baseclass = this_shadow_baseclass;
}
if(all_shadow_baseclass && *Char(all_shadow_baseclass)) {
Printf(shadow_classdef, "extends %s ", all_shadow_baseclass);
baseclass = all_shadow_baseclass;
}
// Implemented interfaces
if(this_shadow_interfaces && *Char(this_shadow_interfaces))
Printv(shadow_classdef, this_shadow_interfaces, " ", 0);
Printf(shadow_classdef, "{\n");
//Display warning on attempt to use multiple inheritance
char* search_str = Char(shadow_classdef);
int count = 0;
while((search_str = strstr(search_str, "extends"))) {
search_str += strlen("extends");
count++;
}
if (count > 1)
Printf(stderr, "Warning for shadow class %s: Multiple inheritance is not supported in Java.\n", shadow_classname);
// Different code depending on whether or not the base class is a SWIG shadow class
if (baseclass && is_shadow(baseclass)) {
Printv(shadow_classdef,
" public $class(long cPointer, boolean cMemoryOwn) {\n",
" super(cPointer, cMemoryOwn);\n",
" }\n",
"\n", 0);
if(!have_default_constructor) {
Printv(shadow_classdef,
" protected $class() {\n",
" }\n",
"\n", 0);
}
// Control which super constructor is called - we don't want 2 malloc/new c/c++ calls
Replace(shadow_code, "$superconstructorcall", " super(0, false);\n", DOH_REPLACE_ANY);
}
else {
Printv(shadow_classdef,
" protected long _cPtr;\n",
" protected boolean _cMemOwn;\n",
"\n",
" public $class(long cPointer, boolean cMemoryOwn) {\n",
" _cPtr = cPointer;\n",
" _cMemOwn = cMemoryOwn;\n",
" }\n",
"\n",
" public long getCPtr() {\n",
" return _cPtr;\n",
" }\n",
"\n", 0);
if(!have_default_constructor) {
Printv(shadow_classdef,
" protected $class() {\n",
" _cPtr = 0;\n",
" _cMemOwn = false;\n",
" }\n",
"\n", 0);
}
// No explicit super constructor call as this class does not have a SWIG base class.
Replace(shadow_code, "$superconstructorcall", "", DOH_REPLACE_ANY);
}
Replace(shadow_classdef, "$class", shadow_classname, DOH_REPLACE_ANY);
if (all_shadow_extra_code)
Printv(shadow_classdef, all_shadow_extra_code, 0);
if (this_shadow_extra_code)
Printv(shadow_classdef, this_shadow_extra_code, 0);
}
int JAVA::classHandler(Node *n) {
if (shadow) {
char *classname = GetChar(n,"name");
char *rename = GetChar(n,"sym:name");
char *ctype = GetChar(n,"kind");
shadow_classname = Swig_copy_string(rename);
if (strcmp(shadow_classname, module) == 0) {
Printf(stderr, "class name cannot be equal to module name: %s\n", shadow_classname);
SWIG_exit(1);
}
/*
Setattr(shadow_classes,classname, shadow_classname);
if(ctype && strcmp(ctype, "struct") == 0) {
sprintf(bigbuf, "struct %s", classname);
Setattr(shadow_classes, bigbuf, shadow_classname);
}
*/
sprintf(bigbuf, "%s.java", shadow_classname);
if(!(f_shadow = fopen(bigbuf, "w"))) {
Printf(stderr, "Unable to create shadow class file: %s\n", bigbuf);
}
emit_banner(f_shadow);
if(*package)
Printf(f_shadow, "package %s;\n\n", package);
else
Printf(f_shadow, "import %s;\n", module);
Clear(shadow_classdef);
Clear(shadow_code);
abstract_class_flag = 0;
have_default_constructor = 0;
shadow_constants_code = NewString("");
this_shadow_baseclass = NewString("");
this_shadow_extra_code = NewString("");
this_shadow_interfaces = NewString("");
this_shadow_import = NewString("");
this_shadow_class_modifiers = NewString("");
if(all_shadow_interfaces)
Printv(this_shadow_interfaces, all_shadow_interfaces, 0);
}
Language::classHandler(n);
if (shadow) {
/* Deal with inheritance */
List *baselist = Getattr(n,"bases");
if (baselist) {
Node *base = Firstitem(baselist);
String *basename = is_shadow(Getattr(base,"name"));
if (basename)
Printv(this_shadow_baseclass, basename, 0);
base = Nextitem(baselist);
if (base) {
Printf(stderr, "Warning: %s inherits from multiple base classes. Multiple inheritance is not supported.\n", shadow_classname);
}
}
emit_shadow_classdef();
Printv(f_shadow, shadow_classdef, shadow_code, 0);
// Write out all the enums and constants
if (strlen(Char(shadow_constants_code)) != 0 )
Printv(f_shadow, " // enums and constants\n", shadow_constants_code, 0);
Printf(f_shadow, "}\n");
fclose(f_shadow);
f_shadow = NULL;
free(shadow_classname);
shadow_classname = NULL;
Delete(shadow_constants_code); shadow_constants_code = NULL;
Delete(this_shadow_baseclass); this_shadow_baseclass = NULL;
Delete(this_shadow_extra_code); this_shadow_extra_code = NULL;
Delete(this_shadow_interfaces); this_shadow_interfaces = NULL;
Delete(this_shadow_import); this_shadow_import = NULL;
Delete(this_shadow_class_modifiers); this_shadow_class_modifiers = NULL;
}
return SWIG_OK;
}
int JAVA::memberfunctionHandler(Node *n) {
Language::memberfunctionHandler(n);
if (shadow) {
String* java_function_name = Swig_name_member(shadow_classname, Getattr(n, "sym:name"));
Setattr(n,"java:shadfuncname", Getattr(n, "sym:name"));
Setattr(n,"java:funcname", java_function_name);
javashadowfunctionHandler(n, IsVirtual);
}
return SWIG_OK;
}
int JAVA::staticmemberfunctionHandler(Node *n) {
Language::staticmemberfunctionHandler(n);
if (shadow) {
String* java_function_name = Swig_name_member(shadow_classname, Getattr(n,"sym:name"));
Setattr(n,"java:shadfuncname", Getattr(n,"sym:name"));
Setattr(n,"java:funcname", java_function_name);
static_flag = 1;
javashadowfunctionHandler(n, NOT_VIRTUAL);
static_flag = 0;
}
return SWIG_OK;
}
/*
Function called for creating a java class wrapper function around a c++ function in the
java wrapper class. Used for both static and non static functions.
C++ static functions map to java static functions.
Two extra attributes in the Node must be available. These are "java:shadfuncname" - the name of the java class shadow
function, which in turn will call "java:funcname" - the java native function name which wraps the c++ function.
*/
void JAVA::javashadowfunctionHandler(Node* n, int is_virtual) {
SwigType *t = Getattr(n,"type");
ParmList *l = Getattr(n,"parms");
String* java_function_name = Getattr(n,"java:funcname");
String* java_shadow_function_name = Getattr(n,"java:shadfuncname");
char arg[256];
String *tm;
Parm *jstypep;
Parm *p;
int i;
String *nativecall = NewString("");
String *shadowrettype = NewString("");
String *user_arrays = NewString("");
int num_arguments = 0;
int num_required = 0;
if(!shadow) return;
if (l) {
if (SwigType_type(Getattr(l,"type")) == T_VOID) {
l = nextSibling(l);
}
}
/* Get java shadow types of the return.
* The non-standard typemaps must first be attached to the parameter list. */
Swig_typemap_attach_parms("jstype", l, 0);
if ((tm = Swig_typemap_lookup_new("jstype",n,"",0))) {
String *javaclassname = is_shadow(SwigType_base(Getattr(n,"type")));
Replaceall(tm,"$javaclassname", javaclassname);
Printf(shadowrettype,"%s", tm);
} else {
Printf(stderr, "No jstype typemap defined for %s\n", SwigType_str(t,0));
}
Printf(shadow_code, " public ");
if (static_flag)
Printf(shadow_code, "static ");
if (is_virtual == PURE_VIRTUAL)
Printf(shadow_code, "abstract ");
Printf(shadow_code, "%s %s(", shadowrettype, java_shadow_function_name);
if(SwigType_type(t) == T_ARRAY && is_shadow(get_array_type(t))) {
Printf(nativecall, "long[] cArray = ");
}
else {
if(SwigType_type(t) != T_VOID) {
Printf(nativecall,"return ");
}
if(is_shadow(t)) {
Printv(nativecall, "new ", shadowrettype, "(", 0);
}
}
Printv(nativecall, module, ".", java_function_name, "(", 0);
if (!static_flag)
Printv(nativecall, "_cPtr", 0);
/* Get number of required and total arguments */
num_arguments = emit_num_arguments(l);
num_required = emit_num_required(l);
int gencomma = !static_flag;
/* Workaround to overcome Getignore(p) not working - p does not always have the Getignore
attribute set. Noticeable when javashadowfunctionHandlerk is called from memberfunctionHandler() */
Wrapper* f = NewWrapper();
emit_args(NULL, l, f);
DelWrapper(f);
/* Workaround end */
/* Output each parameter */
for (i = 0, p=l, jstypep=l; i < num_arguments; i++) {
if(Getattr(p,"ignore")) continue;
/* Ignore the 'this' argument for variable wrappers */
if (!(variable_wrapper_flag && i==0))
{
SwigType *pt = Getattr(p,"type");
String *pn = Getattr(p,"name");
String *javaparamtype = NewString("");
/* Get the java type of the parameter */
if ((tm = Getattr(jstypep,"tmap:jstype"))) {
String *javaclassname = is_shadow(SwigType_base(pt));
Replaceall(tm,"$javaclassname", javaclassname);
jstypep = Getattr(jstypep,"tmap:jstype:next");
Printv(javaparamtype, tm, 0);
} else {
jstypep = nextSibling(jstypep);
Printf(stderr, "No jstype typemap defined for %s\n", SwigType_str(pt,0));
}
/* Create a name for the parameter */
if(pn && *(Char(pn)))
strcpy(arg,Char(pn));
else {
sprintf(arg,"arg%d",i);
}
if (gencomma)
Printf(nativecall, ", ");
if(SwigType_type(pt) == T_ARRAY && is_shadow(get_array_type(pt))) {
Printv(user_arrays, tab4, "long[] $arg_cArray = new long[$arg.length];\n", 0);
Printv(user_arrays, tab4, "for (int i=0; i<$arg.length; i++)\n", 0);
Printv(user_arrays, tab4, " $arg_cArray[i] = $arg[i].getCPtr();\n", 0);
Replace(user_arrays, "$arg", pn, DOH_REPLACE_ANY);
Printv(nativecall, arg, "_cArray", 0);
} else if (is_shadow(pt)) {
Printv(nativecall, arg, ".getCPtr()", 0);
} else Printv(nativecall, arg, 0);
/* Add to java shadow function header */
if (gencomma >= 2)
Printf(shadow_code, ", ");
gencomma = 2;
Printf(shadow_code, "%s %s", javaparamtype, arg);
Delete(javaparamtype);
}
else {
jstypep = nextSibling(jstypep);
}
p = nextSibling(p);
}
if(SwigType_type(t) == T_ARRAY && is_shadow(get_array_type(t))) {
String* array_ret = NewString("");
String* array_type = NewString("");
Printf(array_ret,");\n");
Printv(array_ret, tab4, "$type[] arrayWrapper = new $type[cArray.length];\n", 0);
Printv(array_ret, tab4, "for (int i=0; i<cArray.length; i++)\n", 0);
Printv(array_ret, tab4, " arrayWrapper[i] = new $type(cArray[i], false);\n", 0);
Printv(array_ret, tab4, "return arrayWrapper;\n", 0);
// Hack the jstype typemap apart
Printv(array_type, shadowrettype, 0);
Replaceall(array_type,"[]", "");
Replace(array_ret, "$type", array_type, DOH_REPLACE_ANY);
Printv(nativecall, array_ret, 0);
Delete(array_ret);
Delete(array_type);
}
else {
if(is_shadow(t)) {
switch(SwigType_type(t)) {
case T_USER:
Printf(nativecall, "), true");
break;
case T_REFERENCE:
case T_POINTER:
if (NewObject) // %new indicating Java must take responsibility for memory ownership
Printf(nativecall, "), true");
else
Printf(nativecall, "), false");
break;
default:
Printf(stderr, "Internal Error: unknown shadow type: %s\n", SwigType_str(t,0));
break;
}
}
Printf(nativecall,");\n");
}
if (is_virtual == PURE_VIRTUAL) {
Printf(shadow_code, ");\n\n");
abstract_class_flag = 1;
}
else {
Printf(shadow_code, ") {\n");
Printv(shadow_code, user_arrays, 0);
Printf(shadow_code, " %s", nativecall);
Printf(shadow_code, " }\n\n");
}
Delete(shadowrettype);
Delete(nativecall);
Delete(user_arrays);
}
int JAVA::constructorHandler(Node *n) {
char *iname = GetChar(n,"sym:name");
ParmList *l = Getattr(n,"parms");
String *tm;
Parm *jstypep;
Parm *p;
int i;
int num_arguments = 0;
int num_required = 0;
Language::constructorHandler(n);
if(shadow) {
String *nativecall = NewString("");
char arg[256];
Printf(shadow_code, " public %s(", shadow_classname);
Printv(nativecall, "$superconstructorcall", 0); // Super call for filling in later.
if (iname != NULL)
Printv(nativecall, tab4, "_cPtr = ", module, ".", Swig_name_construct(iname), "(", 0);
else
Printv(nativecall, tab4, "_cPtr = ", module, ".", Swig_name_construct(shadow_classname), "(", 0);
int pcount = ParmList_len(l);
if(pcount == 0) // We must have a default constructor
have_default_constructor = 1;
Swig_typemap_attach_parms("jstype", l, 0);
/* Get number of required and total arguments */
num_arguments = emit_num_arguments(l);
num_required = emit_num_required(l);
for (i = 0, p=l, jstypep=l; i < num_arguments; i++) {
SwigType *pt = Getattr(p,"type");
String *pn = Getattr(p,"name");
String *javaparamtype = NewString("");
/* Create a name for the parameter */
if(pn && *(Char(pn)))
strcpy(arg,Char(pn));
else {
sprintf(arg,"arg%d",i);
}
if(is_shadow(pt)) {
Printv(nativecall, arg, ".getCPtr()", 0);
} else Printv(nativecall, arg, 0);
/* Get the java type of the parameter */
if ((tm = Getattr(jstypep,"tmap:jstype"))) {
String *javaclassname = is_shadow(SwigType_base(pt));
Replaceall(tm,"$javaclassname", javaclassname);
jstypep = Getattr(jstypep,"tmap:jstype:next");
Printv(javaparamtype, tm, 0);
} else {
jstypep = nextSibling(jstypep);
Printf(stderr, "No jstype typemap defined for %s\n", SwigType_str(pt,0));
}
/* Add to java shadow function header */
Printf(shadow_code, "%s %s", javaparamtype, arg);
if(i != pcount-1) {
Printf(nativecall, ", ");
Printf(shadow_code, ", ");
}
p = nextSibling(p);
Delete(javaparamtype);
}
Printf(shadow_code, ") {\n");
Printv(nativecall,
");\n",
tab4, "_cMemOwn = true;\n",
0);
Printf(shadow_code, "%s", nativecall);
Printf(shadow_code, " }\n\n");
Delete(nativecall);
}
return SWIG_OK;
}
int JAVA::destructorHandler(Node *n) {
Language::destructorHandler(n);
if(shadow) {
if(!nofinalize) {
Printf(shadow_code, " protected void finalize() {\n");
Printf(shadow_code, " _delete();\n");
Printf(shadow_code, " }\n\n");
}
Printf(shadow_code, " public void _delete() {\n");
Printf(shadow_code, " if(_cPtr!=0 && _cMemOwn) {\n");
Printf(shadow_code, " %s.%s(_cPtr);\n", module, Swig_name_destroy(shadow_classname));
Printf(shadow_code, " _cPtr = 0;\n");
Printf(shadow_code, " }\n");
Printf(shadow_code, " }\n\n");
}
return SWIG_OK;
}
/* This function does the equivalent of
* %apply type *tmap { name * }; when additions=pointer or
* %apply type &tmap { name & }; when additions=reference
* %apply type tmap[ANY] { name [ANY] }; when array_flag set etc... */
void JAVA::TypemapApply(String *type, String *tmap, String *name, type_additions additions, int array_flag)
{
String* nametemp = Copy(name);
String* swigtypetemp = Copy(type);
if (additions == pointer) {
SwigType_add_pointer(swigtypetemp);
SwigType_add_pointer(nametemp);
}
if (additions == reference) {
SwigType_add_reference(swigtypetemp);
SwigType_add_reference(nametemp);
}
if (array_flag) {
SwigType_add_array(swigtypetemp, (char *)"ANY");
SwigType_add_array(nametemp, (char *)"ANY");
}
Parm *srcpat = NewParm(swigtypetemp,tmap);
Parm *destpat = NewParm(nametemp,0);
Swig_typemap_apply(srcpat,destpat);
Delete(nametemp);
Delete(swigtypetemp);
}
int JAVA::classforwardDeclaration(Node *n) {
String *name = Getattr(n,"name");
String *kind = Getattr(n,"kind");
String *class_tmap = NewString("CLASS");
String *array_tmap = NewString("ARRAYSOFCLASSPOINTERS");
String *swigtype = NewString("SWIGTYPE");
/* Add to the hash table of shadow classes */
if (shadow) {
String *shadowclassname = Getattr(n,"sym:name");
Setattr(shadow_classes,name,shadowclassname);
if (kind && (Len(kind) > 0)) {
String *stype = NewStringf("%s %s",kind,name);
Setattr(shadow_classes,stype,shadowclassname);
Delete(stype);
}
}
/* Apply typemaps for handling pointers and references for all known classes/structs/unions. Also for
* arrays of these. This is a workaround because SWIG does not have a default SWIGTYPE * or SWIGTYPE &. */
TypemapApply(swigtype, class_tmap, name, pointer, 0); //%apply SWIGTYPE *CLASS {name*};
TypemapApply(swigtype, class_tmap, name, reference, 0); //%apply SWIGTYPE &CLASS {name&};
TypemapApply(swigtype, array_tmap, name, pointer, 1); //%apply SWIGTYPE *ARRAYSOFCLASSPOINTERS[ANY] {name*[ANY]};
/* More typemap applying for types declared with the kind eg struct, union or class.
For example when type is declared as 'struct name'. */
if (Cmp(Getattr(n,"storage"), "typedef") != 0) {
String *namewithkind = NewString("");
Printf(namewithkind, "%s %s", Getattr(n,"kind"), name);
TypemapApply(swigtype, class_tmap, namewithkind, pointer, 0); //%apply SWIGTYPE *CLASS {kind name*};
TypemapApply(swigtype, class_tmap, namewithkind, reference, 0); //%apply SWIGTYPE &CLASS {kind name&};
TypemapApply(swigtype, array_tmap, namewithkind, pointer, 1); //%apply SWIGTYPE *ARRAYSOFCLASSPOINTERS[ANY] {kind name*[ANY]};
Delete(namewithkind);
}
Delete(class_tmap);
Delete(array_tmap);
Delete(swigtype);
return SWIG_OK;
}
int JAVA::membervariableHandler(Node *n) {
shadow_variable_name = GetChar(n,"sym:name");
wrapping_member = 1;
variable_wrapper_flag = 1;
Language::membervariableHandler(n);
wrapping_member = 0;
variable_wrapper_flag = 0;
return SWIG_OK;
}
int JAVA::staticmembervariableHandler(Node *n) {
shadow_variable_name = GetChar(n,"sym:name");
wrapping_member = 1;
static_flag = 1;
Language::staticmembervariableHandler(n);
wrapping_member = 0;
static_flag = 0;
return SWIG_OK;
}
int JAVA::memberconstantHandler(Node *n) {
shadow_variable_name = GetChar(n,"sym:name");
wrapping_member = 1;
Language::memberconstantHandler(n);
wrapping_member = 0;
return SWIG_OK;
}
|