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 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781
|
%rr_intrusive_ptr(RobotRaconteur::MessageElement)
%shared_ptr(RobotRaconteur::RobotRaconteurNode);
%rename("%(firstlowercase)s", %$isfunction) "";
%typemap("javaimports") RobotRaconteur::RobotRaconteurNode
%{
import java.util.*;
%}
%typemap("javacode") RobotRaconteur::RobotRaconteurNode
%{
//Typemap start
private static RobotRaconteurNode csharp_s=null;
public static RobotRaconteurNode s()
{
if (csharp_s == null)
{
csharp_s = _get_s();
}
return csharp_s;
}
public final NodeID getNodeID()
{
return _NodeID();
}
public final void setNodeID(NodeID value)
{
_SetNodeID(value);
}
public final String getNodeName()
{
return _NodeName();
}
public final void setNodeName(String value)
{
_SetNodeName(value);
}
private java.util.HashMap<String, ServiceFactory> servicetypes = new java.util.HashMap<String,ServiceFactory>();
public final void registerServiceType(ServiceFactory servicetype)
{
synchronized (servicetypes)
{
servicetypes.put(servicetype.getServiceName(), servicetype);
_RegisterServiceType(servicetype.serviceDef());
}
}
public final ServiceFactory getServiceType(String servicename)
{
synchronized (servicetypes)
{
/*try
{
if (!servicetypes.containsKey(servicename))
{
String factoryname=servicename + "." + servicename.replace(".","__") + "Factory";
Class factoryclass=Class.forName(factoryname);
java.lang.reflect.Constructor constructor=factoryclass.getConstructor(new Class[] {});
ServiceFactory factory=(ServiceFactory)constructor.newInstance();
if (factory.getServiceName()==servicename)
{
servicetypes.put(servicename,factory);
}
}
}
catch (Exception e)
{
} */
try
{
ServiceFactory f= servicetypes.get(servicename);
if (f==null) throw new ServiceException("Could not find service type " + servicename);
return f;
}
catch (Exception e)
{
throw new ServiceException("Could not find service type " + servicename);
}
}
}
public final ServiceFactory getServiceFactory(String servicename)
{
return getServiceType(servicename);
}
public Object connectService(String url, String username, java.util.HashMap<String, Object> credentials)
{
return connectService(url, username, credentials, null, null);
}
public Object connectService(String url, String username)
{
return connectService(url, username, null, null, null);
}
public Object connectService(String url)
{
return connectService(url, null, null, null, null);
}
public final Object connectService(String url, String username, Map<String, Object> credentials, Action3<ServiceStub, ClientServiceListenerEventType, Object> listener)
{
return connectService(url, username, credentials, listener, null);
}
public final Object connectService(String url, String username, Map<String, Object> credentials, Action3<ServiceStub, ClientServiceListenerEventType, Object> listener, String objecttype)
{
MessageElementData credentials2 = null;
try
{
if (username == null)
{
username = "";
}
if (credentials != null)
{
credentials2 = (MessageElementData)packVarType(credentials);
}
ClientServiceListenerDirectorJava listener2 = null;
if (listener != null)
{
listener2 = new ClientServiceListenerDirectorJava(listener);
listener2.setObjectheapid(RRObjectHeap.addObject(listener2));
}
if (objecttype==null) objecttype="";
WrappedServiceStub s = _ConnectService(url, username, credentials2, listener2, objecttype);
ServiceStub s2 = getServiceType(s.getRR_objecttype().getServiceDefinition().getName()).createStub(s);
if (listener2 != null)
{
listener2.stub = s2;
}
return s2;
}
finally
{
if (credentials2!=null) credentials2.delete();
}
}
public Object connectService(String[] url, String username, java.util.HashMap<String, Object> credentials)
{
return connectService(url, username, credentials, null, null);
}
public Object connectService(String[] url, String username)
{
return connectService(url, username, null, null, null);
}
public Object connectService(String[] url)
{
return connectService(url, null, null, null, null);
}
public final Object connectService(String[] url, String username, java.util.HashMap<String, Object> credentials, Action3<ServiceStub, ClientServiceListenerEventType, Object> listener)
{
return connectService(url, username, credentials, listener, null);
}
public final Object connectService(String[] url, String username, java.util.HashMap<String, Object> credentials, Action3<ServiceStub, ClientServiceListenerEventType, Object> listener, String objecttype)
{
MessageElementData credentials2 = null;
try
{
if (username == null)
{
username = "";
}
if (credentials != null)
{
credentials2 = (MessageElementData)packVarType(credentials);
}
ClientServiceListenerDirectorJava listener2 = null;
if (listener != null)
{
listener2 = new ClientServiceListenerDirectorJava(listener);
listener2.setObjectheapid(RRObjectHeap.addObject(listener2));
}
vectorstring url2 = new vectorstring();
for (String ss : url)
{
url2.add(ss);
}
if (objecttype==null) objecttype="";
WrappedServiceStub s = _ConnectService(url2, username, credentials2, listener2, objecttype);
ServiceStub s2 = getServiceType(s.getRR_objecttype().getServiceDefinition().getName()).createStub(s);
if (listener2 != null)
{
listener2.stub = s2;
}
return s2;
}
finally
{
if (credentials2!=null) credentials2.delete();
}
}
public final void disconnectService(Object obj)
{
ServiceStub stub = (ServiceStub)obj;
_DisconnectService(stub.rr_innerstub);
}
public final java.util.HashMap<String, Object> getServiceAttributes(Object obj)
{
ServiceStub stub = (ServiceStub)obj;
MessageElement me=null;
try
{
me=_GetServiceAttributes(stub.rr_innerstub);
return (java.util.HashMap<String,Object>)unpackVarType(me);
}
finally
{
if (me!=null) me.delete();
}
}
public final NodeID getServiceNodeID(Object obj)
{
ServiceStub stub = (ServiceStub)obj;
return _GetServiceNodeID(stub.rr_innerstub);
}
public final String getServiceNodeName(Object obj)
{
ServiceStub stub = (ServiceStub)obj;
return _GetServiceNodeName(stub.rr_innerstub);
}
public final String getServiceName(Object obj)
{
ServiceStub stub = (ServiceStub)obj;
return _GetServiceName(stub.rr_innerstub);
}
public final String getObjectServicePath(Object obj)
{
ServiceStub stub = (ServiceStub)obj;
return _GetObjectServicePath(stub.rr_innerstub);
}
public final String getObjectType(Object obj)
{
ServiceStub stub = (ServiceStub)obj;
return _GetObjectType(stub.rr_innerstub);
}
public final MessageElementData packStructure(Object s)
{
if (s == null)
{
return null;
}
Class c;
if (s instanceof PodMultiDimArray)
{
PodMultiDimArray s2=(PodMultiDimArray)s;
c=s2.pod_array.getClass();
}
else if (s instanceof NamedMultiDimArray)
{
NamedMultiDimArray s2=(NamedMultiDimArray)s;
c=s2.namedarray_array.getClass();
}
else
{
c=s.getClass();
}
if (c.isArray())
{
c=c.getComponentType();
}
String servicename = RobotRaconteurNode.splitQualifiedName(getTypeString(c))[0];
ServiceFactory f = getServiceType(servicename);
return f.packStructure(s);
}
public final <T> T unpackStructure(MessageElementData l)
{
if (l == null)
{
return null;
}
String servicename = RobotRaconteurNode.splitQualifiedName(l.getTypeString())[0];
ServiceFactory f = getServiceType(servicename);
return f.<T>unpackStructure(l);
}
public final <T> T unpackStructureDispose(MessageElementData l)
{
try
{
return this.<T>unpackStructure(l);
}
finally
{
if (l!=null) l.delete();
}
}
private final <T> MessageElement packContainerValue(String name, Object data, Class<?> T_class)
{
if (data == null)
{
return null;
}
if (T_class == Object.class)
{
return MessageElementUtil.newMessageElementDispose(name, packVarType(data));
}
if (T_class == MultiDimArray.class)
{
return MessageElementUtil.newMessageElementDispose(name, packMultiDimArray((MultiDimArray)data));
}
if (T_class == PodMultiDimArray.class)
{
return MessageElementUtil.newMessageElementDispose(name, packStructure(data));
}
if (T_class == NamedMultiDimArray.class)
{
return MessageElementUtil.newMessageElementDispose(name, packStructure(data));
}
boolean is_array = T_class.isArray();
if (is_array)
{
if (T_class.getComponentType().isPrimitive())
{
return MessageElementUtil.newMessageElementDispose(name, data);
}
if (RRPod.class.isAssignableFrom(T_class.getComponentType()))
{
return MessageElementUtil.newMessageElementDispose(name, packStructure(data));
}
return MessageElementUtil.newMessageElementDispose(name, packVarType(data));
}
if (RRStructure.class.isAssignableFrom(T_class) || RRPod.class.isAssignableFrom(T_class) || RRNamedArray.class.isAssignableFrom(T_class))
{
return MessageElementUtil.newMessageElementDispose(name, packStructure(data));
}
return MessageElementUtil.newMessageElementDispose(name, packVarType(data));
}
private final <T> MessageElement packContainerValue(int number, Object data, Class<?> T_class)
{
MessageElement m=null;
try
{
m=packContainerValue("",data,T_class);
m.setElementNumber(number);
m.setElementFlags((short)( m.getElementFlags() & ~RobotRaconteurJava.getMessageElementFlags_ELEMENT_NAME_STR()));
m.setElementFlags((short)( m.getElementFlags() | RobotRaconteurJava.getMessageElementFlags_ELEMENT_NUMBER()));
return m;
}
catch(RuntimeException e)
{
if (m!=null) m.delete();
throw e;
}
}
private final <T> T unpackContainerValue(MessageElement e)
{
switch (e.getElementType())
{
case DataTypes_void_t:
return null;
case DataTypes_double_t:
case DataTypes_single_t:
case DataTypes_int8_t:
case DataTypes_uint8_t:
case DataTypes_int16_t:
case DataTypes_uint16_t:
case DataTypes_int32_t:
case DataTypes_uint32_t:
case DataTypes_int64_t:
case DataTypes_uint64_t:
case DataTypes_cdouble_t:
case DataTypes_csingle_t:
case DataTypes_bool_t:
return (T)e.getData();
case DataTypes_string_t:
return (T)e.getData();
case DataTypes_multidimarray_t:
return (T)unpackMultiDimArrayDispose((MessageElementNestedElementList)e.getData());
case DataTypes_pod_t:
{
vectorptr_messageelement m = new vectorptr_messageelement();
try
{
m.add(e);
return (T)unpackStructureDispose(new MessageElementNestedElementList(DataTypes.DataTypes_pod_array_t,e.getElementTypeName(),m));
}
finally
{
m.delete();
}
}
case DataTypes_structure_t:
case DataTypes_pod_array_t:
case DataTypes_pod_multidimarray_t:
case DataTypes_namedarray_array_t:
case DataTypes_namedarray_multidimarray_t:
return (T)unpackStructureDispose((MessageElementData)e.getData());
default:
throw new DataTypeException("Invalid container data type");
}
}
public final <Tkey, Tvalue> Object packMapType(Object data, Class<?> Tkey_class, Class<?> Tvalue_class)
{
if (data == null)
{
return null;
}
if (Tkey_class == Integer.class)
{
vectorptr_messageelement m = new vectorptr_messageelement();
try
{
java.util.HashMap<Tkey, Tvalue> ddata = (java.util.HashMap<Tkey, Tvalue>)data;
for (java.util.Map.Entry<Tkey, Tvalue> d : ddata.entrySet())
{
MessageElementUtil.addMessageElementDispose(m,packContainerValue((Integer)d.getKey(), d.getValue(), Tvalue_class));
}
return new MessageElementNestedElementList(DataTypes.DataTypes_vector_t,"",m);
}
finally
{
m.delete();
}
}
if (Tkey_class == String.class)
{
vectorptr_messageelement m = new vectorptr_messageelement();
try
{
java.util.HashMap<Tkey, Tvalue> ddata = (java.util.HashMap<Tkey, Tvalue>)data;
for (java.util.Map.Entry<Tkey, Tvalue> d : ddata.entrySet())
{
MessageElementUtil.addMessageElementDispose(m,packContainerValue((String)d.getKey(), d.getValue(), Tvalue_class));
}
return new MessageElementNestedElementList(DataTypes.DataTypes_dictionary_t,"",m);
}
finally
{
m.delete();
}
}
throw new RuntimeException(new DataTypeException("Indexed types can only be indexed by int32 and string"));
}
public final <Tkey, Tvalue> Object unpackMapType(Object data)
{
if (data == null)
{
return null;
}
if (((MessageElementData)data).getTypeID() == DataTypes.DataTypes_vector_t)
{
java.util.HashMap<Integer, Tvalue> o = new java.util.HashMap<Integer, Tvalue>();
MessageElementNestedElementList cdata = (MessageElementNestedElementList)data;
vectorptr_messageelement m=cdata.getElements();
try
{
for (int i=0; i<m.size(); i++)
{
MessageElement e=m.get(i);
try
{
o.put(MessageElementUtil.getMessageElementNumber(e), (Tvalue)unpackContainerValue(e));
}
finally
{
if (e!=null) e.delete();
}
}
return o;
}
finally
{
if (m!=null) m.delete();
}
}
else if (((MessageElementData)data).getTypeID() == DataTypes.DataTypes_dictionary_t)
{
java.util.HashMap<String, Tvalue> o = new java.util.HashMap<String, Tvalue>();
MessageElementNestedElementList cdata = (MessageElementNestedElementList)data;
vectorptr_messageelement m=cdata.getElements();
try
{
for (int i=0; i<m.size(); i++)
{
MessageElement e=m.get(i);
try
{
o.put(e.getElementName(), (Tvalue)unpackContainerValue(e));
}
finally
{
if (e!=null) e.delete();
}
}
return o;
}
finally
{
if (m!=null) m.delete();
}
}
else
{
throw new RuntimeException(new DataTypeException("Indexed types can only be indexed by int32 and string"));
}
}
//List types
public final <Tkey, Tvalue> Object unpackMapTypeDispose(Object data)
{
try
{
return this.<Tkey,Tvalue>unpackMapType(data);
}
finally
{
if (data !=null)
{
if (data instanceof MessageElementData)
{
((MessageElementData)data).delete();
}
}
}
}
public final <Tvalue> Object packListType(Object data,Class<?> Tvalue_class)
{
if (data == null)
{
return null;
}
DataTypes stype;
vectorptr_messageelement m = new vectorptr_messageelement();
try
{
java.util.List< Tvalue> ddata = (java.util.List<Tvalue>)data;
int count=0;
for (Tvalue d : ddata)
{
MessageElementUtil.addMessageElementDispose(m,packContainerValue(count, d, Tvalue_class));
count++;
}
return new MessageElementNestedElementList(DataTypes.DataTypes_list_t,"",m);
}
finally
{
m.delete();
}
}
public final <Tvalue> Object unpackListType(Object data)
{
if (data == null)
{
return null;
}
java.util.List<Tvalue> o = new java.util.ArrayList<Tvalue>();
MessageElementNestedElementList cdata = (MessageElementNestedElementList)data;
vectorptr_messageelement m=cdata.getElements();
try
{
for (int i=0; i<m.size(); i++)
{
MessageElement e=m.get(i);
if (MessageElementUtil.getMessageElementNumber(e) != i)
throw new DataTypeException("Error in list format");
try
{
o.add((Tvalue)unpackContainerValue(e));
}
finally
{
e.delete();
}
}
return o;
}
finally
{
if (m!=null) m.delete();
}
}
public final <Tvalue> Object unpackListTypeDispose(Object data)
{
try
{
return this.<Tvalue>unpackListType(data);
}
finally
{
if (data!=null)
{
if (data instanceof MessageElementData)
{
((MessageElementData)data).delete();
}
}
}
}
/**
Packs a varvalue data. This can handle any type supported by the node
@param data The data to be packed
@return The packed data for use with MessageElement.Data
*/
public final Object packVarType(Object data)
{
if (data == null)
{
return null;
}
if (data instanceof java.util.Map<?, ?>)
{
Map<?,?> datamap=(Map<?,?>)(data);
if (datamap.size()==0)
{
return packMapType(data, Integer.class, Object.class);
}
else
{
Class<?> Tkey=datamap.keySet().iterator().next().getClass();
if (Tkey==Integer.class)
{
return packMapType(data, Integer.class, Object.class);
}
else if (Tkey==String.class)
{
return packMapType(data, String.class, Object.class);
}
else
{
throw new RuntimeException(new DataTypeException("Could not pack varvalue"));
}
}
}
if (data instanceof java.util.List<?>)
{
return packListType(data, Object.class);
}
if (data instanceof MultiDimArray)
{
return packMultiDimArray((MultiDimArray)data);
}
if (data instanceof PodMultiDimArray)
{
return packStructure(data);
}
if (data instanceof NamedMultiDimArray)
{
return packStructure(data);
}
if (data instanceof RRStructure || data instanceof RRPod || data instanceof RRPod[])
{
return packStructure(data);
}
if (data instanceof RRNamedArray || data instanceof RRNamedArray[])
{
return packStructure(data);
}
if (data instanceof String)
{
return data;
}
if (data instanceof Number || data instanceof byte[] || data instanceof short[] || data instanceof int[] || data instanceof long[]
|| data instanceof double[] || data instanceof float[]
|| data instanceof UnsignedByte || data instanceof UnsignedBytes || data instanceof UnsignedInt || data instanceof UnsignedInts
|| data instanceof UnsignedLong || data instanceof UnsignedLongs || data instanceof CDouble || data instanceof CDouble[]
|| data instanceof CSingle || data instanceof CSingle[] || data instanceof Boolean || data instanceof boolean[]
)
{
return data;
}
throw new DataTypeException("Could not pack varvalue");
}
/**
Unpacks a varvalue from a MessageElement. This can unpack any type supported by the node
@param me The message element containing the data
@return The unpacked data
*/
public final Object unpackVarType(MessageElement me)
{
if (me == null)
{
return null;
}
switch (me.getElementType())
{
case DataTypes_void_t:
return null;
case DataTypes_double_t:
case DataTypes_single_t:
case DataTypes_int8_t:
case DataTypes_uint8_t:
case DataTypes_int16_t:
case DataTypes_uint16_t:
case DataTypes_int32_t:
case DataTypes_uint32_t:
case DataTypes_int64_t:
case DataTypes_uint64_t:
case DataTypes_cdouble_t:
case DataTypes_csingle_t:
case DataTypes_bool_t:
return me.getData();
case DataTypes_string_t:
return me.getData();
case DataTypes_multidimarray_t:
return unpackMultiDimArrayDispose((MessageElementNestedElementList)me.getData());
case DataTypes_pod_t:
{
vectorptr_messageelement m = new vectorptr_messageelement();
try
{
m.add(me);
return (Object)unpackStructureDispose(new MessageElementNestedElementList(DataTypes.DataTypes_pod_array_t,me.getElementTypeName(),m));
}
finally
{
m.delete();
}
}
case DataTypes_structure_t:
case DataTypes_pod_array_t:
case DataTypes_pod_multidimarray_t:
case DataTypes_namedarray_array_t:
case DataTypes_namedarray_multidimarray_t:
return unpackStructureDispose((MessageElementData)me.getData());
case DataTypes_vector_t:
return this.<Integer, Object>unpackMapType(me.getData());
case DataTypes_dictionary_t:
return this.<String, Object>unpackMapType(me.getData());
case DataTypes_list_t:
return this.<Object>unpackListType(me.getData());
default:
throw new DataTypeException("Invalid varvalue data type");
}
}
public final Object unpackVarTypeDispose(MessageElement me)
{
try
{
return unpackVarType(me);
}
finally
{
if (me!=null)
{
me.delete();
}
}
}
/**
Packs a MultiDimArray into a MessageElementNestedElementList
@param array The array to be packed
@return A packed array for use with MessageElement.Data
*/
public final MessageElementNestedElementList packMultiDimArray(MultiDimArray array)
{
if (array == null)
{
return null;
}
vectorptr_messageelement l = new vectorptr_messageelement();
try
{
MessageElementUtil.addMessageElementDispose(l,"dims", new UnsignedInts(array.dims));
MessageElementUtil.addMessageElementDispose(l,"array", array.array);
return new MessageElementNestedElementList(DataTypes.DataTypes_multidimarray_t,"",l);
}
finally
{
l.delete();
}
}
/**
Unpacks a MessageElementNestedElementList and returns unpacked multidim array
@param marray The MessageElementNestedElementList to unpack
@return The unpacked multidim array
*/
public final MultiDimArray unpackMultiDimArray(MessageElementNestedElementList marray)
{
if (marray == null)
{
return null;
}
vectorptr_messageelement marrayElements=marray.getElements();
try
{
MultiDimArray m = new MultiDimArray();
m.dims = (MessageElementUtil.<UnsignedInts>findElementAndCast(marrayElements, "dims")).value;
m.array = (MessageElementUtil.<Object>findElementAndCast(marrayElements, "array"));
return m;
}
finally
{
if (marrayElements!=null) marrayElements.delete();
}
}
public final MultiDimArray unpackMultiDimArrayDispose(MessageElementNestedElementList marray)
{
try
{
return unpackMultiDimArray(marray);
}
finally
{
if (marray!=null) marray.delete();
}
}
public final String requestObjectLock(Object obj, RobotRaconteurObjectLockFlags flags)
{
if (!(obj instanceof ServiceStub))
{
throw new UnsupportedOperationException("Can only lock object opened through Robot Raconteur");
}
ServiceStub s = (ServiceStub)obj;
return _RequestObjectLock(s.rr_innerstub, flags);
}
public final String releaseObjectLock(Object obj)
{
if (!(obj instanceof ServiceStub))
{
throw new UnsupportedOperationException("Can only unlock object opened through Robot Raconteur");
}
ServiceStub s = (ServiceStub)obj;
return _ReleaseObjectLock(s.rr_innerstub);
}
public final void asyncRequestObjectLock(Object obj, RobotRaconteurObjectLockFlags flags, Action2<String,RuntimeException> handler)
{
asyncRequestObjectLock(obj,flags,handler,-1);
}
public final void asyncRequestObjectLock(Object obj, RobotRaconteurObjectLockFlags flags, Action2<String,RuntimeException> handler, int timeout)
{
if (!(obj instanceof ServiceStub))
{
throw new UnsupportedOperationException("Can only lock object opened through Robot Raconteur");
}
ServiceStub s = (ServiceStub)obj;
AsyncStringReturnDirectorImpl h=new AsyncStringReturnDirectorImpl(handler);
int id=RRObjectHeap.addObject(h);
_AsyncRequestObjectLock(s.rr_innerstub, flags,timeout,h,id);
}
public final void asyncReleaseObjectLock(Object obj, Action2<String,RuntimeException> handler)
{
asyncReleaseObjectLock(obj,handler,-1);
}
public final void asyncReleaseObjectLock(Object obj, Action2<String,RuntimeException> handler, int timeout)
{
if (!(obj instanceof ServiceStub))
{
throw new UnsupportedOperationException("Can only lock object opened through Robot Raconteur");
}
ServiceStub s = (ServiceStub)obj;
AsyncStringReturnDirectorImpl h=new AsyncStringReturnDirectorImpl(handler);
int id=RRObjectHeap.addObject(h);
_AsyncReleaseObjectLock(s.rr_innerstub, timeout,h,id);
}
public void monitorEnter(Object obj)
{
monitorEnter(obj, -1);
}
public final void monitorEnter(Object obj, int timeout)
{
if (!(obj instanceof ServiceStub))
{
throw new UnsupportedOperationException("Only service stubs can be monitored by RobotRaconteurNode");
}
ServiceStub s = (ServiceStub)obj;
_MonitorEnter(s.rr_innerstub, timeout);
}
public final void monitorExit(Object obj)
{
if (!(obj instanceof ServiceStub))
{
throw new UnsupportedOperationException("Only service stubs can be monitored by RobotRaconteurNode");
}
ServiceStub s = (ServiceStub)obj;
_MonitorExit(s.rr_innerstub);
}
public final ServiceInfo2[] findServiceByType(String servicetype, String[] transportschemes)
{
vectorstring s = new vectorstring();
for (String s2 : transportschemes)
{
s.add(s2);
}
vectorserviceinfo2wrapped i = RobotRaconteurJava.wrappedFindServiceByType(this, servicetype, s);
java.util.ArrayList<ServiceInfo2> o = new java.util.ArrayList<ServiceInfo2>();
for (int j=0; j<i.size(); j++)
{
ServiceInfo2Wrapped i2=i.get(j);
ServiceInfo2 i3 = new ServiceInfo2(i2);
o.add(i3);
}
return o.toArray(new ServiceInfo2[0]);
}
public final NodeInfo2[] findNodeByID(NodeID id, String[] transportschemes)
{
vectorstring s = new vectorstring();
for (String s2 : transportschemes)
{
s.add(s2);
}
vectornodeinfo2 i = RobotRaconteurJava.wrappedFindNodeByID(this, id, s);
java.util.ArrayList<NodeInfo2> o = new java.util.ArrayList<NodeInfo2>();
for (int j=0; j<i.size(); j++)
{
WrappedNodeInfo2 i2=i.get(j);
NodeInfo2 i3 = new NodeInfo2(i2);
o.add(i3);
}
return o.toArray(new NodeInfo2[0]);
}
public final NodeInfo2[] findNodeByName(String name, String[] transportschemes)
{
vectorstring s = new vectorstring();
for (String s2 : transportschemes)
{
s.add(s2);
}
vectornodeinfo2 i = RobotRaconteurJava.wrappedFindNodeByName(this, name, s);
java.util.ArrayList<NodeInfo2> o = new java.util.ArrayList<NodeInfo2>();
for (int j=0; j<i.size(); j++)
{
WrappedNodeInfo2 i2=i.get(j);
NodeInfo2 i3 = new NodeInfo2(i2);
o.add(i3);
}
return o.toArray(new NodeInfo2[0]);
}
public ServerContext registerService(String name, String servicetype, Object obj)
{
return registerService(name, servicetype, obj, null);
}
public final ServerContext registerService(String name, String servicetype, Object obj, ServiceSecurityPolicy policy)
{
ServiceSkel skel = getServiceType(servicetype).createSkel(obj);
int id = RRObjectHeap.addObject(skel);
skel.innerskelid = id;
WrappedRRObject o = new WrappedRRObject(skel.getRRType(), skel, id);
return _RegisterService(name, servicetype, o,policy);
}
public TimeSpec nowUTC()
{
return _NowUTC();
}
public TimeSpec nowNodeTime()
{
return _NowNodeTime();
}
public TimeSpec nodeSyncTimeUTC()
{
return _NodeSyncTimeUTC();
}
public TimeSpec nodeSyncTimeSpec()
{
return _NodeSyncTimeSpec();
}
public TimeSpec nowTimeSpec()
{
return _NowTimeSpec();
}
public final Object findObjRefTyped(Object obj, String objref, String objecttype)
{
if (!(obj instanceof ServiceStub))
{
throw new UnsupportedOperationException("Only service stubs can have objref");
}
ServiceStub s = (ServiceStub)obj;
return s.findObjRefTyped(objref,objecttype);
}
public final Object findObjRefTyped(Object obj, String objref, String index, String objecttype)
{
if (!(obj instanceof ServiceStub))
{
throw new UnsupportedOperationException("Only service stubs can have objref");
}
ServiceStub s = (ServiceStub)obj;
return s.findObjRefTyped(objref,index,objecttype);
}
//Typemap end
public final void shutdown()
{
this._Shutdown();
RRNativeObjectHeapSupport.set_Support(null);
}
public final void asyncConnectService(String url, String username, Map<String, Object> credentials, Action3<ServiceStub, ClientServiceListenerEventType, Object> listener, String objecttype, Action2<Object,RuntimeException> handler)
{
asyncConnectService(url,username,credentials,listener,objecttype,handler,-1);
}
public final void asyncConnectService(String url, String username, Map<String, Object> credentials, Action3<ServiceStub, ClientServiceListenerEventType, Object> listener, String objecttype, Action2<Object,RuntimeException> handler, int timeout)
{
MessageElementData credentials2 = null;
try
{
if (username == null)
{
username = "";
}
if (credentials != null)
{
credentials2 = (MessageElementData)packVarType(credentials);
}
ClientServiceListenerDirectorJava listener2 = null;
if (listener != null)
{
listener2 = new ClientServiceListenerDirectorJava(listener);
listener2.setObjectheapid(RRObjectHeap.addObject(listener2));
}
if (objecttype==null) objecttype="";
AsyncStubReturnDirectorImpl<Object> h=new AsyncStubReturnDirectorImpl<Object>(handler);
int id1=RRObjectHeap.addObject(h);
_AsyncConnectService(url, username, credentials2, listener2, objecttype,timeout,h,id1);
}
finally
{
if (credentials2!=null) credentials2.delete();
}
}
public final void asyncConnectService(String[] url, String username, Map<String, Object> credentials, Action3<ServiceStub, ClientServiceListenerEventType, Object> listener, String objecttype, Action2<Object,RuntimeException> handler)
{
asyncConnectService(url,username,credentials,listener,objecttype,handler,-1);
}
public final void asyncConnectService(String[] url, String username, Map<String, Object> credentials, Action3<ServiceStub, ClientServiceListenerEventType, Object> listener, String objecttype, Action2<Object,RuntimeException> handler, int timeout)
{
MessageElementData credentials2 = null;
try
{
if (username == null)
{
username = "";
}
if (credentials != null)
{
credentials2 = (MessageElementData)packVarType(credentials);
}
ClientServiceListenerDirectorJava listener2 = null;
if (listener != null)
{
listener2 = new ClientServiceListenerDirectorJava(listener);
listener2.setObjectheapid(RRObjectHeap.addObject(listener2));
}
if (objecttype==null) objecttype="";
AsyncStubReturnDirectorImpl<Object> h=new AsyncStubReturnDirectorImpl<Object>(handler);
int id1=RRObjectHeap.addObject(h);
vectorstring url1=new vectorstring();
for (int i=0; i<url.length; i++)
{
url1.add(url[i]);
}
_AsyncConnectService(url1, username, credentials2, listener2, objecttype,timeout,h,id1);
}
finally
{
if (credentials2!=null) credentials2.delete();
}
}
public final void asyncDisconnectService(Object obj, Action handler, int timeout)
{
ServiceStub stub = (ServiceStub)obj;
AsyncVoidNoErrReturnDirectorImpl h = new AsyncVoidNoErrReturnDirectorImpl(handler);
int id = RRObjectHeap.addObject(h);
_AsyncDisconnectService(stub.rr_innerstub,h,id);
}
private class AsyncServiceInfo2DirectorImpl extends AsyncServiceInfo2VectorReturnDirector
{
protected Action1<ServiceInfo2[]> handler_func;
public AsyncServiceInfo2DirectorImpl(Action1<ServiceInfo2[]> handler_func)
{
this.handler_func=handler_func;
}
@Override
public void handler(vectorserviceinfo2wrapped i)
{
try
{
java.util.ArrayList<ServiceInfo2> o=new java.util.ArrayList<ServiceInfo2>();
ServiceInfo2[] o2=new ServiceInfo2[0];
try
{
for (int ii=0; ii!=i.size(); ii++)
{
o.add(new ServiceInfo2(i.get(ii)));
}
o2=o.toArray(new ServiceInfo2[0]);
}
catch (Exception e)
{
handler_func.action(new ServiceInfo2[0]);
}
handler_func.action(o2);
}
catch (Exception e)
{
MessageEntry merr = new MessageEntry();
RobotRaconteurExceptionUtil.exceptionToMessageEntry(e, merr);
RRDirectorExceptionHelper.setError(merr,RRDirectorExceptionHelper.exceptionToStackTraceString(e));
merr.delete();
}
}
}
private class AsyncNodeInfo2DirectorImpl extends AsyncNodeInfo2VectorReturnDirector
{
protected Action1<NodeInfo2[]> handler_func;
public AsyncNodeInfo2DirectorImpl(Action1<NodeInfo2[]> handler_func)
{
this.handler_func=handler_func;
}
@Override
public void handler(vectornodeinfo2 i)
{
try
{
java.util.ArrayList<NodeInfo2> o=new java.util.ArrayList<NodeInfo2>();
NodeInfo2[] o2=new NodeInfo2[0];
try
{
for (int ii=0; ii!=i.size(); ii++)
{
o.add(new NodeInfo2(i.get(ii)));
}
o2=o.toArray(new NodeInfo2[0]);
}
catch (Exception e)
{
handler_func.action(new NodeInfo2[0]);
}
handler_func.action(o2);
}
catch (Exception e)
{
MessageEntry merr = new MessageEntry();
RobotRaconteurExceptionUtil.exceptionToMessageEntry(e, merr);
RRDirectorExceptionHelper.setError(merr,RRDirectorExceptionHelper.exceptionToStackTraceString(e));
merr.delete();
}
}
}
public final void asyncFindServiceByType(String servicetype, String[] transportschemes, Action1<ServiceInfo2[]> handler)
{
asyncFindServiceByType(servicetype,transportschemes,handler,-1);
}
public final void asyncFindServiceByType(String servicetype, String[] transportschemes, Action1<ServiceInfo2[]> handler, int timeout)
{
vectorstring s = new vectorstring();
for (String s2 : transportschemes)
{
s.add(s2);
}
AsyncServiceInfo2DirectorImpl h=new AsyncServiceInfo2DirectorImpl(handler);
int id1=RRObjectHeap.addObject(h);
RobotRaconteurJava.asyncWrappedFindServiceByType(this,servicetype, s, timeout, h, id1);
}
public final void asyncFindNodeByID(NodeID id, String[] transportschemes, Action1<NodeInfo2[]> handler)
{
asyncFindNodeByID(id,transportschemes,handler,-1);
}
public final void asyncFindNodeByID(NodeID id, String[] transportschemes, Action1<NodeInfo2[]> handler, int timeout)
{
vectorstring s = new vectorstring();
for (String s2 : transportschemes)
{
s.add(s2);
}
AsyncNodeInfo2DirectorImpl h=new AsyncNodeInfo2DirectorImpl(handler);
int id1=RRObjectHeap.addObject(h);
RobotRaconteurJava.asyncWrappedFindNodeByID(this,id, s,timeout,h,id1);
}
public final void asyncFindNodeByName(String name, String[] transportschemes, Action1<NodeInfo2[]> handler)
{
asyncFindNodeByName(name,transportschemes,handler,-1);
}
public final void asyncFindNodeByName(String name, String[] transportschemes, Action1<NodeInfo2[]> handler, int timeout)
{
vectorstring s = new vectorstring();
for (String s2 : transportschemes)
{
s.add(s2);
}
AsyncNodeInfo2DirectorImpl h=new AsyncNodeInfo2DirectorImpl(handler);
int id1=RRObjectHeap.addObject(h);
RobotRaconteurJava.asyncWrappedFindNodeByName(this, name, s,timeout,h,id1);
}
public final void updateDetectedNodes(String[] schemes)
{
vectorstring schemes1=new vectorstring();
for(String s : schemes) schemes1.add(s);
RobotRaconteurJava.wrappedUpdateDetectedNodes(this, schemes1);
}
public final void asyncUpdateDetectedNodes(String[] schemes, Action handler)
{
asyncUpdateDetectedNodes(schemes, handler, 5000);
}
public final void asyncUpdateDetectedNodes(String[] schemes, Action handler, int timeout)
{
vectorstring schemes1=new vectorstring();
for(String s : schemes) schemes1.add(s);
AsyncVoidNoErrReturnDirectorImpl h = new AsyncVoidNoErrReturnDirectorImpl(handler);
int id = RRObjectHeap.addObject(h);
RobotRaconteurJava.asyncWrappedUpdateDetectedNodes(this, schemes1, timeout,h,id);
}
public final NodeID[] getDetectedNodes()
{
vectorstring o1 = RobotRaconteurJava.wrappedGetDetectedNodes(this);
NodeID[] o = new NodeID[(int)o1.size()];
for (int i = 0; i < o.length; i++)
{
o[i] = new NodeID(o1.get(i));
}
return o;
}
public final NodeInfo2 getDetectedNodeCacheInfo(NodeID nodeid)
{
return new NodeInfo2(RobotRaconteurJava.wrappedGetDetectedNodeCacheInfo(this,nodeid));
}
public void asyncFindObjRefTyped(Object obj, String objref, String objecttype, Action2<Object,RuntimeException> handler)
{
asyncFindObjRefTyped(obj,objref,objecttype,handler,-1);
}
public void asyncFindObjRefTyped(Object obj, String objref, String objecttype, Action2<Object,RuntimeException> handler, int timeout)
{
if (!(obj instanceof ServiceStub)) throw new RuntimeException("Only service stubs can have objref");
ServiceStub s = (ServiceStub)obj;
s.asyncFindObjRefTyped(objref, objecttype, handler, timeout);
}
public void asyncFindObjRefTyped(Object obj, String objref, String index, String objecttype, Action2<Object,RuntimeException> handler)
{
asyncFindObjRefTyped(obj,objref,index,objecttype,handler,-1);
}
public void asyncFindObjRefTyped(Object obj, String objref, String index, String objecttype, Action2<Object,RuntimeException> handler, int timeout)
{
if (!(obj instanceof ServiceStub)) throw new RuntimeException("Only service stubs can have objref");
ServiceStub s = (ServiceStub)obj;
s.asyncFindObjRefTyped(objref, index, objecttype,handler,timeout);
}
public String findObjectType(Object obj, String objref)
{
if (!(obj instanceof ServiceStub)) throw new RuntimeException("Only service stubs can have objref");
ServiceStub s = (ServiceStub)obj;
return _FindObjectType(s.rr_innerstub, objref);
}
public String findObjectType(Object obj, String objref, String index)
{
if (!(obj instanceof ServiceStub)) throw new RuntimeException("Only service stubs can have objref");
ServiceStub s = (ServiceStub)obj;
return _FindObjectType(s.rr_innerstub, objref, index);
}
public void asyncFindObjectType(Object obj, String objref, Action2<String,RuntimeException> handler)
{
asyncFindObjectType(obj,objref,handler,-1);
}
public void asyncFindObjectType(Object obj, String objref, Action2<String,RuntimeException> handler, int timeout)
{
if (!(obj instanceof ServiceStub)) throw new RuntimeException("Only service stubs can have objref");
ServiceStub s = (ServiceStub)obj;
AsyncStringReturnDirectorImpl h = new AsyncStringReturnDirectorImpl(handler);
int id2 = RRObjectHeap.addObject(h);
_AsyncFindObjectType(s.rr_innerstub, objref,timeout,h,id2);
}
public void asyncFindObjectType(Object obj, String objref, String index, Action2<String, RuntimeException> handler)
{
asyncFindObjectType(obj,objref,index,handler,-1);
}
public void asyncFindObjectType(Object obj, String objref, String index, Action2<String, RuntimeException> handler, int timeout)
{
if (!(obj instanceof ServiceStub)) throw new RuntimeException("Only service stubs can have objref");
ServiceStub s = (ServiceStub)obj;
AsyncStringReturnDirectorImpl h = new AsyncStringReturnDirectorImpl(handler);
int id2 = RRObjectHeap.addObject(h);
_AsyncFindObjectType(s.rr_innerstub, objref, index, timeout, h, id2);
}
public void setExceptionHandler(Action1<RuntimeException> handler)
{
if (handler == null)
{
_ClearExceptionHandler();
return;
}
AsyncExceptionDirectorImpl h = new AsyncExceptionDirectorImpl(handler);
int id1 = RRObjectHeap.addObject(h);
_SetExceptionHandler(h,id1);
}
public static final int RR_TIMEOUT_INFINITE=-1;
public final static String[] splitQualifiedName(String name)
{
int ind=name.lastIndexOf(".");
if (ind==-1) throw new RuntimeException("Name is not qualified");
return new String[] {name.substring(0,ind),name.substring(ind+1)};
}
public final static String getTypeString(Class type)
{
return type.getName().replaceAll("_\\.",".").replaceAll("_$","");
}
public final Timer createTimer(int period, Action1<TimerEvent> handler)
{
return createTimer(period, handler,false);
}
public final Timer createTimer(int period, Action1<TimerEvent> handler, boolean oneshot)
{
AsyncTimerEventReturnDirectorImpl t = new AsyncTimerEventReturnDirectorImpl(handler);
int id = RRObjectHeap.addObject(t);
return _CreateTimer(period, oneshot, t, id);
}
public RobotRaconteurException downCastException(RobotRaconteurException exp)
{
if (exp==null) return exp;
String type = exp.error;
if (!type.contains(".")) return exp;
String[] stype = RobotRaconteurNode.splitQualifiedName(type);
if (!isServiceTypeRegistered(stype[0])) return exp;
return getServiceType(stype[0]).downCastException(exp);
}
public void postToThreadPool(Action target)
{
AsyncVoidNoErrReturnDirectorImpl h=new AsyncVoidNoErrReturnDirectorImpl(target);
int id = RRObjectHeap.addObject(h);
_PostToThreadPool(h,id);
}
static class WrappedServiceSubscriptionFilterPredicateDirectorJava extends WrappedServiceSubscriptionFilterPredicateDirector
{
Func1<ServiceInfo2, Boolean> _f;
public WrappedServiceSubscriptionFilterPredicateDirectorJava(Func1<ServiceInfo2, Boolean> f)
{
_f = f;
}
@Override
public boolean predicate(ServiceInfo2Wrapped info)
{
ServiceInfo2 info2=new ServiceInfo2(info);
return _f.func(info2);
}
}
WrappedServiceSubscriptionFilter subscribeService_LoadFilter(ServiceSubscriptionFilter filter)
{
WrappedServiceSubscriptionFilter filter2=null;
if (filter != null)
{
filter2=new WrappedServiceSubscriptionFilter();
if (filter.ServiceNames != null)
{
for (int i=0; i<filter.ServiceNames.length; i++)
{
filter2.getServiceNames().add(filter.ServiceNames[i]);
}
}
if (filter.TransportSchemes != null)
{
for (int i=0; i<filter.TransportSchemes.length; i++)
{
filter2.getTransportSchemes().add(filter.TransportSchemes[i]);
}
}
filter2.setMaxConnections(filter.MaxConnections);
if (filter.Nodes != null)
{
vectorptr_wrappedservicesubscriptionnode nodes2 = new vectorptr_wrappedservicesubscriptionnode();
for(int i=0; i<filter.Nodes.length; i++)
{
ServiceSubscriptionFilterNode n1=filter.Nodes[i];
if (n1==null) continue;
WrappedServiceSubscriptionFilterNode n2=new WrappedServiceSubscriptionFilterNode();
if (n1.NodeID != null) n2.setNodeID(n1.NodeID);
if (n1.NodeName != null) n2.setNodeName(n1.NodeName);
if (n1.Username != null) n2.setUsername(n1.Username);
if (n1.Credentials != null)
{
n2.setCredentials((MessageElementData)packMapType(n1.Credentials, String.class, Object.class));
}
nodes2.add(n2);
}
filter2.setNodes(nodes2);
}
if (filter.Predicate != null)
{
WrappedServiceSubscriptionFilterPredicateDirectorJava director
=new WrappedServiceSubscriptionFilterPredicateDirectorJava(filter.Predicate);
int id= RRObjectHeap.addObject(director);
filter2.setRRPredicateDirector(director,id);
}
}
return filter2;
}
public ServiceSubscription subscribeServiceByType(String[] service_types)
{
return subscribeServiceByType(service_types, null);
}
public ServiceSubscription subscribeServiceByType(String[] service_types, ServiceSubscriptionFilter filter)
{
WrappedServiceSubscriptionFilter filter2=subscribeService_LoadFilter(filter);
vectorstring service_types2 = new vectorstring();
for(int i=0; i<service_types.length; i++)
{
service_types2.add(service_types[i]);
}
WrappedServiceSubscription sub1=RobotRaconteurJava.wrappedSubscribeServiceByType(this, service_types2, filter2);
return new ServiceSubscription(sub1);
}
public ServiceInfo2Subscription subscribeServiceInfo2(String[] service_types)
{
return subscribeServiceInfo2(service_types, null);
}
public ServiceInfo2Subscription subscribeServiceInfo2(String[] service_types, ServiceSubscriptionFilter filter)
{
WrappedServiceSubscriptionFilter filter2=subscribeService_LoadFilter(filter);
vectorstring service_types2 = new vectorstring();
for(int i=0; i<service_types.length; i++)
{
service_types2.add(service_types[i]);
}
WrappedServiceInfo2Subscription sub1=RobotRaconteurJava.wrappedSubscribeServiceInfo2(this, service_types2, filter2);
return new ServiceInfo2Subscription(sub1);
}
public ServiceSubscription subscribeService(String url)
{
return subscribeService(url, null, null, null);
}
public ServiceSubscription subscribeService(String url, String username, Map<String,Object> credentials)
{
return subscribeService(url, username, credentials, null);
}
public ServiceSubscription subscribeService(String url, String username, Map<String, Object> credentials, String objecttype)
{
return subscribeService(new String[] {url}, username, credentials, objecttype);
}
public ServiceSubscription subscribeService(String[] url)
{
return subscribeService(url, null, null, null);
}
public ServiceSubscription subscribeService(String[] url, String username, Map<String,Object> credentials)
{
return subscribeService(url, username, credentials, null);
}
public final ServiceSubscription subscribeService(String[] url, String username, Map<String, Object> credentials, String objecttype)
{
MessageElementData credentials2 = null;
try
{
if (username == null)
{
username = "";
}
if (credentials != null)
{
credentials2 = (MessageElementData)packVarType(credentials);
}
if (objecttype==null) objecttype="";
vectorstring url1=new vectorstring();
for (int i=0; i<url.length; i++)
{
url1.add(url[i]);
}
WrappedServiceSubscription sub1 = RobotRaconteurJava.wrappedSubscribeService(this, url1, username, credentials2, objecttype);
return new ServiceSubscription(sub1);
}
finally
{
if (credentials2!=null) credentials2.delete();
}
}
//End code typemap
%}
%include "RobotRaconteurNode.i"
|