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
|
/**************************************************************************\
*
* 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 SoWWWInline SoWWWInline.h Inventor/nodes/SoWWWInline.h
\brief The SoWWWInline class is a node used to include data from an URL.
\ingroup nodes
If the URL is not a local file, the application is responsible for
supplying a callback to a function which will fetch the data of the
URL.
As long as no data has been imported, the scenegraph representation
of the node will be that of a bounding box enclosing the geometry we
expect to fetch from the URL. The application is naturally also
responsible for specifying the expected dimensions of the geometry.
If FetchURLCallBack isn't set, the alternateRep will be rendered
instead.
<b>FILE FORMAT/DEFAULTS:</b>
\code
WWWInline {
name "<Undefined file>"
bboxCenter 0 0 0
bboxSize 0 0 0
alternateRep NULL
}
\endcode
\since SGI Inventor 2.1
\since Coin 1.0
*/
// *************************************************************************
// FIXME: as far as I can tell, SoWWWInline does not automatically
// trigger a (re-)load when the "SoWWWInline::name" field
// changes. Shouldn't it? Test what SGI/TGS Inventor does and mimic
// its behaviour. 20020522 mortene.
// FIXME: setting up the alternateRep field doesn't seem to work as
// expected (or at all, actually). This simple scene graph shown in an
// examiner viewer will not display the alternateRep for Coin, while
// SGI Inventor ivview will correctly show the Cone:
// ----8<-------------- [snip] -------8<-------------- [snip] -------------
// #Inventor V2.1 ascii
//
// WWWInline { alternateRep Group { BaseColor { rgb .2 .4 .6 } Cone { } } }
// ----8<-------------- [snip] -------8<-------------- [snip] -------------
// 20050315 mortene.
// *************************************************************************
#include <Inventor/nodes/SoWWWInline.h>
#include <stddef.h>
#include <stdlib.h>
#include <stdio.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /* HAVE_CONFIG_H */
#include <Inventor/SbColor.h>
#include <Inventor/actions/SoGetBoundingBoxAction.h>
#include <Inventor/actions/SoGLRenderAction.h>
#include <Inventor/actions/SoSearchAction.h>
#include <Inventor/elements/SoGLTextureEnabledElement.h>
#include <Inventor/elements/SoGLTexture3EnabledElement.h>
#include <Inventor/elements/SoLazyElement.h>
#include <Inventor/bundles/SoMaterialBundle.h>
#include <Inventor/misc/SoChildList.h>
#include <Inventor/SbColor.h>
#include <Inventor/nodes/SoSeparator.h>
#include <Inventor/SoInput.h>
#include <Inventor/SoDB.h>
#include <Inventor/errors/SoReadError.h>
#include <Inventor/errors/SoDebugError.h>
#include <Inventor/threads/SbStorage.h>
#include <Inventor/system/gl.h>
#include "tidbitsp.h"
#include "coindefs.h" // COIN_OBSOLETED()
#include "nodes/SoSubNodeP.h"
// *************************************************************************
/*!
\enum SoWWWInline::BboxVisibility
Used to enumerate bbox rendering strategies.
*/
/*!
\var SoWWWInline::BboxVisibility SoWWWInline::NEVER
Never render bounding box.
*/
/*!
\var SoWWWInline::BboxVisibility SoWWWInline::UNTIL_LOADED
Render bounding box until children are loaded.
*/
/*!
\var SoWWWInline::BboxVisibility SoWWWInline::ALWAYS
Always render bounding box, event when children are loaded.
*/
/*!
\var SoSFString SoWWWInline::name
Name of file/URL where children should be read.
*/
/*!
\var SoSFVec3f SoWWWInline::bboxCenter
Center of bounding box.
*/
/*!
\var SoSFVec3f SoWWWInline::bboxSize
Size of bounding box.
*/
/*!
\var SoSFNode SoWWWInline::alternateRep
Alternate representation. Used when children can't be read from name.
*/
// *************************************************************************
// static members
SoWWWInlineFetchURLCB * SoWWWInline::fetchurlcb = NULL;
void * SoWWWInline::fetchurlcbdata = NULL;
SbColor * SoWWWInline::bboxcolor = NULL;
static SbStorage * wwwinline_colorpacker_storage = NULL;
SoWWWInline::BboxVisibility SoWWWInline::bboxvisibility = SoWWWInline::UNTIL_LOADED;
SbBool SoWWWInline::readassofile = FALSE;
static void alloc_colorpacker(void * ptr)
{
SoColorPacker ** cptr = (SoColorPacker**) ptr;
*cptr = new SoColorPacker;
}
static void free_colorpacker(void * ptr)
{
SoColorPacker ** cptr = (SoColorPacker**) ptr;
delete *cptr;
}
void
SoWWWInline::cleanup(void)
{
delete SoWWWInline::bboxcolor;
SoWWWInline::bboxcolor = NULL;
delete wwwinline_colorpacker_storage;
wwwinline_colorpacker_storage = NULL;
SoWWWInline::fetchurlcb = NULL;
SoWWWInline::fetchurlcbdata = NULL;
SoWWWInline::bboxvisibility = SoWWWInline::UNTIL_LOADED;
SoWWWInline::readassofile = FALSE;
}
// *************************************************************************
class SoWWWInlineP {
public:
SoWWWInlineP(SoWWWInline * ownerptr) {
this->owner = ownerptr;
}
SoWWWInline * owner;
SoChildList * children;
SbBool readNamedFile();
SbBool readChildren();
SbString fullname;
SbBool didrequest;
static const char UNDEFINED_FILE[];
};
const char SoWWWInlineP::UNDEFINED_FILE[] = "<Undefined file>";
#define PRIVATE(obj) ((obj)->pimpl)
// *************************************************************************
SO_NODE_SOURCE(SoWWWInline);
// *************************************************************************
/*!
Constructor.
*/
SoWWWInline::SoWWWInline()
{
SO_NODE_INTERNAL_CONSTRUCTOR(SoWWWInline);
PRIVATE(this) = new SoWWWInlineP(this);
PRIVATE(this)->children = new SoChildList(this);
PRIVATE(this)->didrequest = FALSE;
SO_NODE_ADD_FIELD(name, (SoWWWInlineP::UNDEFINED_FILE));
SO_NODE_ADD_FIELD(bboxCenter, (0.0f, 0.0f, 0.0f));
SO_NODE_ADD_FIELD(bboxSize, (0.0f, 0.0f, 0.0f));
SO_NODE_ADD_FIELD(alternateRep, (NULL));
// Instantiated dynamically to avoid problems on platforms with
// systemloaders that hate static constructors in C++ libraries.
if (SoWWWInline::bboxcolor == NULL) {
SoWWWInline::bboxcolor = new SbColor(0.8f, 0.8f, 0.8f);
wwwinline_colorpacker_storage = new SbStorage(sizeof(void*), alloc_colorpacker, free_colorpacker);
coin_atexit((coin_atexit_f *)SoWWWInline::cleanup, CC_ATEXIT_NORMAL);
}
}
/*!
Destructor.
*/
SoWWWInline::~SoWWWInline()
{
delete PRIVATE(this)->children;
delete PRIVATE(this);
}
// doc in super
void
SoWWWInline::initClass(void)
{
SO_NODE_INTERNAL_INIT_CLASS(SoWWWInline, SO_FROM_INVENTOR_2_1|SoNode::VRML1);
}
/*!
If the SoWWWInline::name field specifies a relative URL, use this
method to name the complete URL.
*/
void
SoWWWInline::setFullURLName(const SbString & url)
{
PRIVATE(this)->fullname = url;
}
/*!
If a full URL has been set with the SoWWWInline::setFullURLName()
method, return it. If not, returns the value of the
SoWWWInline::name field.
*/
const SbString &
SoWWWInline::getFullURLName(void)
{
return PRIVATE(this)->fullname.getLength() ? PRIVATE(this)->fullname : this->name.getValue();
}
/*!
Returns a subgraph with a deep copy of the children of this node.
*/
SoGroup *
SoWWWInline::copyChildren(void) const
{
SoChildList * children = this->getChildren();
if (children->getLength() == 0) return NULL;
assert(children->getLength() == 1);
SoNode * rootcopy = (*children)[0]->copy();
assert(rootcopy->isOfType(SoGroup::getClassTypeId()));
return (SoGroup *) rootcopy;
}
/*!
Start requesting URL data. This might trigger a callback to
the callback set in SoWWWInline::setFetchURLCallBack().
*/
void
SoWWWInline::requestURLData(void)
{
if (!PRIVATE(this)->didrequest) {
PRIVATE(this)->didrequest = TRUE;
(void) PRIVATE(this)->readChildren();
}
}
/*!
Returns \c TRUE if SoWWWInline::requestURLData() has been called
without being canceled by SoWWWInline::cancelURLData().
*/
SbBool
SoWWWInline::isURLDataRequested(void) const
{
return PRIVATE(this)->didrequest;
}
/*!
Return \c TRUE if the current child data has been read from file/URL
and set using setChildData().
*/
SbBool
SoWWWInline::isURLDataHere(void) const
{
SoChildList * children = this->getChildren();
if (children->getLength() == 0 ||
(*children)[0] == this->alternateRep.getValue()) return FALSE;
return FALSE;
}
/*!
Can be used to signal that URL loading has been canceled. You
should use this method if you intend to request URL data more than
once.
*/
void
SoWWWInline::cancelURLDataRequest(void)
{
PRIVATE(this)->didrequest = FALSE;
}
/*!
Manually set up the subgraph for this node. This should be used
by the application to set the data that was read from the file/URL.
*/
void
SoWWWInline::setChildData(SoNode * urldata)
{
PRIVATE(this)->children->truncate(0);
PRIVATE(this)->children->append(urldata);
}
/*!
Returns the child data for this node. This can be data read from a
file, from an URL, from the contents of SoWWWInline::alternateRep or
that was manually set with SoWWWInline::setChildData().
*/
SoNode *
SoWWWInline::getChildData(void) const
{
if (PRIVATE(this)->children->getLength()) { return (*PRIVATE(this)->children)[0]; }
return NULL;
}
/*!
Sets the URL fetch callback. This will be used in
SoWWWInline::readInstance() or when the user calls
SoWWWInline::requestURLData().
// FIXME: Shouldn't called on readInstance(), only when we need to
// render the node (or calculate the bbox if we don't have one). kintel 20060203.
*/
void
SoWWWInline::setFetchURLCallBack(SoWWWInlineFetchURLCB * f,
void * userdata)
{
SoWWWInline::fetchurlcb = f;
SoWWWInline::fetchurlcbdata = userdata;
}
/*!
Sets the bounding box visibility strategy.
The default is UNTIL_LOADED.
*/
void
SoWWWInline::setBoundingBoxVisibility(BboxVisibility b)
{
SoWWWInline::bboxvisibility = b;
}
/*!
Returns the bounding box visibility.
*/
SoWWWInline::BboxVisibility
SoWWWInline::getBoundingBoxVisibility(void)
{
return SoWWWInline::bboxvisibility;
}
/*!
Sets the bounding box color.
*/
void
SoWWWInline::setBoundingBoxColor(SbColor & c)
{
*SoWWWInline::bboxcolor = c;
}
/*!
Returns the bounding box color.
*/
const SbColor &
SoWWWInline::getBoundingBoxColor(void)
{
return *SoWWWInline::bboxcolor;
}
/*!
Sets whether children should be read from a local file, in the same
manner as SoFile children are read.
If this is set to \c TRUE, the URL must point to a file on the local
file system, as can be accessed by the standard C library fopen()
call.
*/
void
SoWWWInline::setReadAsSoFile(SbBool onoff)
{
SoWWWInline::readassofile = onoff;
}
/*!
Returns if children should be read from local files.
\sa setReadAsSoFile()
*/
SbBool
SoWWWInline::getReadAsSoFile(void)
{
return SoWWWInline::readassofile;
}
// Documented in superclass. Overridden to render children and/or
// bounding box.
void
SoWWWInline::GLRender(SoGLRenderAction * action)
{
if (this->getChildData()) {
SoWWWInline::doAction(action);
if (SoWWWInline::bboxvisibility == UNTIL_LOADED) return;
}
if (SoWWWInline::bboxvisibility == NEVER) return;
SoState * state = action->getState();
state->push();
SoColorPacker ** cptr = (SoColorPacker**) wwwinline_colorpacker_storage->get();
SoLazyElement::setDiffuse(state, this, 1, SoWWWInline::bboxcolor, *cptr);
// disable lighting
SoLazyElement::setLightModel(state, SoLazyElement::BASE_COLOR);
// disable texture mapping
SoGLTextureEnabledElement::set(state, this, FALSE);
SoGLTexture3EnabledElement::set(state, this, FALSE);
SoMaterialBundle mb(action);
mb.sendFirst(); // set current color
float cx, cy, cz;
this->bboxCenter.getValue().getValue(cx, cy, cz);
float x0, y0, z0;
this->bboxSize.getValue().getValue(x0, y0, z0);
x0 = -x0/2.0f + cx;
y0 = -y0/2.0f + cy;
z0 = -z0/2.0f + cz;
float x1, y1, z1;
this->bboxSize.getValue().getValue(x1, y1, z1);
x1 = x1/2.0f + cx;
y1 = y1/2.0f + cy;
z1 = z1/2.0f + cz;
glBegin(GL_LINE_LOOP);
glVertex3f(x0, y0, z0);
glVertex3f(x1, y0, z0);
glVertex3f(x1, y1, z0);
glVertex3f(x0, y1, z0);
glEnd();
glBegin(GL_LINE_LOOP);
glVertex3f(x0, y0, z1);
glVertex3f(x1, y0, z1);
glVertex3f(x1, y1, z1);
glVertex3f(x0, y1, z1);
glEnd();
glBegin(GL_LINES);
glVertex3f(x0, y0, z0);
glVertex3f(x0, y0, z1);
glVertex3f(x0, y1, z0);
glVertex3f(x0, y1, z1);
glVertex3f(x1, y0, z0);
glVertex3f(x1, y0, z1);
glVertex3f(x1, y1, z0);
glVertex3f(x1, y1, z1);
glEnd();
state->pop(); // restore state
}
// doc in super
void
SoWWWInline::getBoundingBox(SoGetBoundingBoxAction * action)
{
if (this->getChildren()->getLength()) {
int numindices;
const int * indices;
int lastchildindex;
if (action->getPathCode(numindices, indices) == SoAction::IN_PATH)
lastchildindex = indices[numindices-1];
else
lastchildindex = this->getChildren()->getLength() - 1;
assert(lastchildindex < this->getChildren()->getLength());
// Initialize accumulation variables.
SbVec3f acccenter(0.0f, 0.0f, 0.0f);
int numcenters = 0;
for (int i = 0; i <= lastchildindex; i++) {
this->getChildren()->traverse(action, i);
// If center point is set, accumulate.
if (action->isCenterSet()) {
acccenter += action->getCenter();
numcenters++;
action->resetCenter();
}
}
if (numcenters != 0)
action->setCenter(acccenter / float(numcenters), FALSE);
}
else {
SbVec3f halfsize = bboxSize.getValue()/2.0f;
SbVec3f center = bboxCenter.getValue();
action->extendBy(SbBox3f(-halfsize[0] + center[0],
-halfsize[1] + center[1],
-halfsize[2] + center[2],
halfsize[0] + center[0],
halfsize[1] + center[1],
halfsize[2] + center[2]));
assert(! action->isCenterSet());
action->setCenter(center, TRUE);
}
}
/*!
Returns the child list with the child data for this node.
*/
SoChildList *
SoWWWInline::getChildren(void) const
{
return PRIVATE(this)->children;
}
// doc in super
void
SoWWWInline::doAction(SoAction * action)
{
if (this->getChildren()->getLength()) {
int numindices;
const int * indices;
if (action->getPathCode(numindices, indices) == SoAction::IN_PATH) {
this->getChildren()->traverseInPath(action, numindices, indices);
}
else {
this->getChildren()->traverse((SoAction *)action);
}
}
}
/*!
This method should probably have been private in OIV. It is
obsoleted in Coin. Let us know if you need it.
*/
void
SoWWWInline::doActionOnKidsOrBox(SoAction * action)
{
COIN_OBSOLETED();
}
// doc in super
void
SoWWWInline::callback(SoCallbackAction * action)
{
SoWWWInline::doAction((SoAction *)action);
}
// doc in super
void
SoWWWInline::getMatrix(SoGetMatrixAction * action)
{
SoWWWInline::doAction((SoAction *)action);
}
// doc in super
void
SoWWWInline::handleEvent(SoHandleEventAction * action)
{
SoWWWInline::doAction((SoAction *)action);
}
// doc in super
void
SoWWWInline::search(SoSearchAction * action)
{
SoNode::search(action);
if (!action->isFound()) {
SoWWWInline::doAction(action);
}
}
// doc in super
void
SoWWWInline::pick(SoPickAction * action)
{
SoWWWInline::doAction((SoAction *)action);
}
// doc in super
void
SoWWWInline::getPrimitiveCount(SoGetPrimitiveCountAction * action)
{
SoWWWInline::doAction((SoAction *)action);
}
// doc in super
void
SoWWWInline::audioRender(SoAudioRenderAction * action)
{
SoWWWInline::doAction((SoAction *)action);
}
/*!
Convenience method that extends the current bounding box to
include the box specified by \a center and \a size.
*/
void
SoWWWInline::addBoundingBoxChild(SbVec3f center, SbVec3f size)
{
SbVec3f orgsize = this->bboxSize.getValue();
SbVec3f orgcenter = this->bboxCenter.getValue();
orgsize *= 0.5f;
SbBox3f bbox(orgcenter-orgsize, orgcenter+orgsize);
size *= 0.5f;
SbBox3f newbox(center-size, center+size);
bbox.extendBy(newbox);
this->bboxCenter = bbox.getCenter();
bbox.getSize(size[0], size[1], size[2]);
this->bboxSize = size;
}
// Documented in superclass. Overridden to fetch/read child data.
SbBool
SoWWWInline::readInstance(SoInput * in, unsigned short flags)
{
SbBool ret = inherited::readInstance(in, flags);
if (ret) {
ret = PRIVATE(this)->readChildren();
}
return ret;
}
// Documented in superclass. Overridden to copy children.
void
SoWWWInline::copyContents(const SoFieldContainer * fromfc,
SbBool copyconnections)
{
this->getChildren()->truncate(0);
inherited::copyContents(fromfc, copyconnections);
SoWWWInline * inlinenode = (SoWWWInline *) fromfc;
if (inlinenode->getChildren()->getLength() == 0) return;
assert(inlinenode->getChildren()->getLength() == 1);
SoNode * cp = (SoNode *)
SoFieldContainer::findCopy((*(inlinenode->getChildren()))[0], copyconnections);
this->getChildren()->append(cp);
}
#undef PRIVATE
// *************************************************************************
// Read the file named in the name field.
SbBool
SoWWWInlineP::readNamedFile()
{
// If we can't find file, ignore it. Note that this does not match
// the way Inventor works, which will make the whole read process
// exit with a failure code.
SoInput in;
SbString name = this->owner->getFullURLName();
if (!in.openFile(name.getString())) return TRUE;
SoSeparator * node = SoDB::readAll(&in);
// Popping the file off the stack again is done implicit in SoInput
// upon hitting EOF (unless the read fails, see below).
if (node) {
this->children->truncate(0);
this->children->append((SoNode *)node);
}
else {
// Note that we handle this differently than Inventor, which lets
// the whole import fail.
SoReadError::post(&in, "Unable to read subfile: ``%s''",
name.getString());
}
return TRUE;
}
/*!
Read children, either using the URL callback or by reading from
local file directly.
fetchURLCB is NULL: Use alternaterep. NB! Always uses alternate rep
in this case.
else name not set: Do nothing
else readassofile is TRUE: Assume name points to a local file and load
automatically without using fetchURLCB.
*/
SbBool
SoWWWInlineP::readChildren()
{
if (!SoWWWInline::fetchurlcb) {
if (this->owner->alternateRep.getValue()) {
this->owner->setChildData(this->owner->alternateRep.getValue());
}
}
else if (this->owner->name.getValue() != SoWWWInlineP::UNDEFINED_FILE) {
if (SoWWWInline::readassofile) {
return this->readNamedFile();
}
else {
SoWWWInline::fetchurlcb(this->owner->getFullURLName(),
SoWWWInline::fetchurlcbdata,
this->owner);
}
}
return TRUE;
}
|