/******************************************************************************* * CGoGN: Combinatorial and Geometric modeling with Generic N-dimensional Maps * * version 0.1 * * Copyright (C) 2009-2012, IGG Team, LSIIT, University of Strasbourg * * * * This library is free software; you can redistribute it and/or modify it * * under the terms of the GNU Lesser General Public License as published by the * * Free Software Foundation; either version 2.1 of the License, or (at your * * option) any later version. * * * * This library is distributed in the hope that it will be useful, but WITHOUT * * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * * for more details. * * * * You should have received a copy of the GNU Lesser General Public License * * along with this library; if not, write to the Free Software Foundation, * * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * * * Web site: http://cgogn.unistra.fr/ * * Contact information: cgogn@unistra.fr * * * *******************************************************************************/ #ifndef __GENERIC_MAP__ #define __GENERIC_MAP__ #include #include #include #include #include #include #include #include #include #include "Container/attributeContainer.h" #include "Container/fakeAttribute.h" #include "Topology/generic/dart.h" #include "Topology/generic/marker.h" #include "Topology/generic/functor.h" namespace CGoGN { class AttributeHandlerGen ; class DartMarkerGen ; class CellMarkerGen ; template class CellMarkerBase ; class GenericMap { template friend class AttributeHandler ; template friend class DartAutoAttribute ; template friend class VertexAutoAttribute ; template friend class EdgeAutoAttribute ; template friend class FaceAutoAttribute ; template friend class VolumeAutoAttribute ; friend class DartMarkerGen ; friend class CellMarkerGen ; template friend class CellMarkerBase ; protected: /** * Attributes Containers */ AttributeContainer m_attribs[NB_ORBITS] ; static std::map* m_attributes_registry_map ; static int m_nbInstances; /** * Direct access to the Dart attributes that store the orbits embeddings * (only initialized when necessary, i.e. addEmbedding function) */ AttributeMultiVector* m_embeddings[NB_ORBITS] ; /** * Direct access to quick traversal attributes * (initialized by enableQuickTraversal function) */ AttributeMultiVector* m_quickTraversal[NB_ORBITS] ; AttributeMultiVector > >* m_quickLocalIncidentTraversal[NB_ORBITS][NB_ORBITS] ; AttributeMultiVector > >* m_quickLocalAdjacentTraversal[NB_ORBITS][NB_ORBITS] ; /** * Marks manager */ MarkSet m_marksets[NB_ORBITS][NB_THREAD] ; /** * Direct access to the attributes that store Marks */ AttributeMultiVector* m_markTables[NB_ORBITS][NB_THREAD] ; unsigned int m_nbThreads ; /** * Store links to created AttributeHandlers, DartMarkers and CellMarkers */ std::multimap attributeHandlers ; // TODO think of MT (AttributeHandler creation & release are not thread safe!) boost::mutex attributeHandlersMutex; std::vector dartMarkers[NB_THREAD] ; std::vector cellMarkers[NB_THREAD] ; public: static const unsigned int UNKNOWN_ATTRIB = AttributeContainer::UNKNOWN ; GenericMap() ; virtual ~GenericMap() ; virtual std::string mapTypeName() const = 0 ; virtual unsigned int dimension() const = 0 ; /** * Clear the map * @param removeAttrib * if false -> data is deleted but all attributes remain (all AttributeHandlers are still valid) * if true -> data and attributes are deleted (AttributeHandlers are invalid) */ virtual void clear(bool removeAttrib) ; /** * get the marker_set of an orbit and thread (used for Cell & Dart Marker) */ template MarkSet& getMarkerSet(unsigned int thread = 0) { return m_marksets[ORBIT][thread]; } /**************************************** * DARTS MANAGEMENT * ****************************************/ protected: /** * Add a dart to the map */ virtual Dart newDart() ; /** * Erase a dart of the map */ virtual void deleteDart(Dart d) ; /** * create a copy of a dart (based on its index in m_attribs[DART]) and returns its index */ unsigned int copyDartLine(unsigned int index) ; /** * Properly deletes a dart in m_attribs[DART] */ void deleteDartLine(unsigned int index) ; public: /** * @brief dartIndex * @param d * @return index of dart (depends on map implementation) */ virtual unsigned int dartIndex(Dart d) const ; /** * @return the number of darts in the map */ virtual unsigned int getNbDarts() ; /** * return true if the dart d refers to a valid index */ bool isDartValid(Dart d) ; /**************************************** * EMBEDDING MANAGEMENT * ****************************************/ /** * tell if an orbit is embedded or not */ template bool isOrbitEmbedded() const ; bool isOrbitEmbedded(unsigned int orbit) const ; /** * get the cell index of the given dimension associated to dart d * @return EMBNULL if the orbit of d is not attached to any cell */ template unsigned int getEmbedding(Dart d) const; /** * Set the cell index of the given dimension associated to dart d */ template void setDartEmbedding(Dart d, unsigned int emb) ; /** * Set the cell index of the given dimension associated to dart d * !!! WARNING !!! use only on freshly inserted darts (no unref is done on old embedding) !!! WARNING !!! */ template void initDartEmbedding(Dart d, unsigned int emb) ; /** * Copy the index of the cell associated to a dart over an other dart * @param orbit the id of orbit embedding * @param dest the dart to overwrite * @param src the dart to copy */ template void copyDartEmbedding(Dart dest, Dart src) ; /** * Allocation of some place in attrib table * @param orbit the orbit of embedding * @return the index to use as embedding */ template unsigned int newCell() ; /** * Set the index of the associated cell to all the darts of an orbit * @param orbit orbit to embed * @param d a dart of the topological vertex * @param em index of attribute to store as embedding */ template void setOrbitEmbedding(Dart d, unsigned int em) ; /** * Set the index of the associated cell to all the darts of an orbit * !!! WARNING !!! use only on freshly inserted darts (no unref is done on old embedding)!!! WARNING !!! */ template void initOrbitEmbedding(Dart d, unsigned int em) ; /** * Associate an new cell to all darts of an orbit * @param orbit orbit to embed * @param d a dart of the topological cell * @return index of the attribute in table */ template unsigned int setOrbitEmbeddingOnNewCell(Dart d) ; /** * Associate an new cell to all darts of an orbit * !!! WARNING !!! use only on freshly inserted darts (no unref is done on old embedding)!!! WARNING !!! */ template unsigned int initOrbitEmbeddingNewCell(Dart d) ; /** * Copy the cell associated to a dart over an other dart * @param orbit attribute orbit to use * @param d the dart to overwrite (dest) * @param e the dart to copy (src) */ template void copyCell(Dart d, Dart e) ; /** * Line of attributes i is overwritten with line j * @param orbit attribute orbit to use * @param i line destination of copy * @param j line source of copy */ template void copyCell(unsigned int i, unsigned int j) ; /** * Line of attributes i is initialized * @param orbit attribute orbit to use * @param i line to init */ template void initCell(unsigned int i) ; /** * Traverse the map and embed all orbits of the given dimension with a new cell * @param realloc if true -> all the orbits are embedded on new cells, if false -> already embedded orbits are not impacted */ template void initAllOrbitsEmbedding(bool realloc = false) ; /**************************************** * QUICK TRAVERSAL MANAGEMENT * ****************************************/ template void enableQuickTraversal() ; template void updateQuickTraversal() ; template const AttributeMultiVector* getQuickTraversal() const; template void disableQuickTraversal() ; template void enableQuickIncidentTraversal(); template void updateQuickIncidentTraversal(); template const AttributeMultiVector > >* getQuickIncidentTraversal() const; template void disableQuickIncidentTraversal(); template void enableQuickAdjacentTraversal(); template void updateQuickAdjacentTraversal(); template const AttributeMultiVector > >* getQuickAdjacentTraversal() const; template void disableQuickAdjacentTraversal(); /**************************************** * ATTRIBUTES MANAGEMENT * ****************************************/ /** * get the number of cell in the attribute container of an orbit * @param orb the orbit to get number of cells */ unsigned int getNbCells(unsigned int orbit); /** * get the attrib container of a given orbit * @param orbit the orbit !!! (bilbo the orbit !) */ template AttributeContainer& getAttributeContainer() ; template const AttributeContainer& getAttributeContainer() const; AttributeContainer& getAttributeContainer(unsigned int orbit) ; const AttributeContainer& getAttributeContainer(unsigned int orbit) const; /** * get a multi vector of mark attribute (direct access with [i]) */ template AttributeMultiVector* getMarkVector(unsigned int thread = 0) ; /** * return a pointer to the Dart attribute vector that store the embedding of the given orbit * (may be NULL if the orbit is not embedded) */ template AttributeMultiVector* getEmbeddingAttributeVector() ; /** * swap two attribute containers */ void swapEmbeddingContainers(unsigned int orbit1, unsigned int orbit2) ; /** * static function for type registration */ template static bool registerAttribute(const std::string &nameType) ; /** * print attributes name of map in std::cout (for debugging) */ void viewAttributesTables() ; void printDartsTable(); protected: /**************************************** * EMBEDDING ATTRIBUTES MANAGEMENT * ****************************************/ /** * Create the dart attribute to store the embedding of this orbit (for internal use only) */ template void addEmbedding() ; /**************************************** * TOPOLOGICAL ATTRIBUTES MANAGEMENT * ****************************************/ /** * Add a topological relation in the map * @param name name of relation */ AttributeMultiVector* addRelation(const std::string& name) ; /** * Get AttributeMultivector pointer of a relation attribute * @param name name of the relation * @return the attribute multi-vector pointer */ AttributeMultiVector* getRelation(const std::string& name) ; /**************************************** * THREAD MANAGEMENT * ****************************************/ public: /** * add threads (a table of Marker per orbit for each thread) * to allow MT * @param nb thread to add */ void addThreadMarker(unsigned int nb) ; /** * return allowed threads * @return the number of threads (including principal) */ unsigned int getNbThreadMarkers() ; /** * Remove some added threads * @return remaining number of threads (including principal) */ void removeThreadMarker(unsigned int nb) ; /**************************************** * SAVE & LOAD * ****************************************/ public: /** * check if an xml node has a given name * @param node the xml node * @param name the name * @ return true if node has the good name */ // bool chechXmlNode(xmlNodePtr node, const std::string& name) ; /** * update the pointer of embedding vector after loading */ void update_m_emb_afterLoad(); /** * update the markTables and recursively from real type the topo shortcut pointers */ virtual void update_topo_shortcuts(); /** * Save map in a XML file * @param filename the file name * @return true if OK */ // bool saveMapXml(const std::string& filename, bool compress = false) ; /** * Load map from a XML file * @param filename the file name * @return true if OK */ // bool loadMapXml(const std::string& filename, bool compress = false) ; /** * Save map in a binary file * @param filename the file name * @return true if OK */ bool saveMapBin(const std::string& filename) const; /** * Load map from a binary file * @param filename the file name * @return true if OK */ bool loadMapBin(const std::string& filename) ; /** * copy from another map (of same type) */ bool copyFrom(const GenericMap& map) ; /** * Dump attributes types and names per orbit */ void dumpAttributesAndMarkers() ; /** * update topo relation after compacting the container: */ virtual void compactTopoRelations(const std::vector& oldnew) = 0 ; /** * compact the map */ void compact() ; /**************************************** * DARTS TRAVERSALS * ****************************************/ // /** // * Apply a functor on each dart of the map // * @param f a ref to the functor obj // */ // bool foreach_dart(FunctorType& f) ; virtual Dart begin() const; virtual Dart end() const; virtual void next(Dart& d) const; //! Apply a functor on every dart of an orbit /*! @param dim dimension of orbit * @param d a dart of the orbit * @param f a functor obj */ template bool foreach_dart_of_orbit(Dart d, FunctorType& f, unsigned int thread = 0) const; virtual bool foreach_dart_of_vertex(Dart d, FunctorType& f, unsigned int thread = 0) const = 0 ; virtual bool foreach_dart_of_edge(Dart d, FunctorType& f, unsigned int thread = 0) const = 0 ; virtual bool foreach_dart_of_face(Dart /*d*/, FunctorType& /*f*/, unsigned int /*thread = 0*/) const { std::cerr << "Not implemented" << std::endl; return false; } virtual bool foreach_dart_of_volume(Dart /*d*/, FunctorType& /*f*/, unsigned /*int thread = 0*/) const { std::cerr << "Not implemented" << std::endl; return false; } virtual bool foreach_dart_of_cc(Dart /*d*/, FunctorType& /*f*/, unsigned int /*thread = 0*/) const { std::cerr << "Not implemented" << std::endl; return false; } virtual bool foreach_dart_of_vertex1(Dart /*d*/, FunctorType& /*f*/, unsigned int /*thread = 0*/) const { std::cerr << "Not implemented" << std::endl; return false; } virtual bool foreach_dart_of_edge1(Dart /*d*/, FunctorType& /*f*/, unsigned int /*thread = 0*/) const { std::cerr << "Not implemented" << std::endl; return false; } virtual bool foreach_dart_of_vertex2(Dart /*d*/, FunctorType& /*f*/, unsigned int /*thread = 0*/) const { std::cerr << "Not implemented" << std::endl; return false; } virtual bool foreach_dart_of_edge2(Dart /*d*/, FunctorType& /*f*/, unsigned int /*thread = 0*/) const { std::cerr << "Not implemented" << std::endl; return false; } virtual bool foreach_dart_of_face2(Dart /*d*/, FunctorType& /*f*/, unsigned int /*thread = 0*/) const { std::cerr << "Not implemented" << std::endl; return false; } /** * execute functor for each orbit * @param dim the dimension of the orbit * @param f the functor */ template bool foreach_orbit(FunctorType& f, unsigned int thread = 0) const; //! Count the number of orbits of dimension dim in the map /*! @param dim the dimension of the orbit * @return the number of orbits */ template unsigned int getNbOrbits() const; //! For an orbit of a given dimension, return the number of incident cells of an other given dimension /*! @param d a dart */ template unsigned int degree(Dart d) const; /**************************************** * BOUNDARY MANAGEMENT * ****************************************/ protected: /// boundary markers Mark m_boundaryMarkers[2] ; // 0 for dim 2 / 1 for dim 3 /** * mark a dart as belonging to boundary */ template void boundaryMark(Dart d) ; void boundaryMark2(Dart d) ; void boundaryMark3(Dart d) ; /** * unmark a dart from the boundary */ template void boundaryUnmark(Dart d) ; void boundaryUnmark2(Dart d) ; void boundaryUnmark3(Dart d) ; public: /** * test if a dart belong to the boundary */ template bool isBoundaryMarked(Dart d) const ; bool isBoundaryMarked2(Dart d) const ; bool isBoundaryMarked3(Dart d) const ; bool isBoundaryMarkedCurrent(Dart d) const ; protected: /** * mark an orbit of dart as belonging to boundary */ template void boundaryMarkOrbit(Dart d) ; /** * unmark an orbit of dart from the boundary */ template void boundaryUnmarkOrbit(Dart d) ; /** * clear all boundary markers */ template void boundaryUnmarkAll() ; } ; // //template //bool foreach_dart_of_orbit_in_parent(MAP* ptrMap, unsigned int orbit, Dart d, FunctorType& f, unsigned int thread = 0) //{ // switch(orbit) // { // case DART: return f(d); // case VERTEX: return ptrMap->MAP::ParentMap::foreach_dart_of_vertex(d, f, thread) ; // case EDGE: return ptrMap->MAP::ParentMap::foreach_dart_of_edge(d, f, thread) ; // case ORIENTED_FACE: return ptrMap->MAP::ParentMap::foreach_dart_of_oriented_face(d, f, thread) ; // case FACE: return ptrMap->MAP::ParentMap::foreach_dart_of_face(d, f, thread) ; // case VOLUME: return ptrMap->MAP::ParentMap::foreach_dart_of_volume(d, f, thread) ; // default: assert(!"Cells of this dimension are not handled") ; // } // return false ; //} // //template //bool foreach_dart_of_orbit_in_parent2(MAP* ptrMap, unsigned int orbit, Dart d, FunctorType& f, unsigned int thread = 0) //{ // switch(orbit) // { // case DART: return f(d); // case VERTEX: return ptrMap->MAP::ParentMap::ParentMap::foreach_dart_of_vertex(d, f,thread) ; // case EDGE: return ptrMap->MAP::ParentMap::ParentMap::foreach_dart_of_edge(d, f, thread) ; // case ORIENTED_FACE: return ptrMap->MAP::ParentMap::ParentMap::foreach_dart_of_oriented_face(d, f, thread) ; // case FACE: return ptrMap->MAP::ParentMap::ParentMap::foreach_dart_of_face(d, f, thread) ; // case VOLUME: return ptrMap->MAP::ParentMap::ParentMap::foreach_dart_of_volume(d, f, thread) ; // default: assert(!"Cells of this dimension are not handled") ; // } // return false ; //} } //namespace CGoGN #include "Topology/generic/genericmap.hpp" #endif