lemon/counter.h
changeset 160 b1bd0c2a7f57
parent 121 91c0fed3181e
child 168 8ceb318224b1
equal deleted inserted replaced
1:30470f389555 2:9fc31d1543b2
    94 
    94 
    95 
    95 
    96   /// \addtogroup timecount
    96   /// \addtogroup timecount
    97   /// @{
    97   /// @{
    98 
    98 
    99   ///A counter class
    99   /// A counter class
   100 
   100 
   101   ///This class makes it easier to count certain events. You can increment
   101   /// This class makes it easier to count certain events (e.g. for debug
   102   ///or decrement the counter using operator++ and operator--.
   102   /// reasons).
   103   ///A report is automatically printed on destruction.
   103   /// You can increment or decrement the counter using \c operator++,
   104   ///\todo More doc
   104   /// \c operator--, \c operator+= and \c operator-=. You can also
       
   105   /// define subcounters for the different phases of the algorithm or
       
   106   /// for different types of operations.
       
   107   /// A report containing the given title and the value of the counter
       
   108   /// is automatically printed on destruction. 
       
   109   ///
       
   110   /// The following example shows the usage of counters and subcounters.
       
   111   /// \code
       
   112   /// // Bubble sort
       
   113   /// std::vector<T> v;
       
   114   /// ...
       
   115   /// Counter op("Operations: ");
       
   116   /// Counter::SubCounter as(op, "Assignments: ");
       
   117   /// Counter::SubCounter co(op, "Comparisons: ");
       
   118   /// for (int i = v.size()-1; i > 0; --i) {
       
   119   ///   for (int j = 0; j < i; ++j) {
       
   120   ///     if (v[j] > v[j+1]) {
       
   121   ///       T tmp = v[j];
       
   122   ///       v[j] = v[j+1];
       
   123   ///       v[j+1] = tmp;
       
   124   ///       as += 3;          // three assignments
       
   125   ///     }
       
   126   ///     ++co;               // one comparison
       
   127   ///   }
       
   128   /// }
       
   129   /// \endcode
       
   130   ///
       
   131   /// This code prints out something like that:
       
   132   /// \code
       
   133   /// Comparisons: 45
       
   134   /// Assignments: 57
       
   135   /// Operations: 102
       
   136   /// \endcode
       
   137   ///
       
   138   /// \sa NoCounter
   105   class Counter 
   139   class Counter 
   106   {
   140   {
   107     std::string _title;
   141     std::string _title;
   108     std::ostream &_os;
   142     std::ostream &_os;
   109     int count;
   143     int count;
   110   public:
   144   public:
   111     ///\e
   145 
   112 
   146     /// SubCounter class
   113     ///\todo document please.
   147     
       
   148     /// This class can be used to setup subcounters for a \ref Counter
       
   149     /// to have finer reports. A subcounter provides exactly the same
       
   150     /// operations as the main \ref Counter, but it also increments and
       
   151     /// decrements the value of its parent.
       
   152     /// Subcounters can also have subcounters.
       
   153     /// 
       
   154     /// The parent counter must be given as the first parameter of the
       
   155     /// constructor. Apart from that a title and an \c ostream object
       
   156     /// can also be given just like for the main \ref Counter.
   114     ///
   157     ///
       
   158     /// A report containing the given title and the value of the
       
   159     /// subcounter is automatically printed on destruction. If you
       
   160     /// would like to turn off this report, use \ref NoSubCounter
       
   161     /// instead.
       
   162     /// 
       
   163     /// \sa NoSubCounter
   115     typedef _SubCounter<Counter> SubCounter;
   164     typedef _SubCounter<Counter> SubCounter;
   116     ///\e
   165 
   117 
   166     /// SubCounter class without printing report on destruction 
   118     ///\todo document please.
   167     
       
   168     /// This class can be used to setup subcounters for a \ref Counter.
       
   169     /// It is the same as \ref SubCounter but it does not print report
       
   170     /// on destruction. (It modifies the value of its parent, so 'No'
       
   171     /// only means 'do not print'.)
   119     ///
   172     ///
       
   173     /// Replacing \ref SubCounter "SubCounter"s with \ref NoSubCounter
       
   174     /// "NoSubCounter"s makes it possible to turn off reporting 
       
   175     /// subcounter values without actually removing the definitions
       
   176     /// and the increment or decrement operators.
       
   177     ///
       
   178     /// \sa SubCounter
   120     typedef _NoSubCounter<Counter> NoSubCounter;
   179     typedef _NoSubCounter<Counter> NoSubCounter;
   121 
   180 
   122     ///\e
   181     /// Constructor.
   123     Counter() : _title(), _os(std::cerr), count(0) {}
   182     Counter() : _title(), _os(std::cerr), count(0) {}
   124     ///\e
   183     /// Constructor.
   125     Counter(std::string title,std::ostream &os=std::cerr) 
   184     Counter(std::string title,std::ostream &os=std::cerr) 
   126       : _title(title), _os(os), count(0) {}
   185       : _title(title), _os(os), count(0) {}
   127     ///\e
   186     /// Constructor.
   128     Counter(const char *title,std::ostream &os=std::cerr)
   187     Counter(const char *title,std::ostream &os=std::cerr)
   129       : _title(title), _os(os), count(0) {}
   188       : _title(title), _os(os), count(0) {}
   130     ///Destructor. Prints the given title and the value of the counter.
   189     /// Destructor. Prints the given title and the value of the counter.
   131     ~Counter() {
   190     ~Counter() {
   132       _os << _title << count <<std::endl;
   191       _os << _title << count <<std::endl;
   133     }
   192     }
   134     ///\e
   193     ///\e
   135     Counter &operator++() { count++; return *this;}
   194     Counter &operator++() { count++; return *this;}
   141     int operator--(int) { return count--;}
   200     int operator--(int) { return count--;}
   142     ///\e
   201     ///\e
   143     Counter &operator+=(int c) { count+=c; return *this;}
   202     Counter &operator+=(int c) { count+=c; return *this;}
   144     ///\e
   203     ///\e
   145     Counter &operator-=(int c) { count-=c; return *this;}
   204     Counter &operator-=(int c) { count-=c; return *this;}
   146     ///\e
   205     /// Resets the counter to the given value.
   147     void reset(int c=0) {count=c;}
   206     void reset(int c=0) {count=c;}
   148     ///\e
   207     /// Returns the value of the counter.
   149     operator int() {return count;}
   208     operator int() {return count;}
   150   };
   209   };
   151 
   210 
   152   ///'Do nothing' version of \ref Counter
   211   /// 'Do nothing' version of Counter.
   153 
   212 
   154   ///'Do nothing' version of \ref Counter.
   213   /// This class can be used in the same way as \ref Counter however it
   155   ///\sa Counter
   214   /// does not count at all and does not print report on destruction.
       
   215   ///
       
   216   /// Replacing a \ref Counter with a \ref NoCounter makes it possible
       
   217   /// to turn off all counting and reporting (SubCounters should also
       
   218   /// be replaced with NoSubCounters), so it does not affect the
       
   219   /// efficiency of the program at all.
       
   220   ///
       
   221   /// \sa Counter
   156   class NoCounter
   222   class NoCounter
   157   {
   223   {
   158   public:
   224   public:
   159     typedef _NoSubCounter<NoCounter> SubCounter;
   225     typedef _NoSubCounter<NoCounter> SubCounter;
   160     typedef _NoSubCounter<NoCounter> NoSubCounter;
   226     typedef _NoSubCounter<NoCounter> NoSubCounter;