⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 active_objects_vector.h

📁 很多二维 三维几何计算算法 C++ 类库
💻 H
字号:
// Copyright (c) 2005  Stanford University (USA).// All rights reserved.//// This file is part of CGAL (www.cgal.org); 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; version 2.1 of the License.// See the file LICENSE.LGPL distributed with CGAL.//// Licensees holding a valid commercial license may use this file in// accordance with the commercial license agreement provided with the software.//// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.//// $URL: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.3-branch/Kinetic_data_structures/include/CGAL/Kinetic/Active_objects_vector.h $// $Id: Active_objects_vector.h 36908 2007-03-08 01:50:31Z drussel $// //// Author(s)     : Daniel Russel <drussel@alumni.princeton.edu>#ifndef CGAL_KINETIC_NOTIFYING_TABLE_BASE_3_H#define CGAL_KINETIC_NOTIFYING_TABLE_BASE_3_H#include <CGAL/Kinetic/basic.h>#include <CGAL/Tools/Label.h>#include <CGAL/Kinetic/Ref_counted.h>#include <CGAL/Tools/Counter.h>#include <CGAL/Kinetic/internal/debug_counters.h>#include <iostream>#include <CGAL/Kinetic/Multi_listener.h>#include <set>#include <map>#include <vector>#include <sstream>//#include <boost/iterator/filter_iterator.hpp>#include <CGAL/iterator.h>#include <boost/iterator/transform_iterator.hpp>CGAL_KINETIC_BEGIN_NAMESPACE;//! Holds a set of moving points and creates notifications when changes occur./*!  This container holds a set of objects of a particular type. It  creates notifications using the standard CGAL::Multi_listener  interface when a primitive changes or is added or deleted. Objects  which are listening for events can then ask which primitives  changed.  There is one type of notification  Moving_object_table::Listener_core::IS_EDITING which occurs when the  editing mode is set to false.  As an optimization, the change methods can be called without setting  the editing state to true, this acts as if it were set to true for  that one function call.  Objects are stored in a vector. This means that access is constant  time, but storage is not generally freed. The only way to be sure is  to remove all reference counts for the table or to call clear().*/template <class Value_t >class Active_objects_vector:  public Ref_counted<Active_objects_vector<Value_t > >{public:  typedef typename CGAL::Label<Value_t> Key;  typedef Value_t Data;protected:  //! Convenience  typedef Active_objects_vector<Value_t> This;  typedef std::pair<Key, Value_t> Storage_item;  typedef std::vector<Storage_item > Storage;  struct Listener_core  {    typedef enum {IS_EDITING}      Notification_type;    typedef typename This::Handle Notifier_handle;  };public:  //! The interface to implement if you want to receive notifications.  typedef Multi_listener<Listener_core> Listener;protected:  // This is evil here.  typedef std::set<Listener*> Subscribers;public:  //! default constructor  Active_objects_vector():editing_(false), num_valid_(false){}  ~Active_objects_vector(){CGAL_precondition(subscribers_.empty());}  //! access a point  const Data &operator[](Key key) const  {    CGAL_precondition(key.is_valid());    CGAL_precondition(storage_[key.to_index()].first == key);    CGAL_precondition(static_cast<unsigned int>(key.to_index()) < storage_.size());    //if (static_cast<unsigned int>(key.index()) >= storage_.size()) return null_object();    /*else*/    return storage_[key.to_index()].second;  }  //! non operator based method to access a point.  const Data& at(Key key) const  {    return operator[](key);  }  //! Set the editing state of the object.  /*!  A notification is sent when the editing state is set to false    after it has been true, i.e. the editing session is finished. This    allows changes to be batched together.  */  void set_is_editing(bool is_e) {    if (is_e== editing_) return;    editing_=is_e;    if (!editing_) {      finish_editing();    }  }  //! return the editing state  bool is_editing() const  {    return editing_;  }  //! change one point.  /*!  The position at the current time should not be different from    the previous current position. However, at the moment I do not    check this as there is no reference to time in the    Data_table.    If Data_table::editing() is not true, then it is as if the calls    - set_editing(true)    - set_object(key, value)    - set_editing(false)    Were made. If it is true, then no notifications are created.    \todo check continuity.  */  void set(Key key, const Data &new_value) {    CGAL_precondition(key.is_valid());    CGAL_precondition(storage_[key.to_index()].first == key);    //CGAL_precondition(editing_);        //CGAL_precondition(static_cast<unsigned int>(key.index()) < storage_.size());    if (storage_.size() <= static_cast<unsigned int>(key.to_index())) {      storage_.resize(key.to_index()+1);    }    storage_[key.to_index()].first=key;    storage_[key.to_index()].second=new_value;    changed_objects_.push_back(key);    CGAL_expensive_assertion_code(for (unsigned int i=0; i< storage_.size(); ++i) ) {      CGAL_expensive_assertion_code(if (key.to_index() != i && storage_[i].second == storage_[key.to_index()].second) CGAL_KINETIC_LOG(LOG_SOME, "WARNING Objects " << Key(i) << " and " << key << " have equal trajectories.\n"));    }				      if (!editing_) finish_editing();  }  //! Insert a new object into the table.  /*!    See Data_table::set_object() for an explainating of how the editing modes are used.  */  Key insert(const Data &ob) {    //CGAL_precondition(editing_);    storage_.push_back(Storage_item(Key(storage_.size()), ob));    new_objects_.push_back(storage_.back().first);    CGAL_expensive_assertion_code(for (unsigned int i=0; i< storage_.size()-1; ++i) ) {      CGAL_expensive_assertion_code(if ( storage_[i].second == storage_.back().second) CGAL_KINETIC_LOG(LOG_SOME, "WARNING Objects " << Key(i) << " and " << storage_.back().first << " have equal trajectories.\n"));    }    if (!editing_) finish_editing();    return storage_.back().first;  }  //! Delete an object from the table.  /*!    The object with Key key must already be in the table.    This does not necessarily decrease the amount of storage used at    all. In fact, it is unlikely to do so.    See Data_table::set_object() for an explainating of how the editing modes are used.  */  void erase(Key key) {    CGAL_precondition(key.is_valid());    CGAL_precondition(storage_[key.to_index()].first == key);    //CGAL_precondition(editing_);    CGAL_precondition(static_cast<unsigned int>(key.to_index()) < storage_.size());    CGAL_expensive_precondition_code(for (Inserted_iterator dit= inserted_begin(); dit != inserted_end(); ++dit))      {CGAL_expensive_precondition(*dit != key);}    CGAL_expensive_precondition_code(for (Changed_iterator dit= changed_begin(); dit != changed_end(); ++dit))      {CGAL_expensive_precondition(*dit != key);}    deleted_objects_.push_back(key);    if (!editing_) finish_editing();  }  //! Clear all points.  void clear() {    deleted_objects_.insert(deleted_objects_.end(), keys_begin(), keys_end());    //storage_.clear();    if (!editing_) finish_editing();  }  struct Get_key {    typedef Key result_type;    Key operator()(const Storage_item &o) const {      return o.first;    }  };  struct Is_ok {    typedef bool result_type;    //typedef const Storage_item& argument_type;    template <class T>    bool operator()(const T& p) const {      return !p->first.is_valid();    }  };  //! An iterator to iterate through all the keys  typedef CGAL::Filter_iterator<typename Storage::const_iterator, Is_ok>  Fiterator;  typedef boost::transform_iterator<Get_key,  Fiterator> Key_iterator;    //! Begin iterating through the keys  Key_iterator keys_begin() const  {    return Key_iterator(Fiterator(storage_.end(), Is_ok(), storage_.begin()), Get_key());  }  //! End iterating through the keys.  Key_iterator keys_end() const  {    return Key_iterator(Fiterator(storage_.end(),  Is_ok()), Get_key());  }  //! An iterator for iterating through changed objects.  /*!  The list of objects accessed through this iterator is only    those changed in the last session.  */  typedef typename std::vector<Key>::const_iterator Changed_iterator;  Changed_iterator changed_begin() const  {    return changed_objects_.begin();  }  Changed_iterator changed_end() const  {    return changed_objects_.end();  }  //! An iterator for iterating through added objects.  /*!  The list of objects accessed through this iterator is only    those added in the last session.  */  typedef typename std::vector<Key>::const_iterator Inserted_iterator;  //! The begin iterator for new objects  Inserted_iterator inserted_begin() const  {    return new_objects_.begin();  }  //! The past-end iterator for new objects.  Inserted_iterator inserted_end() const  {    return new_objects_.end();  }  //! An iterator for iterating through deleted objects.  /*!  The list of objects accessed through this iterator is only    those deleted in the last session.  */  typedef typename std::vector<Key>::const_iterator Erased_iterator;  //! The begin iterator for deleted objects.  Erased_iterator erased_begin() const  {    return deleted_objects_.begin();  }  //! The past end iterator for deleted objects.  Erased_iterator erased_end() const  {    return deleted_objects_.end();  }  //! The number of objects in the table  /*!  The objects are stored in a vector, so this could be large than    (additions- deletions) as non-consecutive blank objects not at the    back are still counted. In general, deleting an object doesn't do    much for storage, just provides notifications.  */  unsigned int size() const  {    return num_valid_;  }  std::ostream &write(std::ostream &out) const {    for (unsigned int i=0; i< storage_.size(); ++i){      out << storage_[i].second << std::endl;    }    return out;  }    std::istream &read(std::istream &in) {    if (!storage_.empty()) {      set_is_editing(true);      for (Key_iterator kit= keys_begin(); kit != keys_end(); ++kit){	erase(*kit);      }      set_is_editing(false);      storage_.clear();    }    set_is_editing(true);    do {      char buf[10000];      in.getline(buf, 10000);      if (!in || buf[0]=='\0' || buf[0]=='#') break;      std::istringstream iss(buf);      Data d;       iss >> d;      if (!iss) {	CGAL_KINETIC_ERROR("ERROR reading object from line " << buf);	++internal::io_errors__;      } else {	//CGAL_KINETIC_LOG(LOG_LOTS, "Read " << d << std::endl);	insert(d);      }    } while (true);    set_is_editing(false);    return in;  }private:  friend class Multi_listener<Listener_core>;  //! listen for changes  void new_listener(Listener *sub) const  {    subscribers_.insert(sub);  }  //! end listening for changes  void delete_listener(Listener *sub) const  {    subscribers_.erase(sub);  }  void finish_editing() {    for (typename Subscribers::iterator it= subscribers_.begin(); it != subscribers_.end(); ++it) {      (*it)->new_notification(Listener::IS_EDITING);    }    num_valid_+= new_objects_.size();    num_valid_-= deleted_objects_.size();    CGAL_assertion(num_valid_ >=0);    for (Erased_iterator it= erased_begin(); it != erased_end(); ++it) {      storage_[it->to_index()].second=Data();      storage_[it->to_index()].first=Key();    }    changed_objects_.clear();    deleted_objects_.clear();    new_objects_.clear();  }protected:  Storage storage_;  std::vector<bool> valid_;  mutable Subscribers subscribers_;  std::vector<Key> changed_objects_;  std::vector<Key> deleted_objects_;  std::vector<Key> new_objects_;  bool editing_;  int num_valid_;  /*static const Data &null_object() {    static Data o;    return o;    }*/};template <class V >inline std::ostream &operator<<(std::ostream &out, const Active_objects_vector<V> &v) {  return v.write(out);}template <class V >inline std::istream &operator>>(std::istream &in, Active_objects_vector<V> &v) {  return v.read(in);}CGAL_KINETIC_END_NAMESPACE;#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -