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
|
/* PPL Java interface common routines implementation.
Copyright (C) 2001-2010 Roberto Bagnara <bagnara@cs.unipr.it>
Copyright (C) 2010-2016 BUGSENG srl (http://bugseng.com)
This file is part of the Parma Polyhedra Library (PPL).
The PPL is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3 of the License, or (at your
option) any later version.
The PPL is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA.
For the most up-to-date information see the Parma Polyhedra Library
site: http://bugseng.com/products/ppl/ . */
#include "ppl_java_common_defs.hh"
namespace Parma_Polyhedra_Library {
namespace Interfaces {
namespace Java {
// Define class and field/method ID caches.
Java_Class_Cache cached_classes;
Java_FMID_Cache cached_FMIDs;
Java_Class_Cache::Java_Class_Cache() {
// Java Virtual Machine pointer.
jvm = NULL;
// Non-PPL classes.
Boolean = NULL;
Integer = NULL;
Long = NULL;
Iterator = NULL;
// PPL classes.
Artificial_Parameter = NULL;
Artificial_Parameter_Sequence = NULL;
Bounded_Integer_Type_Overflow = NULL;
Bounded_Integer_Type_Representation = NULL;
Bounded_Integer_Type_Width = NULL;
By_Reference = NULL;
Coefficient = NULL;
Congruence = NULL;
Constraint = NULL;
Generator = NULL;
Grid_Generator = NULL;
Generator_Type = NULL;
Grid_Generator_Type = NULL;
Constraint_System = NULL;
Congruence_System = NULL;
Generator_System = NULL;
Grid_Generator_System = NULL;
Linear_Expression = NULL;
Linear_Expression_Coefficient = NULL;
Linear_Expression_Difference = NULL;
Linear_Expression_Sum = NULL;
Linear_Expression_Times = NULL;
Linear_Expression_Unary_Minus = NULL;
Linear_Expression_Variable = NULL;
MIP_Problem_Status = NULL;
Optimization_Mode = NULL;
Pair = NULL;
PIP_Problem_Control_Parameter_Name = NULL;
PIP_Problem_Control_Parameter_Value = NULL;
PIP_Problem_Status = NULL;
Poly_Con_Relation = NULL;
Poly_Gen_Relation = NULL;
PPL_Object = NULL;
Relation_Symbol = NULL;
Variable = NULL;
Variable_Stringifier = NULL;
Variables_Set = NULL;
}
void
Java_Class_Cache::init_cache(JNIEnv* env, jclass& field, const char* name) {
assert(env != NULL);
if (field != NULL) {
env->DeleteGlobalRef(field);
}
jclass jni_class = env->FindClass(name);
CHECK_RESULT_ASSERT(env, jni_class);
field = (jclass) env->NewGlobalRef(jni_class);
CHECK_RESULT_ASSERT(env, field);
}
void
Java_Class_Cache::init_cache(JNIEnv* env) {
assert(env != NULL);
// Java Virtual Machine pointer.
env->GetJavaVM(&jvm);
// Non-PPL classes.
init_cache(env, Boolean, "java/lang/Boolean");
init_cache(env, Integer, "java/lang/Integer");
init_cache(env, Long, "java/lang/Long");
init_cache(env, Iterator, "java/util/Iterator");
// PPL classes.
init_cache(env, Artificial_Parameter,
"parma_polyhedra_library/Artificial_Parameter");
init_cache(env, Artificial_Parameter_Sequence,
"parma_polyhedra_library/Artificial_Parameter_Sequence");
init_cache(env, Bounded_Integer_Type_Overflow, "parma_polyhedra_library/Bounded_Integer_Type_Overflow");
init_cache(env, Bounded_Integer_Type_Representation, "parma_polyhedra_library/Bounded_Integer_Type_Representation");
init_cache(env, Bounded_Integer_Type_Width, "parma_polyhedra_library/Bounded_Integer_Type_Width");
init_cache(env, By_Reference, "parma_polyhedra_library/By_Reference");
init_cache(env, Coefficient, "parma_polyhedra_library/Coefficient");
init_cache(env, Congruence, "parma_polyhedra_library/Congruence");
init_cache(env, Constraint, "parma_polyhedra_library/Constraint");
init_cache(env, Generator, "parma_polyhedra_library/Generator");
init_cache(env, Grid_Generator, "parma_polyhedra_library/Grid_Generator");
init_cache(env, Generator_Type, "parma_polyhedra_library/Generator_Type");
init_cache(env, Grid_Generator_Type,
"parma_polyhedra_library/Grid_Generator_Type");
init_cache(env, Constraint_System,
"parma_polyhedra_library/Constraint_System");
init_cache(env, Congruence_System,
"parma_polyhedra_library/Congruence_System");
init_cache(env, Generator_System,
"parma_polyhedra_library/Generator_System");
init_cache(env, Grid_Generator_System,
"parma_polyhedra_library/Grid_Generator_System");
init_cache(env, Linear_Expression,
"parma_polyhedra_library/Linear_Expression");
init_cache(env, Linear_Expression_Coefficient,
"parma_polyhedra_library/Linear_Expression_Coefficient");
init_cache(env, Linear_Expression_Difference,
"parma_polyhedra_library/Linear_Expression_Difference");
init_cache(env, Linear_Expression_Sum,
"parma_polyhedra_library/Linear_Expression_Sum");
init_cache(env, Linear_Expression_Times,
"parma_polyhedra_library/Linear_Expression_Times");
init_cache(env, Linear_Expression_Unary_Minus,
"parma_polyhedra_library/Linear_Expression_Unary_Minus");
init_cache(env, Linear_Expression_Variable,
"parma_polyhedra_library/Linear_Expression_Variable");
init_cache(env, MIP_Problem_Status,
"parma_polyhedra_library/MIP_Problem_Status");
init_cache(env, Optimization_Mode,
"parma_polyhedra_library/Optimization_Mode");
init_cache(env, Pair, "parma_polyhedra_library/Pair");
init_cache(env, PIP_Problem_Control_Parameter_Name,
"parma_polyhedra_library/PIP_Problem_Control_Parameter_Name");
init_cache(env, PIP_Problem_Control_Parameter_Value,
"parma_polyhedra_library/PIP_Problem_Control_Parameter_Value");
init_cache(env, PIP_Problem_Status,
"parma_polyhedra_library/PIP_Problem_Status");
init_cache(env, Poly_Con_Relation,
"parma_polyhedra_library/Poly_Con_Relation");
init_cache(env, Poly_Gen_Relation,
"parma_polyhedra_library/Poly_Gen_Relation");
init_cache(env, PPL_Object, "parma_polyhedra_library/PPL_Object");
init_cache(env, Relation_Symbol, "parma_polyhedra_library/Relation_Symbol");
init_cache(env, Variable, "parma_polyhedra_library/Variable");
// NOTE: initialization of concrete Variable_Stringifier is responsibility
// of static (native) method Variable.setStringifier.
init_cache(env, Variables_Set, "parma_polyhedra_library/Variables_Set");
}
void
Java_Class_Cache::clear_cache(JNIEnv* env, jclass& field) {
assert(env != NULL);
if (field != NULL) {
env->DeleteGlobalRef(field);
field = NULL;
}
}
void
Java_Class_Cache::clear_cache(JNIEnv* env) {
assert(env != NULL);
// Clearing the JVM pointer.
jvm = NULL;
// Non-PPL classes.
clear_cache(env, Boolean);
clear_cache(env, Integer);
clear_cache(env, Long);
clear_cache(env, Iterator);
// PPL classes.
clear_cache(env, Artificial_Parameter);
clear_cache(env, Artificial_Parameter_Sequence);
clear_cache(env, Bounded_Integer_Type_Overflow);
clear_cache(env, Bounded_Integer_Type_Representation);
clear_cache(env, Bounded_Integer_Type_Width);
clear_cache(env, By_Reference);
clear_cache(env, Coefficient);
clear_cache(env, Congruence);
clear_cache(env, Constraint);
clear_cache(env, Generator);
clear_cache(env, Grid_Generator);
clear_cache(env, Generator_Type);
clear_cache(env, Grid_Generator_Type);
clear_cache(env, Constraint_System);
clear_cache(env, Congruence_System);
clear_cache(env, Generator_System);
clear_cache(env, Grid_Generator_System);
clear_cache(env, Linear_Expression);
clear_cache(env, Linear_Expression_Coefficient);
clear_cache(env, Linear_Expression_Difference);
clear_cache(env, Linear_Expression_Sum);
clear_cache(env, Linear_Expression_Times);
clear_cache(env, Linear_Expression_Unary_Minus);
clear_cache(env, Linear_Expression_Variable);
clear_cache(env, MIP_Problem_Status);
clear_cache(env, Optimization_Mode);
clear_cache(env, PIP_Problem_Status);
clear_cache(env, Pair);
clear_cache(env, Poly_Con_Relation);
clear_cache(env, Poly_Gen_Relation);
clear_cache(env, PPL_Object);
clear_cache(env, Relation_Symbol);
clear_cache(env, Variable);
clear_cache(env, Variable_Stringifier);
clear_cache(env, Variables_Set);
}
void
handle_exception(JNIEnv* env, const std::overflow_error& e) {
jclass newExcCls
= env->FindClass("parma_polyhedra_library/Overflow_Error_Exception");
CHECK_RESULT_ASSERT(env, newExcCls);
jint ret = env->ThrowNew(newExcCls, e.what());
CHECK_RESULT_ABORT(env, ret == 0);
}
void
handle_exception(JNIEnv* env, const std::invalid_argument& e) {
jclass newExcCls
= env->FindClass("parma_polyhedra_library/Invalid_Argument_Exception");
CHECK_RESULT_ASSERT(env, newExcCls);
jint ret = env->ThrowNew(newExcCls, e.what());
CHECK_RESULT_ABORT(env, ret == 0);
}
void
handle_exception(JNIEnv* env, const std::logic_error& e) {
jclass newExcCls
= env->FindClass("parma_polyhedra_library/Logic_Error_Exception");
CHECK_RESULT_ASSERT(env, newExcCls);
jint ret = env->ThrowNew(newExcCls, e.what());
CHECK_RESULT_ABORT(env, ret == 0);
}
void
handle_exception(JNIEnv* env, const std::length_error& e) {
jclass newExcCls
= env->FindClass("parma_polyhedra_library/Length_Error_Exception");
CHECK_RESULT_ASSERT(env, newExcCls);
jint ret = env->ThrowNew(newExcCls, e.what());
CHECK_RESULT_ABORT(env, ret == 0);
}
void
handle_exception(JNIEnv* env, const std::domain_error& e) {
jclass newExcCls
= env->FindClass("parma_polyhedra_library/Domain_Error_Exception");
CHECK_RESULT_ASSERT(env, newExcCls);
jint ret = env->ThrowNew(newExcCls, e.what());
CHECK_RESULT_ABORT(env, ret == 0);
}
void
handle_exception(JNIEnv* env, const std::bad_alloc&) {
jclass newExcCls
= env->FindClass("java/lang/RuntimeException");
CHECK_RESULT_ASSERT(env, newExcCls);
jint ret = env->ThrowNew(newExcCls, "Out of memory");
CHECK_RESULT_ABORT(env, ret == 0);
}
void
handle_exception(JNIEnv* env, const std::exception& e) {
jclass newExcCls = env->FindClass("java/lang/RuntimeException");
CHECK_RESULT_ASSERT(env, newExcCls);
jint ret = env->ThrowNew(newExcCls, e.what());
CHECK_RESULT_ABORT(env, ret == 0);
}
void
handle_exception(JNIEnv* env, const timeout_exception&) {
reset_timeout();
jclass newExcCls
= env->FindClass("parma_polyhedra_library/Timeout_Exception");
CHECK_RESULT_ASSERT(env, newExcCls);
jint ret = env->ThrowNew(newExcCls, "PPL timeout expired");
CHECK_RESULT_ABORT(env, (ret == 0));
}
void
handle_exception(JNIEnv* env, const deterministic_timeout_exception&) {
reset_deterministic_timeout();
jclass newExcCls
= env->FindClass("parma_polyhedra_library/Timeout_Exception");
CHECK_RESULT_ASSERT(env, newExcCls);
jint ret = env->ThrowNew(newExcCls, "PPL deterministic timeout expired");
CHECK_RESULT_ABORT(env, (ret == 0));
}
void
handle_exception(JNIEnv* env) {
jclass newExcCls = env->FindClass("java/lang/RuntimeException");
CHECK_RESULT_ASSERT(env, newExcCls);
jint ret = env->ThrowNew(newExcCls, "PPL bug: unknown exception raised");
CHECK_RESULT_ABORT(env, ret == 0);
}
Parma_Polyhedra_Library::Watchdog* p_timeout_object = 0;
Weightwatch* p_deterministic_timeout_object = 0;
void
reset_timeout() {
if (p_timeout_object) {
delete p_timeout_object;
p_timeout_object = 0;
abandon_expensive_computations = 0;
}
}
void
reset_deterministic_timeout() {
if (p_deterministic_timeout_object) {
delete p_deterministic_timeout_object;
p_deterministic_timeout_object = 0;
abandon_expensive_computations = 0;
}
}
jobject
build_java_poly_gen_relation(JNIEnv* env, Poly_Gen_Relation& r) {
jint j_value = 0;
while (r != Poly_Gen_Relation::nothing()) {
if (r.implies(Poly_Gen_Relation::subsumes())) {
j_value += 1;
r = r - Poly_Gen_Relation::subsumes();
}
}
jobject ret = env->NewObject(cached_classes.Poly_Gen_Relation,
cached_FMIDs.Poly_Gen_Relation_init_ID,
j_value);
CHECK_RESULT_THROW(env, ret);
return ret;
}
jobject
build_java_poly_con_relation(JNIEnv* env, Poly_Con_Relation& r) {
jint j_value = 0;
while (r != Poly_Con_Relation::nothing()) {
if (r.implies(Poly_Con_Relation::is_disjoint())) {
j_value += 1;
r = r - Poly_Con_Relation::is_disjoint();
}
else if (r.implies(Poly_Con_Relation::strictly_intersects())) {
j_value += 2;
r = r - Poly_Con_Relation::strictly_intersects();
}
else if (r.implies(Poly_Con_Relation::is_included())) {
j_value += 4;
r = r - Poly_Con_Relation::is_included();
}
else if (r.implies(Poly_Con_Relation::saturates())) {
j_value += 8;
r = r - Poly_Con_Relation::saturates();
}
}
jobject ret = env->NewObject(cached_classes.Poly_Con_Relation,
cached_FMIDs.Poly_Con_Relation_init_ID,
j_value);
CHECK_RESULT_THROW(env, ret);
return ret;
}
Congruence
build_cxx_congruence(JNIEnv* env, jobject j_congruence) {
jobject j_mod
= env->GetObjectField(j_congruence, cached_FMIDs.Congruence_mod_ID);
jobject j_lhs
= env->GetObjectField(j_congruence, cached_FMIDs.Congruence_lhs_ID);
jobject j_rhs
= env->GetObjectField(j_congruence, cached_FMIDs.Congruence_rhs_ID);
PPL_DIRTY_TEMP_COEFFICIENT(ppl_modulus);
ppl_modulus = build_cxx_coeff(env, j_mod);
Linear_Expression lhs = build_cxx_linear_expression(env, j_lhs);
Linear_Expression rhs = build_cxx_linear_expression(env, j_rhs);
return (lhs %= rhs) / ppl_modulus;
}
PIP_Tree_Node::Artificial_Parameter
build_cxx_artificial_parameter(JNIEnv* env, jobject j_artificial_parameter) {
jobject j_le
= env->GetObjectField(j_artificial_parameter,
cached_FMIDs.Artificial_Parameter_le_ID);
jobject j_den
= env->GetObjectField(j_artificial_parameter,
cached_FMIDs.Artificial_Parameter_den_ID);
PPL_DIRTY_TEMP_COEFFICIENT(ppl_den);
ppl_den = build_cxx_coeff(env, j_den);
Linear_Expression le = build_cxx_linear_expression(env, j_le);
PIP_Tree_Node::Artificial_Parameter art_param(le, ppl_den);
return art_param;
}
jobject
bool_to_j_boolean_class(JNIEnv* env, const bool value) {
jobject ret = env->CallStaticObjectMethod(cached_classes.Boolean,
cached_FMIDs.Boolean_valueOf_ID,
static_cast<jboolean>(value));
CHECK_EXCEPTION_ASSERT(env);
return ret;
}
jobject
j_long_to_j_long_class(JNIEnv* env, jlong jlong_value) {
jobject ret = env->CallStaticObjectMethod(cached_classes.Long,
cached_FMIDs.Long_valueOf_ID,
jlong_value);
CHECK_EXCEPTION_THROW(env);
return ret;
}
jlong
j_long_class_to_j_long(JNIEnv* env, jobject j_long) {
jlong ret = env->CallLongMethod(j_long, cached_FMIDs.Long_longValue_ID);
CHECK_EXCEPTION_ASSERT(env);
return ret;
}
jobject
j_int_to_j_integer(JNIEnv* env, jint jint_value) {
jobject ret = env->CallStaticObjectMethod(cached_classes.Integer,
cached_FMIDs.Integer_valueOf_ID,
jint_value);
CHECK_EXCEPTION_THROW(env);
return ret;
}
jint
j_integer_to_j_int(JNIEnv* env, jobject j_integer) {
jint ret = env->CallIntMethod(j_integer, cached_FMIDs.Integer_intValue_ID);
CHECK_EXCEPTION_ASSERT(env);
return ret;
}
Variables_Set
build_cxx_variables_set(JNIEnv* env, jobject j_v_set) {
// Get the iterator.
jobject j_iter
= env->CallObjectMethod(j_v_set, cached_FMIDs.Variables_Set_iterator_ID);
CHECK_EXCEPTION_THROW(env);
// Get method IDs from cache.
jmethodID has_next_ID = cached_FMIDs.Variables_Set_Iterator_has_next_ID;
jmethodID next_ID = cached_FMIDs.Variables_Set_Iterator_next_ID;
// Initialize an empty set of variables.
Variables_Set v_set;
jobject j_variable;
jboolean has_next_value = env->CallBooleanMethod(j_iter, has_next_ID);
while (has_next_value) {
j_variable = env->CallObjectMethod(j_iter, next_ID);
CHECK_EXCEPTION_ASSERT(env);
v_set.insert(build_cxx_variable(env, j_variable));
has_next_value = env->CallBooleanMethod(j_iter, has_next_ID);
CHECK_EXCEPTION_ASSERT(env);
}
return v_set;
}
jobject
build_java_variables_set(JNIEnv* env, const Variables_Set& v_set) {
jobject j_vs = env->NewObject(cached_classes.Variables_Set,
cached_FMIDs.Variables_Set_init_ID);
CHECK_RESULT_THROW(env, j_vs);
for (Variables_Set::const_iterator v_begin = v_set.begin(),
v_end = v_set.end(); v_begin != v_end; ++v_begin) {
Variable var(*v_begin);
jobject j_variable = build_java_variable(env, var);
env->CallBooleanMethod(j_vs,
cached_FMIDs.Variables_Set_add_ID,
j_variable);
CHECK_EXCEPTION_THROW(env);
}
return j_vs;
}
Bounded_Integer_Type_Overflow
build_cxx_bounded_overflow(JNIEnv* env, jobject j_bounded_overflow) {
jint bounded_overflow
= env->CallIntMethod(j_bounded_overflow, cached_FMIDs.Bounded_Integer_Type_Overflow_ordinal_ID);
CHECK_EXCEPTION_ASSERT(env);
switch (bounded_overflow) {
case 0:
return OVERFLOW_WRAPS;
case 1:
return OVERFLOW_UNDEFINED;
case 2:
return OVERFLOW_IMPOSSIBLE;
default:
PPL_JAVA_UNEXPECTED;
}
}
Bounded_Integer_Type_Representation
build_cxx_bounded_rep(JNIEnv* env, jobject j_bounded_rep) {
jint bounded_rep
= env->CallIntMethod(j_bounded_rep, cached_FMIDs.Bounded_Integer_Type_Representation_ordinal_ID);
CHECK_EXCEPTION_ASSERT(env);
switch (bounded_rep) {
case 0:
return UNSIGNED;
case 1:
return SIGNED_2_COMPLEMENT;
default:
PPL_JAVA_UNEXPECTED;
}
}
Bounded_Integer_Type_Width
build_cxx_bounded_width(JNIEnv* env, jobject j_bounded_width) {
jint bounded_width
= env->CallIntMethod(j_bounded_width, cached_FMIDs.Bounded_Integer_Type_Width_ordinal_ID);
CHECK_EXCEPTION_ASSERT(env);
switch (bounded_width) {
case 0:
return BITS_8;
case 1:
return BITS_16;
case 2:
return BITS_32;
case 3:
return BITS_64;
case 4:
return BITS_128;
default:
PPL_JAVA_UNEXPECTED;
}
}
Relation_Symbol
build_cxx_relsym(JNIEnv* env, jobject j_relsym) {
jint rel_sym
= env->CallIntMethod(j_relsym, cached_FMIDs.Relation_Symbol_ordinal_ID);
CHECK_EXCEPTION_ASSERT(env);
switch (rel_sym) {
case 0:
return LESS_THAN;
case 1:
return LESS_OR_EQUAL;
case 2:
return EQUAL;
case 3:
return GREATER_OR_EQUAL;
case 4:
return GREATER_THAN;
case 5:
return NOT_EQUAL;
default:
PPL_JAVA_UNEXPECTED;
}
}
Optimization_Mode
build_cxx_optimization_mode(JNIEnv* env, jobject j_opt_mode) {
jint opt_mode
= env->CallIntMethod(j_opt_mode, cached_FMIDs.Optimization_Mode_ordinal_ID);
CHECK_EXCEPTION_ASSERT(env);
switch (opt_mode) {
case 0:
return MINIMIZATION;
case 1:
return MAXIMIZATION;
default:
PPL_JAVA_UNEXPECTED;
}
}
jobject
build_java_mip_status(JNIEnv* env, const MIP_Problem_Status& mip_status) {
jfieldID fID;
switch (mip_status) {
case UNFEASIBLE_MIP_PROBLEM:
fID = cached_FMIDs.MIP_Problem_Status_UNFEASIBLE_MIP_PROBLEM_ID;
break;
case UNBOUNDED_MIP_PROBLEM:
fID = cached_FMIDs.MIP_Problem_Status_UNBOUNDED_MIP_PROBLEM_ID;
break;
case OPTIMIZED_MIP_PROBLEM:
fID = cached_FMIDs.MIP_Problem_Status_OPTIMIZED_MIP_PROBLEM_ID;
break;
default:
PPL_UNREACHABLE;
}
return env->GetStaticObjectField(cached_classes.MIP_Problem_Status, fID);
}
jobject
build_java_pip_status(JNIEnv* env, const PIP_Problem_Status& pip_status) {
jfieldID fID;
switch (pip_status) {
case UNFEASIBLE_PIP_PROBLEM:
fID = cached_FMIDs.PIP_Problem_Status_UNFEASIBLE_PIP_PROBLEM_ID;
break;
case OPTIMIZED_PIP_PROBLEM:
fID = cached_FMIDs.PIP_Problem_Status_OPTIMIZED_PIP_PROBLEM_ID;
break;
default:
PPL_UNREACHABLE;
}
return env->GetStaticObjectField(cached_classes.PIP_Problem_Status, fID);
}
jobject
build_java_optimization_mode(JNIEnv* env, const Optimization_Mode& opt_mode) {
jfieldID fID;
switch (opt_mode) {
case MINIMIZATION:
fID = cached_FMIDs.Optimization_Mode_MINIMIZATION_ID;
break;
case MAXIMIZATION:
fID = cached_FMIDs.Optimization_Mode_MAXIMIZATION_ID;
break;
default:
PPL_UNREACHABLE;
}
return env->GetStaticObjectField(cached_classes.Optimization_Mode, fID);
}
MIP_Problem::Control_Parameter_Name
build_cxx_control_parameter_name(JNIEnv* env, jobject j_cp_name) {
jclass cp_name_class = env->GetObjectClass(j_cp_name);
CHECK_RESULT_ASSERT(env, cp_name_class);
jmethodID cp_name_ordinal_id
= env->GetMethodID(cp_name_class, "ordinal", "()I");
CHECK_RESULT_ASSERT(env, cp_name_ordinal_id);
jint cp_name = env->CallIntMethod(j_cp_name, cp_name_ordinal_id);
CHECK_EXCEPTION_ASSERT(env);
if (cp_name == 0)
return MIP_Problem::PRICING;
else
PPL_JAVA_UNEXPECTED;
}
jobject
build_java_control_parameter_name
(JNIEnv* env,const MIP_Problem::Control_Parameter_Name& cp_name) {
jclass j_cp_name_class
= env->FindClass("parma_polyhedra_library/Control_Parameter_Name");
CHECK_RESULT_ASSERT(env, j_cp_name_class);
jfieldID cp_name_pricing_get_id
= env->GetStaticFieldID(j_cp_name_class, "PRICING",
"Lparma_polyhedra_library/Control_Parameter_Name;");
CHECK_RESULT_ASSERT(env, cp_name_pricing_get_id);
if (cp_name == MIP_Problem::PRICING)
return env->GetStaticObjectField(j_cp_name_class,
cp_name_pricing_get_id);
else
PPL_UNREACHABLE;
}
MIP_Problem::Control_Parameter_Value
build_cxx_control_parameter_value(JNIEnv* env, jobject j_cp_value) {
jclass cp_value_class = env->GetObjectClass(j_cp_value);
CHECK_RESULT_ASSERT(env, cp_value_class);
jmethodID cp_value_ordinal_id
= env->GetMethodID(cp_value_class, "ordinal", "()I");
CHECK_RESULT_ASSERT(env, cp_value_ordinal_id);
jint cp_value = env->CallIntMethod(j_cp_value, cp_value_ordinal_id);
CHECK_EXCEPTION_ASSERT(env);
switch (cp_value) {
case 0:
return MIP_Problem::PRICING_STEEPEST_EDGE_FLOAT;
case 1:
return MIP_Problem::PRICING_STEEPEST_EDGE_EXACT;
case 2:
return MIP_Problem::PRICING_TEXTBOOK;
default:
PPL_JAVA_UNEXPECTED;
}
}
jobject
build_java_control_parameter_value
(JNIEnv* env, const MIP_Problem::Control_Parameter_Value& cp_value) {
jclass j_cp_value_class
= env->FindClass("parma_polyhedra_library/Control_Parameter_Value");
CHECK_RESULT_ASSERT(env, j_cp_value_class);
const char* field_name;
switch (cp_value) {
case MIP_Problem::PRICING_STEEPEST_EDGE_FLOAT:
field_name = "PRICING_STEEPEST_EDGE_FLOAT";
break;
case MIP_Problem::PRICING_STEEPEST_EDGE_EXACT:
field_name = "PRICING_STEEPEST_EDGE_EXACT";
break;
case MIP_Problem::PRICING_TEXTBOOK:
field_name = "PRICING_TEXTBOOK";
break;
default:
PPL_UNREACHABLE;
}
jfieldID fID = env->GetStaticFieldID(j_cp_value_class, field_name,
"Lparma_polyhedra_library/Control_Parameter_Value;");
CHECK_RESULT_ASSERT(env, fID);
return env->GetStaticObjectField(j_cp_value_class, fID);
}
PIP_Problem::Control_Parameter_Name
build_cxx_pip_problem_control_parameter_name(JNIEnv* env, jobject j_cp_name) {
jclass cp_name_class = env->GetObjectClass(j_cp_name);
CHECK_RESULT_ASSERT(env, cp_name_class);
jmethodID cp_name_ordinal_id
= env->GetMethodID(cp_name_class, "ordinal", "()I");
CHECK_RESULT_ASSERT(env, cp_name_ordinal_id);
jint cp_name = env->CallIntMethod(j_cp_name, cp_name_ordinal_id);
CHECK_EXCEPTION_ASSERT(env);
switch (cp_name) {
case 0:
return PIP_Problem::CUTTING_STRATEGY;
case 1:
return PIP_Problem::PIVOT_ROW_STRATEGY;
default:
PPL_JAVA_UNEXPECTED;
}
}
jobject
build_java_pip_problem_control_parameter_name
(JNIEnv* env, const PIP_Problem::Control_Parameter_Name& cp_name) {
jclass j_cp_name_class
= env->FindClass("parma_polyhedra_library/PIP_Problem_Control_Parameter_Name");
CHECK_RESULT_ASSERT(env, j_cp_name_class);
jfieldID cp_name_cutting_strategy_get_id
= env->GetStaticFieldID(j_cp_name_class, "CUTTING_STRATEGY",
"Lparma_polyhedra_library/PIP_Problem_Control_Parameter_Name;");
CHECK_RESULT_ASSERT(env, cp_name_cutting_strategy_get_id);
jfieldID cp_name_pivot_row_strategy_get_id
= env->GetStaticFieldID(j_cp_name_class, "PIVOT_ROW_STRATEGY",
"Lparma_polyhedra_library/PIP_Problem_Control_Parameter_Name;");
CHECK_RESULT_ASSERT(env, cp_name_pivot_row_strategy_get_id);
switch (cp_name) {
case PIP_Problem::CUTTING_STRATEGY:
return env->GetStaticObjectField(j_cp_name_class,
cp_name_cutting_strategy_get_id);
case PIP_Problem::PIVOT_ROW_STRATEGY:
return env->GetStaticObjectField(j_cp_name_class,
cp_name_pivot_row_strategy_get_id);
default:
PPL_UNREACHABLE;
}
}
PIP_Problem::Control_Parameter_Value
build_cxx_pip_problem_control_parameter_value(JNIEnv* env, jobject j_cp_value) {
jclass cp_value_class = env->GetObjectClass(j_cp_value);
CHECK_RESULT_ASSERT(env, cp_value_class);
jmethodID cp_value_ordinal_id
= env->GetMethodID(cp_value_class, "ordinal", "()I");
CHECK_RESULT_ASSERT(env, cp_value_ordinal_id);
jint cp_value = env->CallIntMethod(j_cp_value, cp_value_ordinal_id);
CHECK_EXCEPTION_ASSERT(env);
switch (cp_value) {
case 0:
return PIP_Problem::CUTTING_STRATEGY_FIRST;
case 1:
return PIP_Problem::CUTTING_STRATEGY_DEEPEST;
case 2:
return PIP_Problem::CUTTING_STRATEGY_ALL;
case 3:
return PIP_Problem::PIVOT_ROW_STRATEGY_FIRST;
case 4:
return PIP_Problem::PIVOT_ROW_STRATEGY_MAX_COLUMN;
default:
PPL_JAVA_UNEXPECTED;
}
}
jobject
build_java_pip_problem_control_parameter_value
(JNIEnv* env, const PIP_Problem::Control_Parameter_Value& cp_value) {
jclass j_cp_value_class
= env->FindClass("parma_polyhedra_library/PIP_Problem_Control_Parameter_Value");
CHECK_RESULT_ASSERT(env, j_cp_value_class);
const char* field_name;
switch (cp_value) {
case PIP_Problem::CUTTING_STRATEGY_FIRST:
field_name = "CUTTING_STRATEGY_FIRST";
break;
case PIP_Problem::CUTTING_STRATEGY_DEEPEST:
field_name = "CUTTING_STRATEGY_DEEPEST";
break;
case PIP_Problem::CUTTING_STRATEGY_ALL:
field_name = "CUTTING_STRATEGY_ALL";
break;
case PIP_Problem::PIVOT_ROW_STRATEGY_FIRST:
field_name = "PIVOT_ROW_STRATEGY_FIRST";
break;
case PIP_Problem::PIVOT_ROW_STRATEGY_MAX_COLUMN:
field_name = "PIVOT_ROW_STRATEGY_MAX_COLUMN";
break;
default:
PPL_UNREACHABLE;
}
jfieldID fID = env->GetStaticFieldID(j_cp_value_class, field_name,
"Lparma_polyhedra_library/PIP_Problem_Control_Parameter_Value;");
CHECK_RESULT_ASSERT(env, fID);
return env->GetStaticObjectField(j_cp_value_class, fID);
}
Constraint
build_cxx_constraint(JNIEnv* env, jobject j_constraint) {
jobject lhs_value
= env->GetObjectField(j_constraint, cached_FMIDs.Constraint_lhs_ID);
jobject rhs_value
= env->GetObjectField(j_constraint, cached_FMIDs.Constraint_rhs_ID);
jobject kind
= env->GetObjectField(j_constraint, cached_FMIDs.Constraint_kind_ID);
Linear_Expression first_le = build_cxx_linear_expression(env, lhs_value);
Linear_Expression second_le = build_cxx_linear_expression(env, rhs_value);
jint rel_sym
= env->CallIntMethod(kind, cached_FMIDs.Relation_Symbol_ordinal_ID);
CHECK_EXCEPTION_ASSERT(env);
switch (rel_sym) {
case 0:
return Constraint(first_le < second_le);
case 1:
return Constraint(first_le <= second_le);
case 2:
return Constraint(first_le == second_le);
case 3:
return Constraint(first_le >= second_le);
case 4:
return Constraint(first_le > second_le);
default:
PPL_JAVA_UNEXPECTED;
}
}
Linear_Expression
build_cxx_linear_expression(JNIEnv* env, jobject j_le) {
jfieldID fID;
jclass current_class = env->GetObjectClass(j_le);
// LE_Variable
if (env->IsAssignableFrom(current_class,
cached_classes.Linear_Expression_Variable)) {
jmethodID mID = cached_FMIDs.Linear_Expression_Variable_var_id_ID;
jlong var_id = env->CallLongMethod(j_le, mID);
return Linear_Expression(Variable(var_id));
}
// LE_Coefficient
if (env->IsAssignableFrom(current_class,
cached_classes.Linear_Expression_Coefficient)) {
fID = cached_FMIDs.Linear_Expression_Coefficient_coeff_ID;
jobject ppl_coeff = env->GetObjectField(j_le, fID);
return Linear_Expression(build_cxx_coeff(env, ppl_coeff));
}
// LE_Sum
if (env->IsAssignableFrom(current_class,
cached_classes.Linear_Expression_Sum)) {
fID = cached_FMIDs.Linear_Expression_Sum_lhs_ID;
jobject l_value = env->GetObjectField(j_le, fID);
fID = cached_FMIDs.Linear_Expression_Sum_rhs_ID;
jobject r_value = env->GetObjectField(j_le, fID);
return build_cxx_linear_expression(env, l_value)
+ build_cxx_linear_expression(env, r_value);
}
// LE_Times
if (env->IsAssignableFrom(current_class,
cached_classes.Linear_Expression_Times)) {
fID = cached_FMIDs.Linear_Expression_Times_coeff_ID;
jobject coeff_value = env->GetObjectField(j_le, fID);
fID = cached_FMIDs.Linear_Expression_Times_lin_expr_ID;
jobject le_value = env->GetObjectField(j_le, fID);
return build_cxx_coeff(env, coeff_value)
* build_cxx_linear_expression(env, le_value);
}
// LE_Difference
if (env->IsAssignableFrom(current_class,
cached_classes.Linear_Expression_Difference)) {
fID = cached_FMIDs.Linear_Expression_Difference_lhs_ID;
jobject l_value = env->GetObjectField(j_le,fID);
fID = cached_FMIDs.Linear_Expression_Difference_rhs_ID;
jobject r_value = env->GetObjectField(j_le, fID);
return build_cxx_linear_expression(env, l_value)
- build_cxx_linear_expression(env, r_value);
}
// LE_Unary_Minus
if (env->IsAssignableFrom(current_class,
cached_classes.Linear_Expression_Unary_Minus)) {
fID = cached_FMIDs.Linear_Expression_Unary_Minus_arg_ID;
jobject le_value = env->GetObjectField(j_le, fID);
return -build_cxx_linear_expression(env, le_value);
}
// All cases dealt with above.
PPL_JAVA_UNEXPECTED;
}
Generator
build_cxx_generator(JNIEnv* env, jobject j_generator) {
jobject j_le
= env->GetObjectField(j_generator, cached_FMIDs.Generator_le_ID);
jobject generator_type
= env->GetObjectField(j_generator, cached_FMIDs.Generator_gt_ID);
jint generator_type_ordinal
= env->CallIntMethod(generator_type,
cached_FMIDs.Generator_Type_ordinal_ID);
CHECK_EXCEPTION_ASSERT(env);
switch (generator_type_ordinal) {
case 0:
return line(build_cxx_linear_expression(env, j_le));
case 1:
return ray(build_cxx_linear_expression(env, j_le));
case 2:
{
jobject j_div
= env->GetObjectField(j_generator, cached_FMIDs.Generator_div_ID);
return point(build_cxx_linear_expression(env, j_le),
build_cxx_coeff(env, j_div));
}
case 3:
{
jobject j_div
= env->GetObjectField(j_generator, cached_FMIDs.Generator_div_ID);
return closure_point(build_cxx_linear_expression(env, j_le),
build_cxx_coeff(env, j_div));
}
default:
PPL_JAVA_UNEXPECTED;
}
}
Grid_Generator
build_cxx_grid_generator(JNIEnv* env, jobject j_grid_generator) {
jobject j_le
= env->GetObjectField(j_grid_generator, cached_FMIDs.Grid_Generator_le_ID);
jobject grid_generator_type
= env->GetObjectField(j_grid_generator, cached_FMIDs.Grid_Generator_gt_ID);
jint grid_generator_type_ordinal
= env->CallIntMethod(grid_generator_type,
cached_FMIDs.Grid_Generator_Type_ordinal_ID);
CHECK_EXCEPTION_ASSERT(env);
switch (grid_generator_type_ordinal) {
case 0:
return grid_line(build_cxx_linear_expression(env, j_le));
case 1:
{
jobject j_div = env->GetObjectField(j_grid_generator,
cached_FMIDs.Grid_Generator_div_ID);
return parameter(build_cxx_linear_expression(env, j_le),
build_cxx_coeff(env, j_div));
}
case 2:
{
jobject j_div = env->GetObjectField(j_grid_generator,
cached_FMIDs.Grid_Generator_div_ID);
return grid_point(build_cxx_linear_expression(env, j_le),
build_cxx_coeff(env, j_div));
}
default:
PPL_JAVA_UNEXPECTED;
}
}
jobject
build_java_linear_expression_coefficient(JNIEnv* env, const Coefficient& c) {
jobject j_coeff = build_java_coeff(env, c);
jobject ret
= env->NewObject(cached_classes.Linear_Expression_Coefficient,
cached_FMIDs.Linear_Expression_Coefficient_init_ID,
j_coeff);
CHECK_RESULT_THROW(env, ret);
return ret;
}
void
set_generator(JNIEnv* env, jobject dst, jobject src) {
jobject src_gt = env->GetObjectField(src, cached_FMIDs.Generator_gt_ID);
env->SetObjectField(dst, cached_FMIDs.Generator_gt_ID, src_gt);
jobject src_le = env->GetObjectField(src, cached_FMIDs.Generator_le_ID);
env->SetObjectField(dst, cached_FMIDs.Generator_le_ID, src_le);
jobject src_div = env->GetObjectField(src, cached_FMIDs.Generator_div_ID);
env->SetObjectField(dst, cached_FMIDs.Generator_div_ID, src_div);
}
void
set_pair_element(JNIEnv* env, jobject dst_pair, int arg, jobject src) {
switch (arg) {
case 0:
env->SetObjectField(dst_pair, cached_FMIDs.Pair_first_ID, src);
break;
case 1:
env->SetObjectField(dst_pair, cached_FMIDs.Pair_second_ID, src);
break;
default:
PPL_JAVA_UNEXPECTED;
}
}
jobject
get_pair_element(JNIEnv* env, int arg, jobject j_pair) {
switch (arg) {
case 0:
return env->GetObjectField(j_pair, cached_FMIDs.Pair_first_ID);
case 1:
return env->GetObjectField(j_pair, cached_FMIDs.Pair_second_ID);
default:
PPL_JAVA_UNEXPECTED;
}
}
jobject
build_java_constraint(JNIEnv* env, const Constraint& c) {
jobject lhs = build_linear_expression(env, c);
jobject rhs
= build_java_linear_expression_coefficient(env, -c.inhomogeneous_term());
jfieldID fID;
switch (c.type()) {
case Constraint::EQUALITY:
fID = cached_FMIDs.Relation_Symbol_EQUAL_ID;
break;
case Constraint::NONSTRICT_INEQUALITY:
fID = cached_FMIDs.Relation_Symbol_GREATER_OR_EQUAL_ID;
break;
case Constraint::STRICT_INEQUALITY:
fID = cached_FMIDs.Relation_Symbol_GREATER_THAN_ID;
break;
default:
PPL_UNREACHABLE;
}
jobject relation
= env->GetStaticObjectField(cached_classes.Relation_Symbol, fID);
jobject ret = env->NewObject(cached_classes.Constraint,
cached_FMIDs.Constraint_init_ID,
lhs, relation, rhs);
CHECK_RESULT_THROW(env, ret);
return ret;
}
jobject
build_java_congruence(JNIEnv* env, const Congruence& cg) {
jobject j_mod = build_java_coeff(env, cg.modulus());
jobject j_lhs = build_linear_expression(env, cg);
jobject j_rhs
= build_java_linear_expression_coefficient(env, -cg.inhomogeneous_term());
jobject ret = env->NewObject(cached_classes.Congruence,
cached_FMIDs.Congruence_init_ID,
j_lhs, j_rhs, j_mod);
CHECK_RESULT_THROW(env, ret);
return ret;
}
jobject
build_java_generator(JNIEnv* env, const Generator& g) {
jobject j_g_le = build_linear_expression(env, g);
jobject ret;
switch (g.type()) {
case Generator::LINE:
ret = env->CallStaticObjectMethod(cached_classes.Generator,
cached_FMIDs.Generator_line_ID,
j_g_le);
break;
case Generator::RAY:
ret = env->CallStaticObjectMethod(cached_classes.Generator,
cached_FMIDs.Generator_ray_ID,
j_g_le);
break;
case Generator::POINT:
{
const Coefficient& divisor = g.divisor();
jobject j_div = build_java_coeff(env, divisor);
ret = env->CallStaticObjectMethod(cached_classes.Generator,
cached_FMIDs.Generator_point_ID,
j_g_le, j_div);
break;
}
case Generator::CLOSURE_POINT:
{
const Coefficient& divisor = g.divisor();
jobject j_div = build_java_coeff(env, divisor);
ret = env->CallStaticObjectMethod(cached_classes.Generator,
cached_FMIDs.Generator_closure_point_ID,
j_g_le, j_div);
break;
}
default:
PPL_UNREACHABLE;
}
CHECK_EXCEPTION_THROW(env);
return ret;
}
jobject
build_java_grid_generator(JNIEnv* env, const Grid_Generator& g) {
jobject j_g_le = build_linear_expression(env, g);
jobject ret;
switch (g.type()) {
case Grid_Generator::LINE:
ret = env->CallStaticObjectMethod(cached_classes.Grid_Generator,
cached_FMIDs.Grid_Generator_grid_line_ID,
j_g_le);
break;
case Grid_Generator::PARAMETER:
{
const Coefficient& divisor = g.divisor();
jobject j_div = build_java_coeff(env, divisor);
ret = env->CallStaticObjectMethod(cached_classes.Grid_Generator,
cached_FMIDs.Grid_Generator_parameter_ID,
j_g_le, j_div);
break;
}
case Grid_Generator::POINT:
{
const Coefficient& divisor = g.divisor();
jobject j_div = build_java_coeff(env, divisor);
ret = env->CallStaticObjectMethod(cached_classes.Grid_Generator,
cached_FMIDs.Grid_Generator_grid_point_ID,
j_g_le, j_div);
break;
}
default:
PPL_UNREACHABLE;
}
CHECK_EXCEPTION_THROW(env);
return ret;
}
jobject
build_java_constraint_system(JNIEnv* env, const Constraint_System& cs) {
jobject j_cs = env->NewObject(cached_classes.Constraint_System,
cached_FMIDs.Constraint_System_init_ID);
CHECK_RESULT_THROW(env, j_cs);
for (Constraint_System::const_iterator v_begin = cs.begin(),
v_end = cs.end(); v_begin != v_end; ++v_begin) {
jobject j_constraint = build_java_constraint(env, *v_begin);
env->CallBooleanMethod(j_cs,
cached_FMIDs.Constraint_System_add_ID,
j_constraint);
CHECK_EXCEPTION_THROW(env);
}
return j_cs;
}
jobject
build_java_generator_system(JNIEnv* env, const Generator_System& gs) {
jobject j_gs = env->NewObject(cached_classes.Generator_System,
cached_FMIDs.Generator_System_init_ID);
CHECK_RESULT_THROW(env, j_gs);
for (Generator_System::const_iterator v_begin = gs.begin(),
v_end = gs.end(); v_begin != v_end; ++v_begin) {
jobject j_generator = build_java_generator(env, *v_begin);
env->CallBooleanMethod(j_gs,
cached_FMIDs.Generator_System_add_ID,
j_generator);
CHECK_EXCEPTION_THROW(env);
}
return j_gs;
}
jobject
build_java_grid_generator_system(JNIEnv* env,
const Grid_Generator_System& gs) {
jobject j_gs = env->NewObject(cached_classes.Grid_Generator_System,
cached_FMIDs.Grid_Generator_System_init_ID);
CHECK_RESULT_THROW(env, j_gs);
for (Grid_Generator_System::const_iterator v_begin = gs.begin(),
v_end = gs.end(); v_begin != v_end; ++v_begin) {
jobject j_generator = build_java_grid_generator(env, *v_begin);
env->CallBooleanMethod(j_gs,
cached_FMIDs.Grid_Generator_System_add_ID,
j_generator);
CHECK_EXCEPTION_THROW(env);
}
return j_gs;
}
jobject
build_java_congruence_system(JNIEnv* env, const Congruence_System& cgs) {
jobject j_cgs = env->NewObject(cached_classes.Congruence_System,
cached_FMIDs.Congruence_System_init_ID);
CHECK_RESULT_THROW(env, j_cgs);
for (Congruence_System::const_iterator v_begin = cgs.begin(),
v_end = cgs.end(); v_begin != v_end; ++v_begin) {
jobject j_congruence = build_java_congruence(env,*v_begin);
env->CallBooleanMethod(j_cgs,
cached_FMIDs.Congruence_System_add_ID,
j_congruence);
CHECK_EXCEPTION_THROW(env);
}
return j_cgs;
}
jobject
build_java_artificial_parameter
(JNIEnv* env, const PIP_Tree_Node::Artificial_Parameter& art) {
jobject j_le = build_linear_expression(env, art);
jobject j_den = build_java_coeff(env, art.denominator());
jobject ret = env->NewObject(cached_classes.Artificial_Parameter,
cached_FMIDs.Artificial_Parameter_init_ID,
j_le, j_den);
CHECK_RESULT_THROW(env, ret);
return ret;
}
void
Java_Variable_output_function(std::ostream& s, Variable v) {
// Use cached Java Virtual Machine pointer to retrieve JNI env.
JavaVM* jvm = cached_classes.jvm;
JNIEnv *env = 0;
jvm->AttachCurrentThread((void **)&env, NULL);
CHECK_EXCEPTION_ASSERT(env);
// Retrieve stringifier object.
jclass var_class = cached_classes.Variable;
jfieldID fID = cached_FMIDs.Variable_stringifier_ID;
jobject stringifier = env->GetStaticObjectField(var_class, fID);
CHECK_RESULT_THROW(env, stringifier);
// Use it to get the Java string for the variable.
jmethodID mID = cached_FMIDs.Variable_Stringifier_stringify_ID;
#ifndef NDEBUG
{
// Dynamically retrieve stringifier class and use it to compute
// the corresponding method ID, so as to compare it with cached one.
jclass dyn_class = env->GetObjectClass(stringifier);
jmethodID dyn_mID = env->GetMethodID(dyn_class, "stringify",
"(J)Ljava/lang/String;");
CHECK_RESULT_ASSERT(env, mID == dyn_mID);
}
#endif // #ifndef NDEBUG
jlong j_var_id = v.id();
jstring bi_string
= (jstring) env->CallObjectMethod(stringifier, mID, j_var_id);
CHECK_EXCEPTION_THROW(env);
// Convert the string and print it on C++ stream.
const char* nativeString = env->GetStringUTFChars(bi_string, 0);
CHECK_RESULT_THROW(env, nativeString);
s << nativeString;
env->ReleaseStringUTFChars(bi_string, nativeString);
}
} // namespace Java
} // namespace Interfaces
} // namespace Parma_Polyhedra_Library
|