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 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864
|
/**************************************************************************\
*
* This file is part of the Coin 3D visualization library.
* Copyright (C) by Kongsberg Oil & Gas Technologies.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* ("GPL") version 2 as published by the Free Software Foundation.
* See the file LICENSE.GPL at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using Coin with software that can not be combined with the GNU
* GPL, and for taking advantage of the additional benefits of our
* support services, please contact Kongsberg Oil & Gas Technologies
* about acquiring a Coin Professional Edition License.
*
* See http://www.coin3d.org/ for more information.
*
* Kongsberg Oil & Gas Technologies, Bygdoy Alle 5, 0257 Oslo, NORWAY.
* http://www.sim.no/ sales@sim.no coin-support@coin3d.org
*
\**************************************************************************/
/*!
\class SbBool SbBasic.h Inventor/SbBasic.h
\brief SbBool is a compiler portable boolean type.
\ingroup base
SbBool is meant to be a "compiler portable" way of defining a
boolean type, since there are older compilers out there which don't
support the ISO-standard C++ \c bool keyword.
SbBool is not really a class, just a \c typedef.
*/
/* *********************************************************************** */
/*!
\class SoDB SoDB.h Inventor/SoDB.h
\brief The SoDB class keeps track of internal global data.
\ingroup general
This class collects various methods for initializing, setting and
accessing common global data from the Coin library.
All methods on SoDB are static.
Make sure you call SoDB::init() (either directly or indirectly
through the init() method of the GUI glue library) before you use
any of the other Coin classes.
*/
#include <Inventor/SoDB.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif // HAVE_CONFIG_H
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#include <stdarg.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h> // fd_set (?)
#endif // HAVE_UNISTD_H
#include <Inventor/C/tidbits.h>
#include <Inventor/SoInput.h>
#include <Inventor/actions/SoAction.h>
#include <Inventor/details/SoDetail.h>
#include <Inventor/elements/SoElement.h>
#include <Inventor/engines/SoEngine.h>
#include <Inventor/engines/SoNodeEngine.h>
#include <Inventor/engines/SoEngineOutput.h>
#include <Inventor/errors/SoReadError.h>
#include <Inventor/events/SoEvent.h>
#include <Inventor/fields/SoSFTime.h>
#include <Inventor/misc/SoGLBigImage.h>
#include <Inventor/misc/SoGLImage.h>
#include <Inventor/misc/SoProto.h>
#include <Inventor/misc/SoProtoInstance.h>
#include <Inventor/nodes/SoSeparator.h>
#include <Inventor/sensors/SoTimerSensor.h>
#include <Inventor/annex/HardCopy/SoHardCopy.h>
#include <Inventor/errors/SoDebugError.h>
#include <Inventor/annex/FXViz/nodes/SoShadowGroup.h>
#include <Inventor/scxml/ScXML.h>
#include "navigation/SoScXMLNavigation.h"
#include <Inventor/misc/SoGLDriverDatabase.h>
#ifdef HAVE_NODEKITS
#include <Inventor/annex/ForeignFiles/SoForeignFileKit.h>
#endif // HAVE_NODEKITS
#include "SoVBO.h"
#include "coindefs.h" // COIN_STUB()
#include "shaders/SoShader.h"
#include "geo/SoGeo.h"
#include "tidbitsp.h"
#include "fields/SoGlobalField.h"
#include "misc/CoinStaticObjectInDLL.h"
#include "misc/systemsanity.icc"
#include "misc/SoDBP.h"
#include "misc/SbHash.h"
#include "misc/CoinResources.h"
#ifdef HAVE_VRML97
#include <Inventor/VRMLnodes/SoVRML.h>
#include <Inventor/VRMLnodes/SoVRMLGroup.h>
#endif // HAVE_VRML97
#ifdef HAVE_THREADS
#include "threads/threadp.h"
#endif // HAVE_THREADS
#ifdef COIN_THREADSAFE
#include <Inventor/threads/SbRWMutex.h>
#include "threads/recmutexp.h"
#endif // COIN_THREADSAFE
#ifdef HAVE_3DS_IMPORT_CAPABILITIES
#include "3ds/3dsLoader.h"
#endif // HAVE_3DS_IMPORT_CAPABILITIES
#include <Inventor/annex/Profiler/SoProfiler.h>
#include <Inventor/annex/Profiler/elements/SoProfilerElement.h>
#include "profiler/SoProfilerP.h"
// *************************************************************************
// Coin-global envvars:
#ifndef DOXYGEN_SKIP_THIS
const char * SoDBP::EnvVars::COIN_PROFILER = "COIN_PROFILER";
const char * SoDBP::EnvVars::COIN_PROFILER_OVERLAY = "COIN_PROFILER_OVERLAY";
#endif // DOXYGEN_SKIP_THIS
// *************************************************************************
static SbString * coin_versionstring = NULL;
// atexit callback
static void cleanup_func(void)
{
delete coin_versionstring;
coin_versionstring = NULL;
}
// *************************************************************************
// For sanity checking that our static variables in Coin has had a
// chance to init themselves before the invocation of SoDB::init().
//
// At least under Windows, it is possible to force the compiler /
// linker / system loader to init static application objects /
// variables before the ones in DLLs. If this is done (as we have seen
// with at least one external user), various hard-to-debug problems
// may crop up.
// FIXME: this is probably not initialized upon system start, but
// rather placed static in a thunk in the DLL/.so. Needs to fetch a
// value that can not have been compiled in. 20050506 mortene.
static uint32_t a_static_variable = 0xdeadbeef;
// *************************************************************************
/*!
Initialize the Coin system. This needs to be done as the first
thing before you start using the library, or you'll probably see an
early crash.
*/
void
SoDB::init(void)
{
// This is to catch the (unlikely) event that the C++ compiler adds
// padding or rtti information to the SbVec3f (or similar) base classes.
// We assume this isn't done several places in Coin, so the best thing to
// do is just to assert here.
assert(sizeof(SbVec3f) == 3*sizeof(float));
// Sanity check that our static variables in Coin has had a chance
// to init themselves before the first invocation of this function
// happens. See above documentation on the variable for more
// information.
assert((a_static_variable == 0xdeadbeef) &&
"SoDB::init() called before Coin DLL initialization!");
if (SoDB::isInitialized()) return;
// Releasing the mutex used for detecting multiple Coin instances in
// the process image.
CoinStaticObjectInDLL::init();
// See systemsanity.icc
SoDB_checkGCCBuiltinExpectSanity();
// See SbBasic.h, notes about bug in the Sun CC 4.0 compiler vs
// probable bug in the Intel compiler.
assert(SoNode::getClassTypeId() == SoType::badType() && "Data init failed! Get in touch with maintainers at <coin-support@coin3d.org>");
// Sanity check. Must be done early, as e.g. SoDebugError::post*()
// may fail if there are problems.
SoDBP::variableArgsSanityCheck();
#ifdef HAVE_THREADS
// initialize thread system first
cc_thread_init();
#ifdef COIN_THREADSAFE
SoDBP::globalmutex = new SbRWMutex(SbRWMutex::READ_PRECEDENCE);
#endif // COIN_THREADSAFE
#endif // HAVE_THREADS
coin_init_tidbits();
// Allocate our static members.
SoDBP::headerlist = new SbList<SoDB_HeaderInfo *>;
SoDBP::sensormanager = new SoSensorManager;
SoDBP::converters = new UInt32ToInt16Map;
// FIXME: these are never cleaned up
// NB! There are dependencies in the order of initialization of
// components below.
// This obviously needs to be done first.
SoType::init();
// Error classes must be initialized before we do the type size
// checking below, as we spit out warning messages if
// inconsistencies are found.
SoError::initClasses();
// OBSOLETED asserts for 1.0 release. We should be ok. FIXME: I can
// only think of possibilities for problems in the binary .iv import
// and export code. 20010308 mortene.
#if 0
// Sanity checks: if anything here breaks, either
// include/Inventor/system/inttypes.h.in or the bitwidth define
// configure tests need fixing. Keep these tests around.
// Sanity check: if the int type is not equal to 32 bits everything
// probably goes to hell. FIXME: remove this check when we are no
// longer dependent on using native C types where we need to have a
// particular bitwidth.
assert(sizeof(int) == 4);
if (sizeof(int) != 4) {
SoDebugError::postWarning("SoDB::init",
"sizeof(int) != 4 "
"(Coin not tested on this platform)");
}
// Sanity check: if this breaks, the binary format import and export
// routines will not work correctly. FIXME: the code should be fixed
// to use the int16_t type, then we can remove this stoopid check.
assert(sizeof(short) == 2);
if (sizeof(short) != 2) {
SoDebugError::postWarning("SoDB::init",
"sizeof(short) != 2 "
"(Coin not tested on this platform)");
}
// Sanity check: if the int type is unequal to the long type, things
// could break -- but probably not.
assert(sizeof(int) == sizeof(long));
if (sizeof(int) != sizeof(long)) {
SoDebugError::postWarning("SoDB::init",
"sizeof(int) != sizeof(long) "
"(Coin not tested on this platform)");
}
#endif // OBSOLETED sanity checks
CoinResources::init();
SoInput::init();
SoBase::initClass();
SoDetail::initClass();
// SoPath inherits SoBase, so initialize it after SoBase.
SoPath::initClass();
SoFieldContainer::initClass();
SoGlobalField::initClass(); // depends on SoFieldContainer init
SoField::initClass();
// Elements must be initialized before actions.
SoElement::initClass();
// The profiler-elements must also be initialized before actions, of
// course. (Note that at least the first one *must* be initialized
// even if COIN_PROFILER is not set, as we use its classStackIndex
// when checking if its present on the state stack.)
SoProfilerElement::initClass();
ScXML::initClasses();
// Actions must be initialized before nodes (because of SO_ENABLE)
SoAction::initClass();
SoNode::initClass();
SoEngine::initClass();
SoEvent::initClass();
SoSensor::initClass();
SoProto::initClass();
SoProtoInstance::initClass();
SoGLDriverDatabase::init();
SoGLImage::initClass();
SoGLBigImage::initClass();
SoHardCopy::init();
SoShader::init();
SoVBO::init();
// FIXME: probably temporary. Add FXViz::init() or something? pederb, 2007-03-09
SoShadowGroup::init();
SoGeo::init();
#ifdef HAVE_VRML97
so_vrml_init();
#endif // HAVE_VRML97
SoScXMLNavigation::initClasses();
// Register all valid file format headers.
SoDB::registerHeader(SbString("#Inventor V2.1 ascii "), FALSE, 2.1f,
NULL, NULL, NULL);
SoDB::registerHeader(SbString("#Inventor V2.1 binary "), TRUE, 2.1f,
NULL, NULL, NULL);
// FIXME: this is really only valid if the HAVE_VRML97 define is in
// place. If it's not, we should register the header in a way so
// that we spit out a /specific/ warning about why VRML97 is not
// supported in the configuration of the compiled libCoin. 20020808 mortene.
SoDB::registerHeader(SbString("#VRML V2.0 utf8"), FALSE, 2.1f,
NULL, NULL, NULL);
// FIXME: there are nodes in TGS' later Inventor versions that we do
// not support, so it's not really correct to register 2.4 and 2.5
// headers. 20010925 mortene.
SoDB::registerHeader(SbString("#Inventor V2.4 ascii "), FALSE, 2.4f,
NULL, NULL, NULL);
SoDB::registerHeader(SbString("#Inventor V2.4 binary "), TRUE, 2.4f,
NULL, NULL, NULL);
SoDB::registerHeader(SbString("#Inventor V2.5 ascii "), FALSE, 2.5f,
NULL, NULL, NULL);
SoDB::registerHeader(SbString("#Inventor V2.5 binary "), TRUE, 2.5f,
NULL, NULL, NULL);
// FIXME: TGS has released many more versions than this. There are
// at least 2.6, 3.0, 3.1 and 4.0, as of now. What should we do with
// those? Simply add them in the same manner? Should investigate
// with someone holding a TGS license how the header look for output
// written with these versions. 20040909 mortene.
SoDB::registerHeader(SbString("#Inventor V2.0 ascii "), FALSE, 2.0f,
NULL, NULL, NULL);
SoDB::registerHeader(SbString("#Inventor V2.0 binary "), TRUE, 2.0f,
NULL, NULL, NULL);
// FIXME: this is erroneous, we don't _really_ support v1.x Inventor
// files. Should spit out a warning, and a helpful message on how
// it is possible to convert old files, and then exit import.
// 20010925 mortene.
//
// UPDATE 20040909 mortene: pederb has implemented the "upgraders"
// mechanism, and at least a few upgrader nodes for V1.0
// stuff. Should investigate the exact status of this.
SoDB::registerHeader(SbString("#Inventor V1.0 ascii "), FALSE, 1.0f,
NULL, NULL, NULL);
SoDB::registerHeader(SbString("#Inventor V1.0 binary "), TRUE, 1.0f,
NULL, NULL, NULL);
// The VRML 1 standard was made from SGI's Inventor V2.1 (and should
// be a pure sub-set), so that's what we pretend the format version
// is, internally.
SoDB::registerHeader(SbString("#VRML V1.0 ascii "), FALSE, 2.1f,
NULL, NULL, NULL);
// FIXME: should be more robust and accept a set of headers that
// /almost/ match the exact specifications above. I have for
// instance seen several VRML models from the web which starts with
// "#VRML 2.0 utf8", which will cause SoDB::readAll() to fail with
// "Not a valid Inventor file." We should rather spit out a warning
// and read it anyway if we detect it's a close match. 20020920 mortene.
SoDB::createGlobalField("realTime", SoSFTime::getClassTypeId());
SoGlobalField::getGlobalFieldContainer("realTime")->ref();
// use a callback to remove the realTime field
coin_atexit((coin_atexit_f *)SoDBP::removeRealTimeFieldCB, CC_ATEXIT_REALTIME_FIELD);
SoDBP::globaltimersensor = new SoTimerSensor;
SoDBP::globaltimersensor->setFunction(SoDBP::updateRealTimeFieldCB);
// An interval of 1/12 is pretty low for today's standards, but this
// won't result in e.g. jerky animations of SoRotor & Co, since the
// SoSensorManager automatically and continually re-triggers scene
// traversals when anything has been connected to the realTime
// field.
SoDBP::globaltimersensor->setInterval(SbTime(1.0/12.0));
// FIXME: it would be better to not schedule unless something
// actually attaches itself to the realtime field, or does this muck
// up the code too much? 19990225 mortene.
// FIXME: the globaltimersensor triggers will drift, and animations
// will update slower (or less regular - not that we're talking
// framerate, not animation motion speed) since we don't do a
// setBaseTime() call on globaltimersensor. Investigate if this is
// the correct behaviour (what the SGI "reference" implementation
// does), correct the behaviour if needed, and mark this spot with
// info on that the sensor setup is intentional. Do the same for
// the Coin 1.* branch. 20021016 larsa
SoDBP::globaltimersensor->schedule();
// Force correct time on first getValue() from "realTime" field.
SoDBP::updateRealTimeFieldCB(NULL, NULL);
// This should prove helpful for debugging the pervasive problem
// under Win32 with loading multiple instances of the same library.
//
// Note that this is done late in the init()-process, to make sure
// all Coin-features used in SoDB::listWin32ProcessModules() have
// been initialized.
const char * env = coin_getenv("COIN_DEBUG_LISTMODULES");
if (env && (atoi(env) > 0)) { SoDBP::listWin32ProcessModules(); }
SoDBP::isinitialized = TRUE;
// NOTE: SoDBP::isinitialized must be set to TRUE before this block,
// or you will get a "mysterious" crash on a mutex in
// CoinStaticObjectInDLL.cpp. Logically, it should not be flagged
// before after initialization is done, but subsystems invoked from
// these methods needs to know that Coin is already initialized.
SoProfilerP::parseCoinProfilerVariable();
if (SoProfiler::isEnabled()) {
SoProfiler::init();
}
// Debugging for memory leaks will be easier if we can clean up the
// resource usage. This needs to be done last in init(), so we get
// called _before_ clean() methods in other classes with the same
// priority.
coin_atexit((coin_atexit_f *)SoDBP::clean, CC_ATEXIT_SODB);
}
/*!
Invoke this method as the last call of the application code, to
trigger a clean-up of all static resources used by the Coin library.
This is usually not necessary for stand-alone executable
applications, as the operating system will take care of cleaning up
after the process as it exits.
It may be necessary to invoke this method to avoid leaks for
"special" execution environments, though, like if the Coin library
is used as e.g. a browser plug-in, or some other type of component
which can be started, shut down and restarted multiple times.
\since Coin 2.4
\since TGS Inventor 5.0
*/
void
SoDB::finish(void)
{
coin_atexit_cleanup();
SoDBP::isinitialized = FALSE;
}
/*!
This method was renamed from Coin version 2.4 onwards, to
SoDB::finish(). Consider this name for the method obsolete.
\since Coin 2.0
*/
void
SoDB::cleanup(void)
{
SoDB::finish();
}
/*!
Returns a text string containing the name of the library and version
information.
*/
const char *
SoDB::getVersion(void)
{
if (coin_versionstring == NULL) {
coin_versionstring = new SbString("SIM Coin " COIN_VERSION);
coin_atexit((coin_atexit_f *)cleanup_func, CC_ATEXIT_NORMAL);
}
return coin_versionstring->getString();
}
/*!
Instantiates and reads an SoPath object from \a in and returns a
pointer to it in \a path.
The reference count of the SoPath object will initially be zero.
Returns \c FALSE on error. Returns \c TRUE with \a path equal to \a
NULL if we hit end of file instead of a new path specification in
the file.
*/
SbBool
SoDB::read(SoInput * in, SoPath *& path)
{
path = NULL;
SoBase * baseptr;
if (!SoDB::read(in, baseptr)) return FALSE;
if (!baseptr) return TRUE; // eof
if (!baseptr->isOfType(SoPath::getClassTypeId())) {
SoReadError::post(in, "'%s' not derived from SoPath",
baseptr->getTypeId().getName().getString());
baseptr->ref();
baseptr->unref();
return FALSE;
}
path = (SoPath *)baseptr;
return TRUE;
}
/*!
Instantiates and reads an object of type SoBase from \a in and
returns a pointer to it in \a base. \a base will be \c NULL on
return if we hit end of file.
The reference count of the base object will initially be zero.
Returns \c FALSE on error.
*/
SbBool
SoDB::read(SoInput * in, SoBase *& base)
{
SbBool valid = in->isValidFile();
if (!valid && SoDBP::is3dsFile(in)) {
base = SoDBP::read3DSFile(in);
return (base != NULL);
}
#ifdef HAVE_NODEKITS
if ( !valid &&
SoForeignFileKit::getClassTypeId() != SoType::badType() &&
SoForeignFileKit::isFileSupported(in) ) {
base = SoForeignFileKit::createForeignFileKit(in);
return (base != NULL);
}
#endif // NODEKITS
// Header is only required when reading from a stream, if reading from
// memory no header is required.
if ( !valid ) {
return FALSE;
}
return SoBase::read(in, base, SoBase::getClassTypeId());
}
/*!
Instantiates and reads an object of type SoNode from \a in and returns
a pointer to it in \a rootnode.
The reference count of the node will initially be zero.
Returns \c FALSE on error. Returns \c TRUE with \a rootnode equal to
\c NULL if we hit end of file instead of a new node specification in
the file.
*/
SbBool
SoDB::read(SoInput * in, SoNode *& rootnode)
{
rootnode = NULL;
SoBase * baseptr;
if (SoDBP::is3dsFile(in)) {
rootnode = SoDBP::read3DSFile(in);
return (rootnode != NULL);
}
// allow engines at the top level of a file
do {
if (!SoDB::read(in, baseptr)) return FALSE;
if (!baseptr) return TRUE; // eof
} while (baseptr->isOfType(SoEngine::getClassTypeId()));
if (!baseptr->isOfType(SoNode::getClassTypeId())) {
SoReadError::post(in, "'%s' not derived from SoNode",
baseptr->getTypeId().getName().getString());
baseptr->ref();
baseptr->unref();
return FALSE;
}
rootnode = (SoNode *)baseptr;
return TRUE;
}
/*!
Reads all graphs from \a in and returns them under an SoSeparator
node. If the file contains only a single graph under an SoSeparator
node (which is the most common way of constructing and exporting
scene graphs), no \e extra SoSeparator root node will be made, but
the returned root node will be the top-most node from the file.
The reference count of the root separator returned from this method
will be zero. Other nodes in the returned scene graph will have
reference counts according to the number of parent-child
relationships, as usual.
The common layout for how to load, work with and then finally
destruct and return memory resources of scenegraphs usually goes
like this:
\code
// [snip]
SoInput in;
if (!in.openFile(filename)) { exit(1); }
SoSeparator * root = SoDB::readAll(&in);
if (!root) { exit(1); }
// root-node returned from SoDB::readAll() has initial zero
// ref-count, so reference it before we start using it to
// avoid premature destruction.
root->ref();
// [do your thing here -- attach the scene to a viewer or whatever]
// Bring ref-count of root-node back to zero to cause the
// destruction of the scene.
root->unref();
// (Upon self-destructing, the root-node will also de-reference
// it's children nodes, so they also self-destruct, and so on
// recursively down the scenegraph hierarchy until the complete
// scenegraph has self-destructed and thereby returned all
// memory resources it was using.)
\endcode
Returns \c NULL on any error.
Tip: a common operation to do after importing a scene graph is to
pick out the memory pointers to one or more of the imported nodes
for further handling. This can be accomplished by using either the
SoNode::getByName() function (which is the easier approach) or by
using an instance of the SoSearchAction class (which is the more
complex but also more flexible approach).
*/
SoSeparator *
SoDB::readAll(SoInput * in)
{
return (SoSeparator*)
SoDB::readAllWrapper(in, SoSeparator::getClassTypeId());
}
/*!
Same as SoDB::readAll(), except it return an SoVRMLGroup instead
of an SoSeparator.
\sa SoDB::readAll()
\since Coin 2.0
*/
SoVRMLGroup *
SoDB::readAllVRML(SoInput * in)
{
#ifdef HAVE_VRML97
return (SoVRMLGroup*)
SoDB::readAllWrapper(in, SoVRMLGroup::getClassTypeId());
#else // HAVE_VRML97
return NULL;
#endif // ! HAVE_VRML97
}
/*!
Check if \a testString is a valid file format header identifier string.
\sa getHeaderData(), registerHeader()
*/
SbBool
SoDB::isValidHeader(const char * teststring)
{
SbBool isbinary;
float ivversion;
SoDBHeaderCB * preload_cb, * postload_cb;
void * userdata;
#if COIN_DEBUG
if (!teststring) {
SoDebugError::postWarning("SoDB::isValidHeader",
"Passed a NULL string pointer.");
return FALSE;
}
#endif // COIN_DEBUG
return SoDB::getHeaderData(SbString(teststring), isbinary, ivversion,
preload_cb, postload_cb, userdata, TRUE);
}
/*!
Register a header string which should be recognized by SoInput upon
file import. This is a convenient way for library users to register
their own VRML or Coin derived file formats.
Set \a isbinary to \c TRUE if the file should be read as binary
data, and set \a ivversion to indicate which Coin library version is
needed to read the file.
Callbacks \a precallback and \a postcallback will be called before
and after importing the custom format.
If \a headerstring can not be accepted as a valid file format header
for Coin files, \c FALSE will be returned. A valid header \e must
start with a '#' character, and not be more than 80 characters long.
\sa getHeaderData()
*/
SbBool
SoDB::registerHeader(const SbString & headerstring,
SbBool isbinary, float ivversion,
SoDBHeaderCB * precallback, SoDBHeaderCB * postcallback,
void * userdata)
{
// Must start with '#'.
if ((headerstring.getLength() == 0) ||
(headerstring.getString()[0] != '#')) {
#if COIN_DEBUG
SoDebugError::postWarning("SoDB::registerHeader",
"File header string must begin with '#', '%s'"
" invalid.", headerstring.getString());
#endif // COIN_DEBUG
return FALSE;
}
// No more than 80 characters.
if (headerstring.getLength() > 80) {
#if COIN_DEBUG
SoDebugError::postWarning("SoDB::registerHeader",
"File header string must be 80 characters "
"or less, so '%s' is invalid.",
headerstring.getString());
#endif // COIN_DEBUG
return FALSE;
}
SoDB_HeaderInfo * newheader =
new SoDB_HeaderInfo(headerstring, isbinary, ivversion,
precallback, postcallback, userdata);
SoDBP::headerlist->append(newheader);
return TRUE;
}
/*!
Returns the settings for the given \a headerstring, if \a headerstring
is a valid header.
If \a substringok is \c TRUE, ignore trailing characters in \a headerstring
when checking for validity.
If no valid header string by this name is found, \c FALSE is returned,
otherwise \c TRUE will be returned, and the other input arguments will
be set to their respective values.
\sa isValidHeader(), registerHeader()
*/
SbBool
SoDB::getHeaderData(const SbString & headerstring, SbBool & isbinary,
float & ivversion, SoDBHeaderCB *& precallback,
SoDBHeaderCB *& postcallback, void *& userdata,
SbBool substringok)
{
unsigned int hslen = headerstring.getLength();
if (hslen == 0) return FALSE;
// Disregard whitespace.
while ((headerstring[hslen-1] == ' ') || (headerstring[hslen-1] == '\t')) {
hslen--;
if (hslen == 0) return FALSE;
}
SbString tryheader = headerstring.getSubString(0, hslen-1);
SbBool hit = FALSE;
for (int i=0; (i < SoDB::getNumHeaders()) && !hit; i++) {
SoDB_HeaderInfo * hi = (*SoDBP::headerlist)[i];
SbString & s = hi->headerstring;
unsigned int reglen = s.getLength();
assert(reglen > 0);
// Disregard whitespace.
while ((s[reglen-1] == ' ') || (s[reglen-1] == '\t')) reglen--;
assert(reglen > 0);
SbString regheader = s.getSubString(0, reglen-1);
if (regheader == tryheader)
hit = TRUE;
else if (substringok && (hslen > reglen) &&
(regheader == tryheader.getSubString(0, reglen - 1)))
hit = TRUE;
if (hit) {
isbinary = hi->isbinary;
ivversion = hi->ivversion;
precallback = hi->preload_cb;
postcallback = hi->postload_cb;
userdata = hi->userdata;
}
}
return hit;
}
/*!
Returns number of registered file headers.
\sa getHeaderString()
*/
int
SoDB::getNumHeaders(void)
{
return SoDBP::headerlist->getLength();
}
/*!
Returns the identifier header string of index \a i.
\sa getNumHeaders(), getHeaderData()
*/
SbString
SoDB::getHeaderString(const int i)
{
#if COIN_DEBUG
if ((i < 0) || (i >= SoDBP::headerlist->getLength())) {
SoDebugError::post("SoDB::getHeaderString", "Index %d out of range.", i);
return SbString("");
}
#endif // COIN_DEBUG
return (*SoDBP::headerlist)[i]->headerstring;
}
/*!
Create a new global field by the given \a type, and identified in
subsequent accesses to getGlobalField() by \a name. If a global
field by the name and type already exists, returns a pointer to it.
If a global field with the same name but a different type exists,
returns \c NULL.
A global field can be deallocated by calling
SoDB::renameGlobalField(), with the second argument set to an empty
string.
\sa getGlobalField(), renameGlobalField()
*/
SoField *
SoDB::createGlobalField(const SbName & name, SoType type)
{
assert(name != "" && "invalid name for a global field");
SoField * f = SoDB::getGlobalField(name);
if (f) {
if (f->getTypeId() == type) return f;
else return NULL;
}
#if COIN_DEBUG
if (!type.canCreateInstance()) {
SoDebugError::postWarning("SoDB::createGlobalField",
"Can't create instance of field type ``%s''.",
type.getName().getString());
return NULL;
}
#endif // COIN_DEBUG
// (Deallocation of the field happens in the SoGlobalField
// destructor.)
SoField * newfield = (SoField *)type.createInstance();
(void) new SoGlobalField(name, newfield);
return newfield;
}
/*!
If there exist a global field with the given \a name, return a
pointer to it. If there is no field with this name, return \c NULL.
Of particular interest is the \c realTime global field set up by the
library on initialization. This field is used as a source field to
all the autonomous animation objects within the library, like for
instance the SoTimeCounter engine or the SoRotor node.
If you want to control the speed of "action" of a scene with
animating / moving components (for instance for doing fixed
frame-time snapshots for generating a movie), grab the global field
named "realTime" and use it in the manner depicted in the class
documentation of the SoOffscreenRenderer class.
\sa createGlobalField(), renameGlobalField()
*/
SoField *
SoDB::getGlobalField(const SbName & name)
{
SoGlobalField * gf = SoGlobalField::getGlobalFieldContainer(name);
return gf ? gf->getGlobalField() : NULL;
}
/*!
Rename a global field. If \a to is an empty name, the \a from field
gets deleted. If another global field already goes by the name \a
to, that field will get deleted before the rename operation.
\sa getGlobalField(), createGlobalField()
*/
void
SoDB::renameGlobalField(const SbName & from, const SbName & to)
{
SoGlobalField * gf = SoGlobalField::getGlobalFieldContainer(from);
#if COIN_DEBUG
if (gf == NULL) {
SoDebugError::postWarning("SoDB::renameGlobalField",
"Couldn't find global field '%s' to rename.",
from.getString());
return;
}
#endif // COIN_DEBUG
if (to == "") { // Empty string is a special case, remove field.
assert(gf->getRefCount() == 1);
SoGlobalField::removeGlobalFieldContainer(gf);
return;
}
// Existing entry by the same "to"-name? If so, remove it.
SoGlobalField * old = SoGlobalField::getGlobalFieldContainer(to);
if (old) {
assert(old->getRefCount() == 1);
SoGlobalField::removeGlobalFieldContainer(old);
}
gf->setName(to);
}
/*!
Set the time interval between updates for the \c realTime global field
to \a interval. Default value is 1/12 s.
The low update rate is due to historical reasons, to be compatible
with application code written for SGI Inventor.
Setting the interval to a zero time will disable automatic updates
of the realTime field.
\sa getRealTimeInterval(), getGlobalField()
*/
void
SoDB::setRealTimeInterval(const SbTime & interval)
{
#if COIN_DEBUG
if (interval < SbTime::zero()) {
SoDebugError::postWarning("SoDB::setRealTimeInterval",
"Tried to set negative interval.");
return;
}
#endif // COIN_DEBUG
SbBool isscheduled = SoDBP::globaltimersensor->isScheduled();
if (isscheduled) SoDBP::globaltimersensor->unschedule();
SoDBP::globaltimersensor->setInterval(interval);
if (isscheduled && interval != SbTime::zero())
SoDBP::globaltimersensor->schedule();
}
/*!
Returns the current trigger interval for the global \a realTime SbTime
field.
\sa setRealTimeInterval(), getGlobalField()
*/
const SbTime &
SoDB::getRealTimeInterval(void)
{
return SoDBP::globaltimersensor->getInterval();
}
/*!
This is just a wrapper for the method in SoSensorManager by the
same name.
\sa getDelaySensorTimeout(), SoSensorManager
*/
void
SoDB::setDelaySensorTimeout(const SbTime & t)
{
SoDB::getSensorManager()->setDelaySensorTimeout(t);
}
/*!
This is just a wrapper for the method in SoSensorManager by the
same name.
\sa setDelaySensorTimeout(), SoSensorManager
*/
const SbTime &
SoDB::getDelaySensorTimeout(void)
{
return SoDB::getSensorManager()->getDelaySensorTimeout();
}
/*!
Returns a pointer to the global sensor manager. The sensor manager keeps
track of the sensor queues.
*/
SoSensorManager *
SoDB::getSensorManager(void)
{
return SoDBP::sensormanager;
}
/*!
NOTE: THIS METHOD IS OBSOLETED. DON'T USE IT.
This is a wrapper around the POSIX \c select() call. It is provided
so you can do synchronous I/O while Coin continues to handle sensor
events, rendering, etc. The parameters are the same as for \c
select(), so check your system documentation on how to use them.
The void* arguments must be valid pointers to fd_set
structures. We've changed this from the original SGI Inventor API to
avoid messing up the header file with system-specific includes.
NOTE: THIS METHOD IS OBSOLETED. DON'T USE IT.
*/
int
SoDB::doSelect(int nfds, void * readfds, void * writefds,
void * exceptfds, struct timeval * usertimeout)
{
assert(FALSE && "obsoleted method");
return 0;
}
/*!
Notify SoDB that there exists a way to convert data from the \a from
SoField type to the \a to SoField type, by connecting them with an
instance of the \a converter SoFieldConverter type.
By doing this, SoDB::getConverter() will later be able to
automatically return the type of the correct conversion class when
requested.
Coin internally provides conversion between most field types, so
application programmers should usually not need to use this
function. The exception is if you are writing your own field type
classes, and want to be able to connect them to the internal field
types (or other extensions field types).
\sa createConverter(), SoFieldConverter
*/
void
SoDB::addConverter(SoType from, SoType to, SoType converter)
{
const uint32_t linkid = (((uint32_t)from.getKey()) << 16) + to.getKey();
SbBool nonexist = SoDBP::converters->put(linkid, converter.getKey());
if (!nonexist) {
#if COIN_DEBUG
SoDebugError::postWarning("SoDB::addConverter",
"Conversion from ``%s'' to ``%s'' is already "
"handled by instances of ``%s''",
from.getName().getString(),
to.getName().getString(),
converter.getName().getString());
#endif // COIN_DEBUG
}
}
/*!
Return the type of an SoFieldConverter class which is able to
convert data between fields of type \a from to the data field(s) of
field type \a to.
If no conversion between the given field types is possible, returns
SoType::badType().
\sa addConverter()
*/
SoType
SoDB::getConverter(SoType from, SoType to)
{
uint32_t val = (((uint32_t)from.getKey()) << 16) + to.getKey();
int16_t key;
if (!SoDBP::converters->get(val, key)) { return SoType::badType(); }
return SoType::fromKey(key);
}
/*!
Returns \c TRUE if init() has been called.
\sa init()
*/
SbBool
SoDB::isInitialized(void)
{
return SoDBP::isinitialized;
}
/*!
\COININTERNAL
*/
void
SoDB::startNotify(void)
{
#ifdef COIN_THREADSAFE
(void) cc_recmutex_internal_notify_lock();
#endif // COIN_THREADSAFE
SoDBP::notificationcounter++;
}
/*!
\COININTERNAL
*/
SbBool
SoDB::isNotifying(void)
{
return SoDBP::notificationcounter > 0;
}
/*!
\COININTERNAL
*/
void
SoDB::endNotify(void)
{
SoDBP::notificationcounter--;
if (SoDBP::notificationcounter == 0) {
// Process zero-priority sensors after notification has been done.
SoSensorManager * sm = SoDB::getSensorManager();
if (sm->isDelaySensorPending()) sm->processImmediateQueue();
}
#ifdef COIN_THREADSAFE
(void) cc_recmutex_internal_notify_unlock();
#endif // COIN_THREADSAFE
}
/*!
Turn on or off the realtime sensor.
The most common use for turning the realtime sensor off is to
control the realTime global field from the user application. This is
for instance handy when you want to take screen snapshots at fixed
intervals. See the class documentation of SoOffscreenRenderer for
further information.
\sa setRealTimeInterval(), getGlobalField()
*/
void
SoDB::enableRealTimeSensor(SbBool on)
{
assert(SoDB::isInitialized());
SbBool isscheduled = SoDBP::globaltimersensor->isScheduled();
if (isscheduled && !on) SoDBP::globaltimersensor->unschedule();
else if (!isscheduled && on &&
SoDBP::globaltimersensor->getInterval() != SbTime::zero())
SoDBP::globaltimersensor->schedule();
#if COIN_DEBUG
else SoDebugError::postWarning("SoDB::enableRealTimeSensor",
"realtime sensor already %s",
on ? "on" : "off");
#endif // COIN_DEBUG
}
// private wrapper for readAll() and readAllVRML()
SoGroup *
SoDB::readAllWrapper(SoInput * in, const SoType & grouptype)
{
assert(SoDB::isInitialized() && "you forgot to initialize the Coin library");
assert(grouptype.canCreateInstance());
assert(grouptype.isDerivedFrom(SoGroup::getClassTypeId()));
SbBool valid = in->isValidFile();
if (!valid && SoDBP::is3dsFile(in)) {
SoSeparator * root3ds = SoDBP::read3DSFile(in);
if (root3ds == NULL) { return NULL; }
if (!SoSeparator::getClassTypeId().isDerivedFrom(grouptype)) {
SoGroup * root = (SoGroup *)grouptype.createInstance();
root->addChild(root3ds);
return root;
}
else {
return root3ds;
}
}
#ifdef HAVE_NODEKITS
if ( !valid &&
SoForeignFileKit::getClassTypeId() != SoType::badType() &&
SoForeignFileKit::isFileSupported(in) ) {
SoForeignFileKit * kit = SoForeignFileKit::createForeignFileKit(in);
if ( kit ) {
SoGroup * root = (SoGroup *) grouptype.createInstance();
root->addChild(kit);
return root;
}
}
#endif // HAVE_NODEKITS
if ( !valid ) {
SoReadError::post(in, "Not a valid Inventor file.");
return NULL;
}
const int stackdepth = in->filestack.getLength();
SoGroup * root = (SoGroup *)grouptype.createInstance();
SoNode * topnode;
do {
if (!SoDB::read(in, topnode)) {
root->ref();
root->unref();
return NULL;
}
if (topnode) { root->addChild(topnode); }
} while (topnode && in->skipWhiteSpace());
if (!in->eof()) {
// All characters may not have been read from the current
// stream. The reading stops when no more valid identifiers are
// found, so we have to read until the current file on the stack
// is at the end. All non-whitespace characters from now on are
// erroneous.
static uint32_t readallerrors_termination = 0;
char dummy = -1; // Set to -1 to make sure the variable has been
// read before an error is output
char buf[2];
buf[1] = '\0';
while (!in->eof() && in->read(dummy)) {
if (readallerrors_termination < 1) {
buf[0] = dummy;
SoReadError::post(in, "Erroneous character(s) after end of scenegraph: \"%s\". "
"This message will only be shown once for this file, "
"but more errors might be present", dummy != '\0' ? buf : "\\0");
}
readallerrors_termination++;
}
assert(in->eof());
if (dummy == '\0' && !in->isBinary()) {
SoReadError::post(in, "It appears that your iv-file ends with a null-character ('\\0') "
"This could happen if you use the SoInput::setBuffer method "
"with a character-string argument and the size of the string "
"was one character too long. A typical reason for the problem "
"is if you use sizeof to measure the string length; not taking into "
"account that strings end with '\\0', which should not be "
"input to the setBuffer-method. To correct this, use strlen "
"instead of sizeof.");
}
}
// Make sure the current file (which is EOF) is popped off the stack.
in->popFile(); // No popping happens if there is just one file on
// the stack
// Detect problems with missing pops from the SoInput file stack.
assert((stackdepth == 1 && in->filestack.getLength() == 1) ||
(stackdepth - 1 == in->filestack.getLength()));
// Strip off extra root group node if it was unnecessary (i.e. if
// the file only had a single top-level root, and it was of the same
// type as is requested returned).
if ((root->getNumChildren() == 1) && (root->getChild(0)->isOfType(grouptype))) {
SoNode * n = root->getChild(0);
n->ref();
root->ref();
root->unref();
n->unrefNoDelete();
return (SoGroup *)n;
}
return root;
}
/* *********************************************************************** */
/*!
\typedef SbBool SoDB::ProgressCallbackType(const SbName & itemid, float fraction, SbBool interruptible, void * userdata)
Client code progress callback function must be static functions of
this type.
The \a itemid argument is a unique text identifier which says what
is being processed (use this for any GUI progress bar informational
text), and \a fraction is a value in the range [0, 1] which
indicates how far the process has got. If the task is successfully
aborted, the callback will be invoked a last time with \a fraction
set to -1.0.
The return value is an abort flag indication from the client
code. Note that the process that is being run can only be aborted if
the \a interruptible flag is set.
See SoDB::addProgressCallback() for full documentation of how the
progress notification mechanism works.
*/
/*!
The concept behind progress information in Coin is that any internal
process which may take a long time to complete (like e.g. file
import for huge scenes) can pass on progress information by calling
back to a progress callback set up by the code of the client
application.
The client's progress callback's function signature must match the
SoDB::ProgressCallbackType.
The mechanism works by enforcing that all progress notification from
within Coin must
<ol>
<li> Use a unique text id to identify the "progress-informing"
process (e.g. "File import" for SoDB::readAll() / SoInput file
reading, "File export" for SoOutput / SoWriteAction, etc). This
is the \a itemid name passed on to the progress callback.</li>
<li>The first invocation of the user callback will be done with an
exact 0.0 \a fraction value.</li>
<li>The last invocation will be done with an exact 1.0 fraction
value.</li>
<li>An exception to the last point is that if the process is
aborted, a final invocation with a -1.0 fraction value will be
made.</li>
</ol>
One important thing to note about the mechanism is that processes
with progress callbacks can be running within \e other processes
using the progress callback functionality. Progress information
will then have to be considered to be "stacked", and client code
must be aware of and treat this properly.
\COIN_FUNCTION_EXTENSION
\since Coin 2.2
*/
void
SoDB::addProgressCallback(ProgressCallbackType * func, void * userdata)
{
if (SoDBP::progresscblist == NULL) {
SoDBP::progresscblist = new SbList<SoDBP::ProgressCallbackInfo>;
}
const SoDBP::ProgressCallbackInfo newitem = { func, userdata };
SoDBP::progresscblist->append(newitem);
}
/*!
Removes a progress callback function, which will no longer be
invoked.
*/
void
SoDB::removeProgressCallback(ProgressCallbackType * func, void * userdata)
{
assert(SoDBP::progresscblist);
const SoDBP::ProgressCallbackInfo item = { func, userdata };
const int idx = SoDBP::progresscblist->find(item);
assert(idx != -1);
SoDBP::progresscblist->remove(idx);
}
/*!
Returns \c TRUE if this is a thread safe version of Coin
(i.e. it was configured and built with --enable-threadsafe).
*/
SbBool
SoDB::isMultiThread(void)
{
#ifdef COIN_THREADSAFE
return TRUE;
#else // COIN_THREADSAFE
return FALSE;
#endif // !COIN_THREADSAFE
}
// Note that the function names of the next four functions below are
// all lowercase to be compatible with client code written on TGS
// Inventor.
/*!
Places a read lock on the global SoDB mutex. This can be used to
synchronize between threads that are reading/writing Coin scene
graphs.
If you call this function, you must make sure that you also call
SoDB::readunlock(). If you fail to do this, you might experience
that your application locks up.
All Coin actions has a read-lock on the global SoDB mutex while
traversing the scene graph.
\sa SoDB::readunlock(), SoDB::writelock()
\since Coin 2.3
\since TGS Inventor 3.0
*/
void
SoDB::readlock(void)
{
#ifdef COIN_THREADSAFE
SoDBP::globalmutex->readLock();
#endif // COIN_THREADSAFE
}
/*!
Unlocks the read lock on the global SoDB mutex.
\sa SoDB::readlock()
\since Coin 2.3
\since TGS Inventor 3.0
*/
void
SoDB::readunlock(void)
{
#ifdef COIN_THREADSAFE
SoDBP::globalmutex->readUnlock();
#endif // COIN_THREADSAFE
}
/*!
Places a write lock on the global SoDB mutex. This can be used to
prevent that the scene graph is read or traversed while you modify
the scene graph.
If you call this function, you must make sure that you also call
SoDB::writeunlock(). If you fail to do this, you might experience
that your application locks up.
\sa SoDB::readlock()
\since Coin 2.3
\since TGS Inventor 3.0
*/
void
SoDB::writelock(void)
{
#ifdef COIN_THREADSAFE
SoDBP::globalmutex->writeLock();
#endif // COIN_THREADSAFE
}
/*!
Unlocks the write lock on the global SoDB mutex.
\sa SoDB::writelock()
\since Coin 2.3
\since TGS Inventor 3.0
*/
void
SoDB::writeunlock(void)
{
#ifdef COIN_THREADSAFE
SoDBP::globalmutex->writeUnlock();
#endif // COIN_THREADSAFE
}
// *************************************************************************
//
// helper function for createRoute(). First test the actual fieldname,
// then set set_<fieldname>, then <fieldname>_changed.
//
static SoField *
find_route_field(SoNode * node, const SbName & fieldname)
{
SoField * field = node->getField(fieldname);
if (!field) {
if (strncmp(fieldname.getString(), "set_", 4) == 0) {
SbName newname = fieldname.getString() + 4;
field = node->getField(newname);
}
else {
SbString str = fieldname.getString();
int len = str.getLength();
const char CHANGED[] = "_changed";
const int changedsize = sizeof(CHANGED) - 1;
if (len > changedsize && strcmp(str.getString()+len-changedsize,
CHANGED) == 0) {
SbString substr = str.getSubString(0, len-(changedsize+1));
SbName newname = substr.getString();
field = node->getField(newname);
}
}
}
return field;
}
/*!
Create a connection from one VRML97 node field to another.
("Routes" are what field-to-field connections are called for the
VRML97 standard.)
Connections made in this manner will be persistent upon file export.
\sa SoDB::removeRoute()
\sa SoField::connectFrom(SoField*)
\since Coin 2.4
\since TGS Inventor 2.6
*/
void
SoDB::createRoute(SoNode * fromnode, const char * eventout,
SoNode * tonode, const char * eventin)
{
assert(fromnode && tonode && eventout && eventin);
SbName fromfieldname(eventout);
SbName tofieldname(eventin);
SoField * from = find_route_field(fromnode, fromfieldname);
SoField * to = find_route_field(tonode, tofieldname);
SbName fromnodename = fromnode->getName();
if (fromnodename == "") {
fromnodename = "<noname>";
}
SbName tonodename = tonode->getName();
if (tonodename == "") {
tonodename = "<noname>";
}
SoEngineOutput * output = NULL;
if (from == NULL && fromnode->isOfType(SoNodeEngine::getClassTypeId())) {
output = ((SoNodeEngine*) fromnode)->getOutput(fromfieldname);
}
if (to && (from || output)) {
SbBool notnotify = FALSE;
SbBool append = FALSE;
if (output || from->getFieldType() == SoField::EVENTOUT_FIELD) {
notnotify = TRUE;
}
#if 0 // seems like (reading the VRML97 spec.) fanIn in allowed even to regular fields
if (to->getFieldType() == SoField::EVENTIN_FIELD) append = TRUE;
#else // fanIn
append = TRUE;
#endif // fanIn fix
// Check if we're already connected.
SoFieldList fl;
if (from) from->getForwardConnections(fl);
else output->getForwardConnections(fl);
int idx = fl.find(to);
if (idx != -1) {
#if COIN_DEBUG
SoDebugError::postWarning("SoDB::createRoute",
"Tried to connect a ROUTE multiple times "
"(from %s.%s to %s.%s)",
fromnodename.getString(), fromfieldname.getString(),
tonodename.getString(), tofieldname.getString());
#endif // COIN_DEBUG
return;
}
// Check that there exists a field converter, if one is needed.
SoType totype = to->getTypeId();
SoType fromtype = from ? from->getTypeId() : output->getConnectionType();
if (totype != fromtype) {
SoType convtype = SoDB::getConverter(fromtype, totype);
if (convtype == SoType::badType()) {
#if COIN_DEBUG
SoDebugError::postWarning("SoDB::createRoute",
"Tried to connect a ROUTE between entities "
"that can not be connected (due to lack of "
"field type converter): %s.%s is of type "
"%s, and %s.%s is of type %s",
fromnodename.getString(), fromfieldname.getString(),
fromtype.getName().getString(),
tonodename.getString(), tofieldname.getString(),
totype.getName().getString());
#endif // COIN_DEBUG
return;
}
}
SbBool ok;
if (from) ok = to->connectFrom(from, notnotify, append);
else ok = to->connectFrom(output, notnotify, append);
// Both known possible failure points are caught above.
assert(ok && "unexpected connection error");
}
#if COIN_DEBUG
else {
SoDebugError::postWarning("SoDB::createRoute",
"Unable to create route: %s.%s TO %s.%s",
fromnodename.getString(), eventout,
tonodename.getString(), eventin);
}
#endif // COIN_DEBUG
}
/*!
Removes a field-to-field connection.
\sa SoDB::createRoute()
\sa SoField::disconnect(SoField*)
\since Coin 2.4
\since TGS Inventor 2.6
*/
void
SoDB::removeRoute(SoNode * fromnode, const char * eventout,
SoNode * tonode, const char * eventin)
{
assert(fromnode && tonode && eventout && eventin);
SbName fromfieldname(eventout);
SbName tofieldname(eventin);
SoField * from = find_route_field(fromnode, fromfieldname);
SoField * to = find_route_field(tonode, tofieldname);
SoEngineOutput * output = NULL;
if (from == NULL && fromnode->isOfType(SoNodeEngine::getClassTypeId())) {
output = ((SoNodeEngine*) fromnode)->getOutput(fromfieldname);
}
SbName fromnodename = fromnode->getName();
if (fromnodename == "") {
fromnodename = "<noname>";
}
SbName tonodename = tonode->getName();
if (tonodename == "") {
tonodename = "<noname>";
}
if (to && (from || output)) {
if (from) to->disconnect(from);
else to->disconnect(output);
}
#if COIN_DEBUG
else { // some error occured
SoDebugError::postWarning("SoDB::removeRoute",
"Unable to remove route: %s.%s TO %s.%s",
fromnodename.getString(), eventout,
tonodename.getString(), eventin);
}
#endif // COIN_DEBUG
}
/* *********************************************************************** */
#ifdef COIN_TEST_SUITE
#include <Inventor/SoInput.h>
#include <Inventor/SoInteraction.h>
#include <Inventor/errors/SoReadError.h>
#include <Inventor/fields/SoMFNode.h>
#include <Inventor/fields/SoSFTime.h>
#include <Inventor/nodekits/SoNodeKit.h>
#include <Inventor/nodes/SoGroup.h>
#include <Inventor/nodes/SoNode.h>
#include <Inventor/nodes/SoSeparator.h>
#include <Inventor/nodes/SoRotationXYZ.h>
BOOST_AUTO_TEST_CASE(globalRealTimeField)
{
SoSFTime * realtime = (SoSFTime *)SoDB::getGlobalField("realTime");
BOOST_REQUIRE(realtime != NULL);
BOOST_REQUIRE(realtime->getContainer() != NULL);
}
// Do-nothing error handler for ignoring read errors while testing.
static void
readErrorHandler(const SoError * error, void * data)
{
}
BOOST_AUTO_TEST_CASE(readChildList)
{
static const char scene[] = "#VRML V2.0 utf8\n"
"DEF TestGroup Group { children [Group{}, Group{}, Group{}] }";
SoInput in;
in.setBuffer((void *) scene, strlen(scene));
SoSeparator * root = SoDB::readAll(&in);
BOOST_REQUIRE(root);
root->ref();
SoGroup * group = (SoGroup *) SoNode::getByName("TestGroup");
BOOST_REQUIRE_MESSAGE(group->getNumChildren() == 3, "Unexpected number of children");
for (int i = 0; i < group->getNumChildren(); i++) {
BOOST_REQUIRE_MESSAGE(group->getChild(i)->isOfType(SoGroup::getClassTypeId()), "Unexpected type");
}
root->unref();
}
BOOST_AUTO_TEST_CASE(readEmptyChildList)
{
// FIXME: We are forced to restore the global state before terminating,
// or independent tests could fail. (sveinung 20071108)
SoErrorCB * prevErrorCB = SoReadError::getHandlerCallback();
SoReadError::setHandlerCallback(readErrorHandler, NULL);
static const char scene[] = "#VRML V2.0 utf8\n"
"DEF TestGroup Group { children }";
SoInput in;
in.setBuffer((void *) scene, strlen(scene));
SoSeparator * root = SoDB::readAll(&in);
if (root) {
SoGroup * group = (SoGroup *) SoNode::getByName("TestGroup");
BOOST_CHECK_MESSAGE(group->getNumChildren() == 0, "Should have no children");
}
BOOST_CHECK_MESSAGE(root == NULL, "Expected the import to fail");
SoReadError::setHandlerCallback(prevErrorCB, NULL);
}
BOOST_AUTO_TEST_CASE(readNullChildList)
{
// FIXME: We are forced to restore the global state before terminating,
// or independent tests could fail. (sveinung 20071108)
SoErrorCB * prevErrorCB = SoReadError::getHandlerCallback();
SoReadError::setHandlerCallback(readErrorHandler, NULL);
static const char scene[] = "#VRML V2.0 utf8\n"
"PROTO Object [ field MFNode testChildren NULL ] { }\n"
"DEF TestObject Object { }";
SoInput in;
in.setBuffer((void *) scene, strlen(scene));
SoSeparator * root = SoDB::readAll(&in);
if (root) {
SoNode * object = (SoNode *) SoNode::getByName("TestObject");
SoMFNode * field = (SoMFNode *) object->getField("testChildren");
BOOST_CHECK_MESSAGE(field->getNumNodes() == 0, "Should have no children");
}
BOOST_CHECK_MESSAGE(root == NULL, "Expected the import to fail");
SoReadError::setHandlerCallback(prevErrorCB, NULL);
}
BOOST_AUTO_TEST_CASE(readInvalidChildList)
{
// FIXME: We are forced to restore the global state before terminating,
// or independent tests could fail. (sveinung 20071108)
SoErrorCB * prevErrorCB = SoReadError::getHandlerCallback();
SoReadError::setHandlerCallback(readErrorHandler, NULL);
static const char scene[] = "#VRML V2.0 utf8\n"
"Group { children[0] }";
SoInput in;
in.setBuffer((void *) scene, strlen(scene));
SoSeparator * root = SoDB::readAll(&in);
BOOST_CHECK_MESSAGE(root == NULL, "Expected the import to fail");
SoReadError::setHandlerCallback(prevErrorCB, NULL);
}
BOOST_AUTO_TEST_CASE(testAlternateRepNull)
{
// FIXME: We are forced to restore the global state before terminating,
// or independent tests could fail. (sveinung 20071108)
SoErrorCB * prevErrorCB = SoReadError::getHandlerCallback();
SoReadError::setHandlerCallback(readErrorHandler, NULL);
static const char scene[] = "#Inventor V2.1 ascii\n"
"ExtensionNode { fields [ SFNode alternateRep ] }";
SoInput in;
in.setBuffer((void *) scene, strlen(scene));
SoSeparator * root = SoDB::readAll(&in);
BOOST_CHECK_MESSAGE(root, "Import should succeed");
root->ref();
root->unref();
SoReadError::setHandlerCallback(prevErrorCB, NULL);
}
BOOST_AUTO_TEST_CASE(testInitCleanup)
{
// init already called
SoDB::finish();
SoDB::init();
SoDB::finish();
//FIXME: This is not a true unittest, as it touches state for other functions.
// init for the conntinuing test running
SoDB::init();
SoNodeKit::init();
SoInteraction::init();
SIM::Coin3D::Coin::TestSuite::Init();
}
// *************************************************************************
// Tests whether or not our mechanisms with the realTime global field
// works correctly upon references to it in imported iv-files.
//
// (This test might be better suited in the SoGlobalField.cpp file,
// but that code doesn't implement a public API part, which causes
// hickups for the automated test-suite code-grabbing & setup.)
//
// -mortene
BOOST_AUTO_TEST_CASE(globalfield_import)
{
char scene[] =
"#Inventor V2.1 ascii\n\n"
"DEF rotnode RotationXYZ {"
" angle = GlobalField {"
" type \"SFTime\""
" realTime 0"
" }"
" . realTime "
"}";
SoInput * in = new SoInput;
in->setBuffer(scene, strlen(scene));
SoNode * g = NULL;
const SbBool readok = SoDB::read(in, g);
delete in;
// just to see that we're correct with the syntax
BOOST_CHECK_MESSAGE(readok,
"failed to read scene graph with realTime global field");
if (!readok) { return; }
g->ref();
SoSFTime * realtime = (SoSFTime *)SoDB::getGlobalField("realTime");
// supposed to get new value from file
BOOST_CHECK_MESSAGE(realtime->getValue().getValue() == 0.0,
"realTime global field value not updated from imported value");
SoRotationXYZ * r = (SoRotationXYZ *)
SoBase::getNamedBase("rotnode", SoRotationXYZ::getClassTypeId());
assert(r);
// check connection
SoField * master;
BOOST_CHECK_MESSAGE((r->angle.getNumConnections() == 1) &&
r->angle.getConnectedField(master) &&
(master == realtime),
"connection to realTime global field not set up properly");
g->unref();
}
// *************************************************************************
#endif // COIN_TEST_SUITE
|