[508] | 1 | // ---------------------------------------------------------------------------
|
---|
| 2 | // Includes for all the program files to see
|
---|
| 3 | // ---------------------------------------------------------------------------
|
---|
| 4 | #include <string.h>
|
---|
| 5 | #include <stdlib.h>
|
---|
| 6 | #include <iostream>
|
---|
| 7 | using namespace std;
|
---|
| 8 | #include <xercesc/util/PlatformUtils.hpp>
|
---|
| 9 |
|
---|
| 10 | // ---------------------------------------------------------------------------
|
---|
| 11 | // Includes
|
---|
| 12 | // ---------------------------------------------------------------------------
|
---|
| 13 | #include <xercesc/framework/StdInInputSource.hpp>
|
---|
| 14 | #include <xercesc/parsers/SAXParser.hpp>
|
---|
| 15 | #include <xercesc/util/OutOfMemoryException.hpp>
|
---|
| 16 |
|
---|
| 17 | // ---------------------------------------------------------------------------
|
---|
| 18 | // Includes
|
---|
| 19 | // ---------------------------------------------------------------------------
|
---|
| 20 | #include <xercesc/sax/AttributeList.hpp>
|
---|
| 21 | #include <xercesc/sax/SAXParseException.hpp>
|
---|
| 22 | #include <xercesc/sax/SAXException.hpp>
|
---|
| 23 |
|
---|
| 24 | #include "ViewCellsParser.h"
|
---|
| 25 |
|
---|
| 26 | #include "ViewCellsParserXerces.h"
|
---|
| 27 | #include "Mesh.h"
|
---|
| 28 | #include "VspBspTree.h"
|
---|
| 29 | #include "ViewCellBsp.h"
|
---|
[590] | 30 | #include "VspKdTree.h"
|
---|
[508] | 31 | #include "ViewCellsManager.h"
|
---|
| 32 |
|
---|
| 33 | // ---------------------------------------------------------------------------
|
---|
| 34 | // Local data
|
---|
| 35 | //
|
---|
| 36 | // doNamespaces
|
---|
| 37 | // Indicates whether namespace processing should be enabled or not.
|
---|
| 38 | // The default is no, but -n overrides that.
|
---|
| 39 | //
|
---|
| 40 | // doSchema
|
---|
| 41 | // Indicates whether schema processing should be enabled or not.
|
---|
| 42 | // The default is no, but -s overrides that.
|
---|
| 43 | //
|
---|
| 44 | // schemaFullChecking
|
---|
| 45 | // Indicates whether full schema constraint checking should be enabled or not.
|
---|
| 46 | // The default is no, but -s overrides that.
|
---|
| 47 | //
|
---|
| 48 | // valScheme
|
---|
| 49 | // Indicates what validation scheme to use. It defaults to 'auto', but
|
---|
| 50 | // can be set via the -v= command.
|
---|
| 51 | // ---------------------------------------------------------------------------
|
---|
| 52 | static bool doNamespaces = false;
|
---|
| 53 | static bool doSchema = false;
|
---|
| 54 | static bool schemaFullChecking = false;
|
---|
| 55 | static SAXParser::ValSchemes valScheme = SAXParser::Val_Auto;
|
---|
| 56 |
|
---|
| 57 |
|
---|
| 58 |
|
---|
| 59 |
|
---|
| 60 |
|
---|
| 61 | // ---------------------------------------------------------------------------
|
---|
| 62 | // StdInParseHandlers: Constructors and Destructor
|
---|
| 63 | // ---------------------------------------------------------------------------
|
---|
[577] | 64 | ViewCellsParseHandlers::ViewCellsParseHandlers(ObjectContainer *objects):
|
---|
[508] | 65 | mElementCount(0)
|
---|
| 66 | , mAttrCount(0)
|
---|
| 67 | , mCharacterCount(0)
|
---|
| 68 | , mSpaceCount(0)
|
---|
[577] | 69 | , mViewCellsManager(NULL)
|
---|
| 70 | , mVspBspTree(NULL)
|
---|
| 71 | , mBspTree(NULL)
|
---|
[651] | 72 | , mViewCellsTree(NULL)
|
---|
| 73 | , mParseViewCells(true)
|
---|
| 74 | , mCurrentViewCell(NULL)
|
---|
| 75 | , mCurrentBspNode(NULL)
|
---|
[508] | 76 | {
|
---|
| 77 | mObjects = objects;
|
---|
| 78 | }
|
---|
| 79 |
|
---|
[575] | 80 |
|
---|
[508] | 81 | ViewCellsParseHandlers::~ViewCellsParseHandlers()
|
---|
| 82 | {
|
---|
| 83 | }
|
---|
| 84 |
|
---|
| 85 |
|
---|
| 86 | // ---------------------------------------------------------------------------
|
---|
| 87 | // StdInParseHandlers: Implementation of the SAX DocumentHandler interface
|
---|
| 88 | // ---------------------------------------------------------------------------
|
---|
| 89 |
|
---|
| 90 |
|
---|
| 91 | void ViewCellsParseHandlers::endElement(const XMLCh* const name)
|
---|
| 92 | {
|
---|
| 93 | StrX lname(name);
|
---|
| 94 | string element(lname.LocalForm());
|
---|
[651] | 95 |
|
---|
[508] | 96 | if (element == "ViewCells")
|
---|
| 97 | EndViewCells();
|
---|
[651] | 98 |
|
---|
| 99 | if (mParseViewCells)
|
---|
| 100 | {
|
---|
| 101 | if (element == "Interior")
|
---|
| 102 | EndViewCellInterior();
|
---|
| 103 | }
|
---|
| 104 | else
|
---|
| 105 | {
|
---|
| 106 | if (element == "Interior")
|
---|
| 107 | EndBspInterior();
|
---|
| 108 | }
|
---|
[508] | 109 | }
|
---|
| 110 |
|
---|
| 111 |
|
---|
[575] | 112 | void ViewCellsParseHandlers::EndBspInterior()
|
---|
[508] | 113 | {
|
---|
| 114 | // go one up in the tree
|
---|
[590] | 115 | if (mCurrentBspNode->GetParent())
|
---|
[508] | 116 | { cout << "]";
|
---|
[590] | 117 | mCurrentBspNode = mCurrentBspNode->GetParent();
|
---|
[508] | 118 | }
|
---|
| 119 | }
|
---|
| 120 |
|
---|
| 121 |
|
---|
[651] | 122 | void ViewCellsParseHandlers::EndViewCellInterior()
|
---|
| 123 | {
|
---|
| 124 | // go one up in the tree
|
---|
| 125 | if (mCurrentViewCell->GetParent())
|
---|
| 126 | { cout << "]";
|
---|
| 127 | mCurrentViewCell = mCurrentViewCell->GetParent();
|
---|
| 128 | }
|
---|
| 129 | }
|
---|
| 130 |
|
---|
[508] | 131 | inline bool vlt(ViewCell *v1, ViewCell *v2)
|
---|
| 132 | {
|
---|
| 133 | return v1->mId < v2->mId;
|
---|
| 134 | }
|
---|
| 135 |
|
---|
| 136 |
|
---|
| 137 | void ViewCellsParseHandlers::EndViewCells()
|
---|
| 138 | {
|
---|
[575] | 139 | // sort view cells to help associating view cells according to their id
|
---|
[508] | 140 | stable_sort(mViewCells.begin(), mViewCells.end(), vlt);
|
---|
| 141 | }
|
---|
| 142 |
|
---|
| 143 |
|
---|
[575] | 144 |
|
---|
| 145 | void ViewCellsParseHandlers::StartHierarchy(AttributeList& attributes)
|
---|
[508] | 146 | {
|
---|
[575] | 147 | int len = attributes.getLength();
|
---|
| 148 |
|
---|
| 149 | for (int i = 0; i < len; ++ i)
|
---|
| 150 | {
|
---|
| 151 | string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 152 |
|
---|
| 153 | if (attrName == "name")
|
---|
| 154 | {
|
---|
| 155 | StrX attrValue(attributes.getValue(i));
|
---|
| 156 |
|
---|
| 157 | const char *ptr = attrValue.LocalForm();
|
---|
| 158 |
|
---|
| 159 | CreateViewCellsManager(ptr);
|
---|
| 160 | }
|
---|
| 161 | }
|
---|
| 162 | }
|
---|
| 163 |
|
---|
| 164 |
|
---|
| 165 | void ViewCellsParseHandlers::startBspElement(string element,
|
---|
| 166 | AttributeList& attributes)
|
---|
| 167 | {
|
---|
[508] | 168 | if (element == "Interior")
|
---|
| 169 | {
|
---|
| 170 | cout << "[";
|
---|
[575] | 171 | StartBspInterior(attributes);
|
---|
[508] | 172 | }
|
---|
| 173 |
|
---|
| 174 | if (element == "Leaf")
|
---|
| 175 | {
|
---|
[651] | 176 | cout << "l";
|
---|
| 177 | Debug << "leaf" << endl;
|
---|
[575] | 178 | StartBspLeaf(attributes);
|
---|
[508] | 179 | }
|
---|
[575] | 180 | }
|
---|
[508] | 181 |
|
---|
[575] | 182 |
|
---|
| 183 | void ViewCellsParseHandlers::startElement(const XMLCh* const name,
|
---|
| 184 | AttributeList& attributes)
|
---|
| 185 | {
|
---|
| 186 | StrX lname(name);
|
---|
| 187 | string element(lname.LocalForm());
|
---|
[577] | 188 |
|
---|
| 189 | // decides the used view cell hierarchy
|
---|
[651] | 190 | if (element == "ViewCells")
|
---|
| 191 | {
|
---|
| 192 | cout << "parsing view cells" << endl;
|
---|
| 193 | mParseViewCells = true;
|
---|
| 194 | }
|
---|
| 195 |
|
---|
[575] | 196 | if (element == "Hierarchy")
|
---|
| 197 | {
|
---|
[651] | 198 | cout << "parsing spatial hierarchy" << endl;
|
---|
| 199 | mParseViewCells = false;
|
---|
[575] | 200 | StartHierarchy(attributes);
|
---|
| 201 | }
|
---|
[577] | 202 |
|
---|
| 203 | // decides the used view cell hierarchy
|
---|
| 204 | if (element == "ViewSpaceBox")
|
---|
| 205 | {
|
---|
[651] | 206 | cout << "b";
|
---|
[577] | 207 | StartViewSpaceBox(attributes);
|
---|
| 208 | }
|
---|
[575] | 209 |
|
---|
[577] | 210 |
|
---|
| 211 | // use different methods for the given view cell hierarchy types
|
---|
[651] | 212 | if (!mParseViewCells)
|
---|
[577] | 213 | {
|
---|
[651] | 214 | if (mViewCellsManager)
|
---|
[577] | 215 | {
|
---|
[651] | 216 | switch (mViewCellsManager->GetType())
|
---|
| 217 | {
|
---|
| 218 | case ViewCellsManager::BSP:
|
---|
| 219 | case ViewCellsManager::VSP_BSP:
|
---|
| 220 | startBspElement(element, attributes);
|
---|
| 221 | break;
|
---|
[575] | 222 |
|
---|
[651] | 223 | default:
|
---|
| 224 | Debug << "not implemented" << endl;
|
---|
| 225 | break;
|
---|
| 226 | }
|
---|
[577] | 227 | }
|
---|
| 228 | }
|
---|
[651] | 229 | else
|
---|
| 230 | {
|
---|
| 231 | if (element == "Interior")
|
---|
| 232 | {
|
---|
| 233 | cout << "[";
|
---|
| 234 | StartViewCellInterior(attributes);
|
---|
| 235 | }
|
---|
[575] | 236 |
|
---|
[651] | 237 | if (element == "Leaf")
|
---|
| 238 | {
|
---|
| 239 | cout << "l";
|
---|
| 240 | StartViewCellLeaf(attributes);
|
---|
| 241 | }
|
---|
| 242 | }
|
---|
| 243 |
|
---|
[508] | 244 | ++ mElementCount;
|
---|
| 245 | mAttrCount += attributes.getLength();
|
---|
| 246 | }
|
---|
| 247 |
|
---|
| 248 |
|
---|
| 249 | inline bool ilt(Intersectable *obj1, Intersectable *obj2)
|
---|
| 250 | {
|
---|
| 251 | return obj1->mId < obj2->mId;
|
---|
| 252 | }
|
---|
| 253 |
|
---|
| 254 |
|
---|
[651] | 255 | void ViewCellsParseHandlers::StartViewCell(ViewCell *viewCell, AttributeList& attributes)
|
---|
[508] | 256 | {
|
---|
| 257 | int len = attributes.getLength();
|
---|
| 258 | vector<int> objIndices;
|
---|
[590] | 259 |
|
---|
[508] | 260 | for (int i = 0; i < len; ++ i)
|
---|
| 261 | {
|
---|
| 262 | string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 263 |
|
---|
| 264 | if (attrName == "pvs")
|
---|
| 265 | {
|
---|
| 266 | StrX attrValue(attributes.getValue(i));
|
---|
| 267 |
|
---|
| 268 | // handle coordIndex
|
---|
| 269 | objIndices.clear();
|
---|
| 270 | const char *ptr = attrValue.LocalForm();
|
---|
| 271 | char *endptr;
|
---|
| 272 |
|
---|
| 273 | while (1)
|
---|
| 274 | {
|
---|
| 275 | int index = strtol(ptr, &endptr, 10);
|
---|
| 276 |
|
---|
| 277 | if (ptr == endptr)
|
---|
| 278 | break;
|
---|
| 279 |
|
---|
| 280 | objIndices.push_back(index);
|
---|
| 281 |
|
---|
| 282 | ptr = endptr;
|
---|
| 283 | }
|
---|
| 284 |
|
---|
| 285 | //TODO: find objects and add them to pvs
|
---|
| 286 | // TODO: get view cell with specified id
|
---|
| 287 | MeshInstance dummyInst(NULL);
|
---|
| 288 |
|
---|
| 289 | vector<int>::const_iterator it, it_end = objIndices.end();
|
---|
| 290 | for (it = objIndices.begin(); it != it_end; ++ it)
|
---|
| 291 | {
|
---|
| 292 | const int objId = *it;
|
---|
| 293 | dummyInst.SetId(objId);
|
---|
| 294 |
|
---|
| 295 | ObjectContainer::iterator oit =
|
---|
[556] | 296 | lower_bound(mObjects->begin(), mObjects->end(), &dummyInst, ilt);
|
---|
| 297 |
|
---|
[508] | 298 | Intersectable *obj = *oit;
|
---|
| 299 |
|
---|
| 300 | if (obj->GetId() == objId)
|
---|
| 301 | {
|
---|
[556] | 302 | // $$JB we should store a float a per object which corresponds
|
---|
| 303 | // to sumof pdfs, i.e. its relative visibility
|
---|
| 304 | // temporarily set to 1.0f
|
---|
| 305 | viewCell->GetPvs().AddSample(obj, 1.0f);
|
---|
[508] | 306 | }
|
---|
| 307 | else
|
---|
| 308 | {
|
---|
| 309 | Debug << "error: object does not exist" << endl;
|
---|
| 310 | }
|
---|
| 311 | }
|
---|
| 312 | }
|
---|
| 313 | else if (attrName == "id")
|
---|
| 314 | {
|
---|
| 315 | StrX attrValue(attributes.getValue(i));
|
---|
| 316 |
|
---|
| 317 | const char *ptr = attrValue.LocalForm();
|
---|
| 318 | char *endptr = NULL;
|
---|
| 319 | const int id = strtol(ptr, &endptr, 10);
|
---|
| 320 |
|
---|
| 321 | viewCell->SetId(id);
|
---|
| 322 | }
|
---|
[651] | 323 | else if (attrName == "active")
|
---|
| 324 | {
|
---|
| 325 | StrX attrValue(attributes.getValue(i));
|
---|
| 326 |
|
---|
| 327 | const char *ptr = attrValue.LocalForm();
|
---|
| 328 | char *endptr = NULL;
|
---|
| 329 | const bool isActive = (bool)strtol(ptr, &endptr, 10);
|
---|
| 330 |
|
---|
| 331 | viewCell->mIsActive = isActive;
|
---|
| 332 | }
|
---|
| 333 | else if (attrName == "mergecost")
|
---|
| 334 | {
|
---|
| 335 | StrX attrValue(attributes.getValue(i));
|
---|
| 336 |
|
---|
| 337 | const char *ptr = attrValue.LocalForm();
|
---|
| 338 | char *endptr = NULL;
|
---|
| 339 | const float cost = (float)strtod(ptr, &endptr);
|
---|
| 340 |
|
---|
| 341 | viewCell->SetMergeCost(cost);
|
---|
| 342 | }
|
---|
[508] | 343 | }
|
---|
| 344 | }
|
---|
| 345 |
|
---|
| 346 |
|
---|
[577] | 347 | void ViewCellsParseHandlers::StartViewSpaceBox(AttributeList& attributes)
|
---|
| 348 | {
|
---|
| 349 | int len = attributes.getLength();
|
---|
| 350 |
|
---|
| 351 | Vector3 bmin, bmax;
|
---|
| 352 |
|
---|
| 353 | for (int i = 0; i < len; ++ i)
|
---|
| 354 | {
|
---|
| 355 | string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 356 | StrX attrValue(attributes.getValue(i));
|
---|
| 357 | const char *ptr = attrValue.LocalForm();
|
---|
| 358 |
|
---|
| 359 | if (attrName == "min")
|
---|
| 360 | {
|
---|
| 361 | sscanf(ptr, "%f %f %f",
|
---|
| 362 | &bmin.x, &bmin.y, &bmin.z);
|
---|
| 363 | }
|
---|
| 364 | else if (attrName == "max")
|
---|
| 365 | {
|
---|
| 366 | sscanf(ptr, "%f %f %f",
|
---|
| 367 | &bmax.x, &bmax.y, &bmax.z);
|
---|
| 368 | }
|
---|
| 369 | }
|
---|
| 370 |
|
---|
| 371 | mViewSpaceBox = AxisAlignedBox3(bmin, bmax);
|
---|
| 372 |
|
---|
| 373 | Debug << "view space box: " << mViewSpaceBox << endl;
|
---|
| 374 | }
|
---|
| 375 |
|
---|
| 376 |
|
---|
[575] | 377 | void ViewCellsParseHandlers::StartBspLeaf(AttributeList& attributes)
|
---|
[508] | 378 | {
|
---|
| 379 | BspLeaf * leaf =
|
---|
[590] | 380 | new BspLeaf(dynamic_cast<BspInterior *>(mCurrentBspNode), NULL);
|
---|
[508] | 381 |
|
---|
[590] | 382 | if (mCurrentBspNode) // replace front or (if not NULL) back child
|
---|
[508] | 383 | {
|
---|
[590] | 384 | dynamic_cast<BspInterior *>(mCurrentBspNode)->ReplaceChildLink(NULL, leaf);
|
---|
[508] | 385 | }
|
---|
| 386 | else
|
---|
| 387 | {
|
---|
[575] | 388 | if (mViewCellsManager->GetType() == ViewCellsManager::BSP)
|
---|
[577] | 389 | {
|
---|
[575] | 390 | mBspTree->mRoot = leaf;
|
---|
[577] | 391 | }
|
---|
| 392 | else if (mViewCellsManager->GetType() == ViewCellsManager::VSP_BSP)
|
---|
| 393 | {
|
---|
[575] | 394 | mVspBspTree->mRoot = leaf;
|
---|
[577] | 395 | }
|
---|
[508] | 396 | }
|
---|
| 397 |
|
---|
| 398 | //-- find associated view cell
|
---|
| 399 | int viewCellId;
|
---|
| 400 |
|
---|
| 401 | int len = attributes.getLength();
|
---|
| 402 |
|
---|
| 403 | for (int i = 0; i < len; ++ i)
|
---|
| 404 | {
|
---|
| 405 | string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 406 | StrX attrValue(attributes.getValue(i));
|
---|
| 407 |
|
---|
| 408 | const char *ptr = attrValue.LocalForm();
|
---|
| 409 | char *endptr = NULL;
|
---|
| 410 |
|
---|
| 411 | if (attrName == "viewCellId")
|
---|
| 412 | {
|
---|
| 413 | viewCellId = strtol(ptr, &endptr, 10);
|
---|
| 414 | }
|
---|
| 415 | }
|
---|
[651] | 416 | Debug << "here22" << endl;
|
---|
[590] | 417 |
|
---|
[508] | 418 | if (viewCellId >= 0) // valid view cell
|
---|
| 419 | {
|
---|
| 420 | // TODO: get view cell with specified id
|
---|
[590] | 421 | ViewCellInterior dummyVc;
|
---|
[508] | 422 | dummyVc.SetId(viewCellId);
|
---|
| 423 |
|
---|
| 424 | ViewCellContainer::iterator vit =
|
---|
| 425 | lower_bound(mViewCells.begin(), mViewCells.end(), &dummyVc, vlt);
|
---|
| 426 |
|
---|
[651] | 427 | BspViewCell *viewCell = dynamic_cast<BspViewCell *>(*vit);
|
---|
[580] | 428 |
|
---|
[651] | 429 | Debug << "here44" << endl;
|
---|
[590] | 430 |
|
---|
[508] | 431 | if (viewCell->GetId() == viewCellId)
|
---|
| 432 | {
|
---|
[651] | 433 | leaf->SetViewCell(viewCell);
|
---|
| 434 | viewCell->mLeaf = leaf;
|
---|
[508] | 435 | }
|
---|
| 436 | else
|
---|
| 437 | {
|
---|
| 438 | Debug << "error: view cell does not exist" << endl;
|
---|
| 439 | }
|
---|
| 440 | }
|
---|
| 441 | else
|
---|
| 442 | {
|
---|
[575] | 443 | if (mViewCellsManager->GetType() == ViewCellsManager::VSP_BSP)
|
---|
| 444 | {
|
---|
| 445 | leaf->SetViewCell(mVspBspTree->GetOrCreateOutOfBoundsCell());
|
---|
| 446 | leaf->SetTreeValid(false);
|
---|
| 447 | mVspBspTree->PropagateUpValidity(leaf);
|
---|
| 448 | }
|
---|
[651] | 449 | }Debug << "here33" << endl;
|
---|
[508] | 450 | }
|
---|
| 451 |
|
---|
| 452 |
|
---|
[575] | 453 | void ViewCellsParseHandlers::StartBspInterior(AttributeList& attributes)
|
---|
[508] | 454 | {
|
---|
| 455 | Plane3 plane;
|
---|
| 456 | int len = attributes.getLength();
|
---|
| 457 |
|
---|
| 458 | for (int i = 0; i < len; ++ i)
|
---|
| 459 | {
|
---|
| 460 | string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 461 | StrX attrValue(attributes.getValue(i));
|
---|
| 462 | const char *ptr = attrValue.LocalForm();
|
---|
| 463 |
|
---|
| 464 | if (attrName == "plane")
|
---|
| 465 | {
|
---|
| 466 | sscanf(ptr, "%f %f %f %f",
|
---|
| 467 | &plane.mNormal.x, &plane.mNormal.y, &plane.mNormal.z, &plane.mD);
|
---|
| 468 | }
|
---|
| 469 | }
|
---|
| 470 |
|
---|
| 471 | BspInterior* interior = new BspInterior(plane);
|
---|
| 472 |
|
---|
[590] | 473 | if (mCurrentBspNode) // replace NULL child of parent with current node
|
---|
[508] | 474 | {
|
---|
[590] | 475 | BspInterior *current = dynamic_cast<BspInterior *>(mCurrentBspNode);
|
---|
[508] | 476 |
|
---|
| 477 | current->ReplaceChildLink(NULL, interior);
|
---|
| 478 | interior->SetParent(current);
|
---|
| 479 | }
|
---|
| 480 | else
|
---|
| 481 | {
|
---|
[575] | 482 | if (mViewCellsManager->GetType() == ViewCellsManager::BSP)
|
---|
[577] | 483 | {
|
---|
[575] | 484 | mBspTree->mRoot = interior;
|
---|
[577] | 485 | }
|
---|
[575] | 486 | else
|
---|
[577] | 487 | {
|
---|
[575] | 488 | mVspBspTree->mRoot = interior;
|
---|
[577] | 489 | }
|
---|
[508] | 490 | }
|
---|
| 491 |
|
---|
[590] | 492 | mCurrentBspNode = interior;
|
---|
[508] | 493 | }
|
---|
| 494 |
|
---|
| 495 |
|
---|
[651] | 496 | void ViewCellsParseHandlers::StartViewCellLeaf(AttributeList& attributes)
|
---|
| 497 | {
|
---|
| 498 | Debug << "here111" << endl;
|
---|
| 499 | BspViewCell *viewCell = new BspViewCell();
|
---|
[575] | 500 |
|
---|
[651] | 501 | if (mCurrentViewCell) // replace front or (if not NULL) back child
|
---|
| 502 | {
|
---|
| 503 | ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(mCurrentViewCell);
|
---|
| 504 | interior->SetupChildLink(viewCell);
|
---|
| 505 | }
|
---|
| 506 | else // root
|
---|
| 507 | {
|
---|
| 508 | mViewCellsTree->SetRoot(viewCell);
|
---|
| 509 | }
|
---|
| 510 |
|
---|
| 511 | StartViewCell(viewCell, attributes);
|
---|
| 512 |
|
---|
| 513 | // collect leaves
|
---|
| 514 | mViewCells.push_back(viewCell);
|
---|
| 515 | }
|
---|
| 516 |
|
---|
| 517 |
|
---|
| 518 | void ViewCellsParseHandlers::StartViewCellInterior(AttributeList& attributes)
|
---|
| 519 | {
|
---|
| 520 | Debug << "here222" << endl;
|
---|
| 521 | ViewCellInterior* interior = new ViewCellInterior();
|
---|
| 522 |
|
---|
| 523 | if (mCurrentViewCell) // replace NULL child of parent with current node
|
---|
| 524 | {
|
---|
| 525 | ViewCellInterior *current = dynamic_cast<ViewCellInterior *>(mCurrentViewCell);
|
---|
| 526 |
|
---|
| 527 | current->SetupChildLink(interior);
|
---|
| 528 | }
|
---|
| 529 | else
|
---|
| 530 | {
|
---|
| 531 | mViewCellsTree->SetRoot(interior);
|
---|
| 532 | }
|
---|
| 533 |
|
---|
| 534 | mCurrentViewCell = interior;
|
---|
| 535 |
|
---|
| 536 | StartViewCell(interior, attributes);
|
---|
| 537 | }
|
---|
| 538 |
|
---|
| 539 |
|
---|
| 540 |
|
---|
[575] | 541 | void ViewCellsParseHandlers::CreateViewCellsManager(const char *name)
|
---|
| 542 | {
|
---|
| 543 | if (strcmp(name, "bspTree") == 0)
|
---|
| 544 | {
|
---|
| 545 | Debug << "view cell type: Bsp" << endl;
|
---|
| 546 |
|
---|
[577] | 547 | mBspTree = new BspTree();
|
---|
[590] | 548 | mBspTree->mBox = mViewSpaceBox;
|
---|
[651] | 549 | //mCurrentBspNode = mBspTree->GetRoot();
|
---|
[575] | 550 |
|
---|
| 551 | mViewCellsManager = new BspViewCellsManager(mBspTree);
|
---|
| 552 | }
|
---|
| 553 | else if (strcmp(name, "vspBspTree") == 0)
|
---|
| 554 | {
|
---|
[577] | 555 | Debug << "view cell type: VspBsp" << endl;
|
---|
| 556 |
|
---|
[575] | 557 | mVspBspTree = new VspBspTree();
|
---|
[651] | 558 | //mCurrentBspNode = mVspBspTree->GetRoot();
|
---|
[575] | 559 |
|
---|
| 560 | mViewCellsManager = new VspBspViewCellsManager(mVspBspTree);
|
---|
[577] | 561 |
|
---|
[590] | 562 | mVspBspTree->mBox = mViewSpaceBox;
|
---|
[577] | 563 | Debug << "creating vsp bsp view cells manager" << endl;
|
---|
[575] | 564 | }
|
---|
[590] | 565 | else if (strcmp(name, "vspKdTree") == 0)
|
---|
[575] | 566 | {
|
---|
[590] | 567 | // TODO
|
---|
| 568 | mVspKdTree = new VspKdTree();
|
---|
| 569 | mViewCellsManager = new VspKdViewCellsManager(mVspKdTree);
|
---|
| 570 | }
|
---|
[575] | 571 | else
|
---|
| 572 | {
|
---|
| 573 | cerr<<"Wrong view cells type" << name << endl;
|
---|
| 574 | exit(1);
|
---|
| 575 | }
|
---|
[577] | 576 |
|
---|
[651] | 577 | mViewCellsTree = mViewCellsManager->GetViewCellsTree();
|
---|
[577] | 578 | mViewCellsManager->SetViewSpaceBox(mViewSpaceBox);
|
---|
[575] | 579 | }
|
---|
| 580 |
|
---|
| 581 |
|
---|
[508] | 582 | void ViewCellsParseHandlers::characters(const XMLCh* const chars,
|
---|
| 583 | const unsigned int length)
|
---|
| 584 | {
|
---|
| 585 | mCharacterCount += length;
|
---|
| 586 | }
|
---|
| 587 |
|
---|
| 588 |
|
---|
| 589 | void ViewCellsParseHandlers::ignorableWhitespace(const XMLCh* const chars,
|
---|
| 590 | const unsigned int length)
|
---|
| 591 | {
|
---|
| 592 | mSpaceCount += length;
|
---|
| 593 | }
|
---|
| 594 |
|
---|
| 595 |
|
---|
| 596 | void ViewCellsParseHandlers::resetDocument()
|
---|
| 597 | {
|
---|
| 598 | mAttrCount = 0;
|
---|
| 599 | mCharacterCount = 0;
|
---|
| 600 | mElementCount = 0;
|
---|
| 601 | mSpaceCount = 0;
|
---|
| 602 | }
|
---|
| 603 |
|
---|
| 604 |
|
---|
| 605 | // ---------------------------------------------------------------------------
|
---|
| 606 | // StdInParseHandlers: Overrides of the SAX ErrorHandler interface
|
---|
| 607 | // ---------------------------------------------------------------------------
|
---|
| 608 | void
|
---|
| 609 | ViewCellsParseHandlers::error(const SAXParseException& e)
|
---|
| 610 | {
|
---|
| 611 | XERCES_STD_QUALIFIER cerr << "\nError at (file " << StrX(e.getSystemId())
|
---|
| 612 | << ", line " << e.getLineNumber()
|
---|
| 613 | << ", char " << e.getColumnNumber()
|
---|
| 614 | << "): " << StrX(e.getMessage()) << XERCES_STD_QUALIFIER endl;
|
---|
| 615 | }
|
---|
| 616 |
|
---|
| 617 | void
|
---|
| 618 | ViewCellsParseHandlers::fatalError(const SAXParseException& e)
|
---|
| 619 | {
|
---|
| 620 | XERCES_STD_QUALIFIER cerr << "\nFatal Error at (file " << StrX(e.getSystemId())
|
---|
| 621 | << ", line " << e.getLineNumber()
|
---|
| 622 | << ", char " << e.getColumnNumber()
|
---|
| 623 | << "): " << StrX(e.getMessage()) << XERCES_STD_QUALIFIER endl;
|
---|
| 624 | }
|
---|
| 625 |
|
---|
| 626 | void
|
---|
| 627 | ViewCellsParseHandlers::warning(const SAXParseException& e)
|
---|
| 628 | {
|
---|
| 629 | XERCES_STD_QUALIFIER cerr << "\nWarning at (file " << StrX(e.getSystemId())
|
---|
| 630 | << ", line " << e.getLineNumber()
|
---|
| 631 | << ", char " << e.getColumnNumber()
|
---|
| 632 | << "): " << StrX(e.getMessage()) << XERCES_STD_QUALIFIER endl;
|
---|
| 633 | }
|
---|
| 634 |
|
---|
| 635 |
|
---|
| 636 | bool ViewCellsParser::ParseFile(const string filename,
|
---|
[575] | 637 | ViewCellsManager **viewCells,
|
---|
[508] | 638 | ObjectContainer *objects)
|
---|
| 639 | {
|
---|
| 640 | // Initialize the XML4C system
|
---|
| 641 | try {
|
---|
| 642 | XMLPlatformUtils::Initialize();
|
---|
| 643 | }
|
---|
| 644 |
|
---|
| 645 | catch (const XMLException& toCatch)
|
---|
| 646 | {
|
---|
| 647 | XERCES_STD_QUALIFIER cerr << "Error during initialization! Message:\n"
|
---|
| 648 | << StrX(toCatch.getMessage()) << XERCES_STD_QUALIFIER endl;
|
---|
| 649 | return false;
|
---|
| 650 | }
|
---|
| 651 |
|
---|
| 652 |
|
---|
| 653 | //
|
---|
| 654 | // Create a SAX parser object. Then, according to what we were told on
|
---|
| 655 | // the command line, set the options.
|
---|
| 656 | //
|
---|
| 657 | SAXParser* parser = new SAXParser;
|
---|
| 658 | parser->setValidationScheme(valScheme);
|
---|
| 659 | parser->setDoNamespaces(doNamespaces);
|
---|
| 660 | parser->setDoSchema(doSchema);
|
---|
| 661 | parser->setValidationSchemaFullChecking(schemaFullChecking);
|
---|
| 662 |
|
---|
| 663 |
|
---|
| 664 | //
|
---|
| 665 | // Create our SAX handler object and install it on the parser, as the
|
---|
| 666 | // document and error handler. We are responsible for cleaning them
|
---|
| 667 | // up, but since its just stack based here, there's nothing special
|
---|
| 668 | // to do.
|
---|
| 669 | //
|
---|
[577] | 670 | ViewCellsParseHandlers handler(objects);
|
---|
[508] | 671 | parser->setDocumentHandler(&handler);
|
---|
| 672 | parser->setErrorHandler(&handler);
|
---|
| 673 |
|
---|
| 674 | unsigned long duration;
|
---|
| 675 | int errorCount = 0;
|
---|
| 676 | // create a faux scope so that 'src' destructor is called before
|
---|
| 677 | // XMLPlatformUtils::Terminate
|
---|
| 678 | {
|
---|
| 679 | //
|
---|
| 680 | // Kick off the parse and catch any exceptions. Create a standard
|
---|
| 681 | // input input source and tell the parser to parse from that.
|
---|
| 682 | //
|
---|
| 683 | // StdInInputSource src;
|
---|
| 684 | try
|
---|
| 685 | {
|
---|
| 686 | const unsigned long startMillis = XMLPlatformUtils::getCurrentMillis();
|
---|
| 687 | parser->parse(filename.c_str());
|
---|
| 688 | const unsigned long endMillis = XMLPlatformUtils::getCurrentMillis();
|
---|
| 689 | duration = endMillis - startMillis;
|
---|
| 690 | errorCount = parser->getErrorCount();
|
---|
| 691 | }
|
---|
| 692 | catch (const OutOfMemoryException&)
|
---|
| 693 | {
|
---|
| 694 | XERCES_STD_QUALIFIER cerr << "OutOfMemoryException" << XERCES_STD_QUALIFIER endl;
|
---|
| 695 | errorCount = 2;
|
---|
| 696 | return false;
|
---|
| 697 | }
|
---|
| 698 | catch (const XMLException& e)
|
---|
| 699 | {
|
---|
| 700 | XERCES_STD_QUALIFIER cerr << "\nError during parsing: \n"
|
---|
| 701 | << StrX(e.getMessage())
|
---|
| 702 | << "\n" << XERCES_STD_QUALIFIER endl;
|
---|
| 703 | errorCount = 1;
|
---|
| 704 | return false;
|
---|
| 705 | }
|
---|
| 706 |
|
---|
| 707 |
|
---|
| 708 | // Print out the stats that we collected and time taken
|
---|
| 709 | if (!errorCount) {
|
---|
| 710 | XERCES_STD_QUALIFIER cout << filename << ": " << duration << " ms ("
|
---|
| 711 | << handler.GetElementCount() << " elems, "
|
---|
| 712 | << handler.GetAttrCount() << " attrs, "
|
---|
| 713 | << handler.GetSpaceCount() << " spaces, "
|
---|
| 714 | << handler.GetCharacterCount() << " chars)" << XERCES_STD_QUALIFIER endl;
|
---|
| 715 | }
|
---|
| 716 | }
|
---|
| 717 |
|
---|
| 718 | //
|
---|
| 719 | // Delete the parser itself. Must be done prior to calling Terminate, below.
|
---|
| 720 | //
|
---|
| 721 | delete parser;
|
---|
| 722 |
|
---|
| 723 | XMLPlatformUtils::Terminate();
|
---|
| 724 |
|
---|
[577] | 725 | // assign new view cells manager
|
---|
| 726 | *viewCells = handler.mViewCellsManager;
|
---|
[651] | 727 |
|
---|
[508] | 728 | if (errorCount > 0)
|
---|
| 729 | return false;
|
---|
| 730 | else
|
---|
| 731 | return true;
|
---|
[556] | 732 | }
|
---|