source: GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsParser.cpp @ 651

Revision 651, 17.9 KB checked in by mattausch, 18 years ago (diff)

exporting / loading full merge hierarchy

Line 
1// ---------------------------------------------------------------------------
2//  Includes for all the program files to see
3// ---------------------------------------------------------------------------
4#include <string.h>
5#include <stdlib.h>
6#include <iostream>
7using 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"
30#include "VspKdTree.h"
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// ---------------------------------------------------------------------------
52static bool     doNamespaces       = false;
53static bool     doSchema           = false;
54static bool     schemaFullChecking = false;
55static SAXParser::ValSchemes    valScheme       = SAXParser::Val_Auto;
56
57
58
59
60
61// ---------------------------------------------------------------------------
62//  StdInParseHandlers: Constructors and Destructor
63// ---------------------------------------------------------------------------
64ViewCellsParseHandlers::ViewCellsParseHandlers(ObjectContainer *objects):
65  mElementCount(0)
66  , mAttrCount(0)
67  , mCharacterCount(0)
68  , mSpaceCount(0)
69  , mViewCellsManager(NULL)
70  , mVspBspTree(NULL)
71  , mBspTree(NULL)
72  , mViewCellsTree(NULL)
73  , mParseViewCells(true)
74  , mCurrentViewCell(NULL)
75  , mCurrentBspNode(NULL)
76{
77        mObjects = objects;
78}
79
80
81ViewCellsParseHandlers::~ViewCellsParseHandlers()
82{
83}
84
85
86// ---------------------------------------------------------------------------
87//  StdInParseHandlers: Implementation of the SAX DocumentHandler interface
88// ---------------------------------------------------------------------------
89
90
91void ViewCellsParseHandlers::endElement(const XMLCh* const name)
92{
93  StrX lname(name);
94  string element(lname.LocalForm());
95
96  if (element == "ViewCells")
97          EndViewCells();
98
99  if (mParseViewCells)
100  {
101          if (element == "Interior")
102                  EndViewCellInterior();
103  }
104  else
105  {
106        if (element == "Interior")
107                  EndBspInterior();
108  }
109}
110
111
112void ViewCellsParseHandlers::EndBspInterior()
113{
114        // go one up in the tree
115        if (mCurrentBspNode->GetParent())
116        {       cout << "]";
117                mCurrentBspNode = mCurrentBspNode->GetParent();
118        }
119}
120
121
122void ViewCellsParseHandlers::EndViewCellInterior()
123{
124        // go one up in the tree
125        if (mCurrentViewCell->GetParent())
126        {       cout << "]";
127                mCurrentViewCell = mCurrentViewCell->GetParent();
128        }
129}
130
131inline bool vlt(ViewCell *v1, ViewCell *v2)
132{
133        return v1->mId < v2->mId;
134}
135
136
137void ViewCellsParseHandlers::EndViewCells()
138{
139        // sort view cells to help associating view cells according to their id
140        stable_sort(mViewCells.begin(), mViewCells.end(), vlt);
141}
142
143
144
145void ViewCellsParseHandlers::StartHierarchy(AttributeList&  attributes)
146{
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
165void ViewCellsParseHandlers::startBspElement(string element,
166                                                                                         AttributeList& attributes)
167{
168        if (element == "Interior")
169        {
170                cout << "[";
171                StartBspInterior(attributes);
172        }
173
174        if (element == "Leaf")
175        {
176                cout << "l";
177                Debug << "leaf" << endl;
178                StartBspLeaf(attributes);
179        }
180}
181
182
183void ViewCellsParseHandlers::startElement(const XMLCh* const name,
184                                                                                  AttributeList& attributes)
185{
186        StrX lname(name);
187        string element(lname.LocalForm());
188
189        // decides the used view cell hierarchy
190        if (element == "ViewCells")
191        {
192                cout << "parsing view cells" << endl;
193                mParseViewCells = true;
194        }
195
196        if (element == "Hierarchy")
197        {
198                cout << "parsing spatial hierarchy" << endl;
199                mParseViewCells = false;
200                StartHierarchy(attributes);
201        }
202       
203        // decides the used view cell hierarchy
204        if (element == "ViewSpaceBox")
205        {
206                cout << "b";
207                StartViewSpaceBox(attributes);
208        }
209
210
211        // use different methods for the given view cell hierarchy types
212        if (!mParseViewCells)
213        {
214                if (mViewCellsManager)
215                {
216                        switch (mViewCellsManager->GetType())
217                        {
218                        case ViewCellsManager::BSP:
219                        case ViewCellsManager::VSP_BSP:
220                                startBspElement(element, attributes);
221                                break;
222       
223                        default:
224                                Debug << "not implemented" << endl;
225                                break;
226                        }
227                }
228        }
229        else
230        {
231                if (element == "Interior")
232                {
233                        cout << "[";
234                        StartViewCellInterior(attributes);
235                }
236
237                if (element == "Leaf")
238                {
239                        cout << "l";
240                        StartViewCellLeaf(attributes);
241                }
242        }
243
244        ++ mElementCount;
245        mAttrCount += attributes.getLength();
246}
247
248
249inline bool ilt(Intersectable *obj1, Intersectable *obj2)
250{
251        return obj1->mId < obj2->mId;
252}
253
254
255void ViewCellsParseHandlers::StartViewCell(ViewCell *viewCell, AttributeList&  attributes)
256{
257        int len = attributes.getLength();
258        vector<int> objIndices;
259
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 =
296                                  lower_bound(mObjects->begin(), mObjects->end(), &dummyInst, ilt);
297                               
298                                Intersectable *obj = *oit;
299                               
300                                if (obj->GetId() == objId)
301                                {
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);
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                }
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                }
343        }
344}
345
346
347void 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
377void ViewCellsParseHandlers::StartBspLeaf(AttributeList& attributes)
378{
379        BspLeaf * leaf =
380                new BspLeaf(dynamic_cast<BspInterior *>(mCurrentBspNode), NULL);
381
382        if (mCurrentBspNode) // replace front or (if not NULL) back child
383        {
384                dynamic_cast<BspInterior *>(mCurrentBspNode)->ReplaceChildLink(NULL, leaf);
385        }
386        else
387        {
388                if (mViewCellsManager->GetType() == ViewCellsManager::BSP)
389                {
390                        mBspTree->mRoot = leaf;
391                }
392                else if (mViewCellsManager->GetType() == ViewCellsManager::VSP_BSP)
393                {
394                        mVspBspTree->mRoot = leaf;
395                }
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        }
416Debug << "here22" << endl;
417       
418        if (viewCellId >= 0) // valid view cell
419        {
420                // TODO: get view cell with specified id
421                ViewCellInterior dummyVc;
422                dummyVc.SetId(viewCellId);
423
424                ViewCellContainer::iterator vit =
425                        lower_bound(mViewCells.begin(), mViewCells.end(), &dummyVc, vlt);
426                       
427                BspViewCell *viewCell = dynamic_cast<BspViewCell *>(*vit);
428
429                Debug << "here44" << endl;
430
431                if (viewCell->GetId() == viewCellId)
432                {
433                        leaf->SetViewCell(viewCell);
434                        viewCell->mLeaf = leaf;
435                }
436                else
437                {
438                        Debug << "error: view cell does not exist" << endl;
439                }
440        }
441        else
442        {
443                if (mViewCellsManager->GetType() == ViewCellsManager::VSP_BSP)
444                {
445                        leaf->SetViewCell(mVspBspTree->GetOrCreateOutOfBoundsCell());
446                        leaf->SetTreeValid(false);
447                        mVspBspTree->PropagateUpValidity(leaf);
448                }
449        }Debug << "here33" << endl;
450}
451
452
453void ViewCellsParseHandlers::StartBspInterior(AttributeList& attributes)
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       
473        if (mCurrentBspNode) // replace NULL child of parent with current node
474        {
475                BspInterior *current = dynamic_cast<BspInterior *>(mCurrentBspNode);
476
477                current->ReplaceChildLink(NULL, interior);
478                interior->SetParent(current);
479        }
480        else
481        {
482                if (mViewCellsManager->GetType() == ViewCellsManager::BSP)
483                {
484                        mBspTree->mRoot = interior;
485                }
486                else
487                {
488                        mVspBspTree->mRoot = interior;
489                }
490        }
491
492        mCurrentBspNode = interior;
493}
494
495
496void ViewCellsParseHandlers::StartViewCellLeaf(AttributeList& attributes)
497{
498        Debug << "here111" << endl;
499        BspViewCell *viewCell = new BspViewCell();
500
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
518void 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
541void ViewCellsParseHandlers::CreateViewCellsManager(const char *name)
542{
543        if (strcmp(name, "bspTree") == 0)
544        {
545                Debug << "view cell type: Bsp" << endl;
546
547                mBspTree = new BspTree();
548                mBspTree->mBox = mViewSpaceBox;
549                //mCurrentBspNode = mBspTree->GetRoot();
550
551                mViewCellsManager = new BspViewCellsManager(mBspTree);
552        }
553        else if (strcmp(name, "vspBspTree") == 0)
554        {
555                Debug << "view cell type: VspBsp" << endl;
556
557                mVspBspTree = new VspBspTree();
558                //mCurrentBspNode = mVspBspTree->GetRoot();
559
560                mViewCellsManager = new VspBspViewCellsManager(mVspBspTree);
561
562                mVspBspTree->mBox = mViewSpaceBox;
563                Debug << "creating vsp bsp view cells manager" << endl;
564        }
565        else if (strcmp(name, "vspKdTree") == 0)
566        {
567                // TODO
568                mVspKdTree = new VspKdTree();   
569                mViewCellsManager = new VspKdViewCellsManager(mVspKdTree);
570        }
571        else
572        {
573                cerr<<"Wrong view cells type" << name << endl;
574                exit(1);
575        }
576
577        mViewCellsTree = mViewCellsManager->GetViewCellsTree();
578        mViewCellsManager->SetViewSpaceBox(mViewSpaceBox);
579}
580
581
582void ViewCellsParseHandlers::characters(const XMLCh* const chars,
583                                                                                const unsigned int length)
584{
585        mCharacterCount += length;
586}
587
588
589void ViewCellsParseHandlers::ignorableWhitespace(const XMLCh* const chars,
590                                                                                                 const unsigned int length)
591{
592        mSpaceCount += length;
593}
594
595
596void 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// ---------------------------------------------------------------------------
608void
609ViewCellsParseHandlers::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
617void
618ViewCellsParseHandlers::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
626void
627ViewCellsParseHandlers::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
636bool ViewCellsParser::ParseFile(const string filename,
637                                                                ViewCellsManager **viewCells,
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  //
670  ViewCellsParseHandlers handler(objects);
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 
725   // assign new view cells manager
726  *viewCells = handler.mViewCellsManager;
727 
728  if (errorCount > 0)
729    return false;
730  else
731    return true;
732}
Note: See TracBrowser for help on using the repository browser.