os/ossrv/ossrv_pub/boost_apis/boost/progress.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
//  boost progress.hpp header file  ------------------------------------------//
sl@0
     2
sl@0
     3
//  Copyright Beman Dawes 1994-99.  Distributed under the Boost
sl@0
     4
//  Software License, Version 1.0. (See accompanying file
sl@0
     5
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     6
sl@0
     7
//  See http://www.boost.org/libs/timer for documentation.
sl@0
     8
sl@0
     9
//  Revision History
sl@0
    10
//   1 Dec 01  Add leading progress display strings (suggested by Toon Knapen)
sl@0
    11
//  20 May 01  Introduce several static_casts<> to eliminate warning messages
sl@0
    12
//             (Fixed by Beman, reported by Herve Bronnimann)
sl@0
    13
//  12 Jan 01  Change to inline implementation to allow use without library
sl@0
    14
//             builds. See docs for more rationale. (Beman Dawes) 
sl@0
    15
//  22 Jul 99  Name changed to .hpp
sl@0
    16
//  16 Jul 99  Second beta
sl@0
    17
//   6 Jul 99  Initial boost version
sl@0
    18
sl@0
    19
#ifndef BOOST_PROGRESS_HPP
sl@0
    20
#define BOOST_PROGRESS_HPP
sl@0
    21
sl@0
    22
#include <boost/timer.hpp>
sl@0
    23
#include <boost/utility.hpp>  // for noncopyable
sl@0
    24
#include <boost/cstdint.hpp>  // for uintmax_t
sl@0
    25
#include <iostream>           // for ostream, cout, etc
sl@0
    26
#include <string>             // for string
sl@0
    27
sl@0
    28
namespace boost {
sl@0
    29
sl@0
    30
//  progress_timer  ----------------------------------------------------------//
sl@0
    31
sl@0
    32
//  A progress_timer behaves like a timer except that the destructor displays
sl@0
    33
//  an elapsed time message at an appropriate place in an appropriate form.
sl@0
    34
sl@0
    35
class progress_timer : public timer, private noncopyable
sl@0
    36
{
sl@0
    37
  
sl@0
    38
 public:
sl@0
    39
  explicit progress_timer( std::ostream & os = std::cout )
sl@0
    40
     // os is hint; implementation may ignore, particularly in embedded systems
sl@0
    41
     : m_os(os) {}
sl@0
    42
  ~progress_timer()
sl@0
    43
  {
sl@0
    44
  //  A) Throwing an exception from a destructor is a Bad Thing.
sl@0
    45
  //  B) The progress_timer destructor does output which may throw.
sl@0
    46
  //  C) A progress_timer is usually not critical to the application.
sl@0
    47
  //  Therefore, wrap the I/O in a try block, catch and ignore all exceptions.
sl@0
    48
    try
sl@0
    49
    {
sl@0
    50
      // use istream instead of ios_base to workaround GNU problem (Greg Chicares)
sl@0
    51
      std::istream::fmtflags old_flags = m_os.setf( std::istream::fixed,
sl@0
    52
                                                   std::istream::floatfield );
sl@0
    53
      std::streamsize old_prec = m_os.precision( 2 );
sl@0
    54
      m_os << elapsed() << " s\n" // "s" is System International d'Unités std
sl@0
    55
                        << std::endl;
sl@0
    56
      m_os.flags( old_flags );
sl@0
    57
      m_os.precision( old_prec );
sl@0
    58
    }
sl@0
    59
sl@0
    60
    catch (...) {} // eat any exceptions
sl@0
    61
  } // ~progress_timer
sl@0
    62
sl@0
    63
 private:
sl@0
    64
  std::ostream & m_os;
sl@0
    65
};
sl@0
    66
sl@0
    67
sl@0
    68
//  progress_display  --------------------------------------------------------//
sl@0
    69
sl@0
    70
//  progress_display displays an appropriate indication of 
sl@0
    71
//  progress at an appropriate place in an appropriate form.
sl@0
    72
sl@0
    73
// NOTE: (Jan 12, 2001) Tried to change unsigned long to boost::uintmax_t, but
sl@0
    74
// found some compilers couldn't handle the required conversion to double.
sl@0
    75
// Reverted to unsigned long until the compilers catch up. 
sl@0
    76
sl@0
    77
class progress_display : private noncopyable
sl@0
    78
{
sl@0
    79
 public:
sl@0
    80
  explicit progress_display( unsigned long expected_count,
sl@0
    81
                             std::ostream & os = std::cout,
sl@0
    82
                             const std::string & s1 = "\n", //leading strings
sl@0
    83
                             const std::string & s2 = "",
sl@0
    84
                             const std::string & s3 = "" )
sl@0
    85
   // os is hint; implementation may ignore, particularly in embedded systems
sl@0
    86
   : m_os(os), m_s1(s1), m_s2(s2), m_s3(s3) { restart(expected_count); }
sl@0
    87
sl@0
    88
  void           restart( unsigned long expected_count )
sl@0
    89
  //  Effects: display appropriate scale
sl@0
    90
  //  Postconditions: count()==0, expected_count()==expected_count
sl@0
    91
  {
sl@0
    92
    _count = _next_tic_count = _tic = 0;
sl@0
    93
    _expected_count = expected_count;
sl@0
    94
sl@0
    95
    m_os << m_s1 << "0%   10   20   30   40   50   60   70   80   90   100%\n"
sl@0
    96
         << m_s2 << "|----|----|----|----|----|----|----|----|----|----|"
sl@0
    97
         << std::endl  // endl implies flush, which ensures display
sl@0
    98
         << m_s3;
sl@0
    99
    if ( !_expected_count ) _expected_count = 1;  // prevent divide by zero
sl@0
   100
  } // restart
sl@0
   101
sl@0
   102
  unsigned long  operator+=( unsigned long increment )
sl@0
   103
  //  Effects: Display appropriate progress tic if needed.
sl@0
   104
  //  Postconditions: count()== original count() + increment
sl@0
   105
  //  Returns: count().
sl@0
   106
  {
sl@0
   107
    if ( (_count += increment) >= _next_tic_count ) { display_tic(); }
sl@0
   108
    return _count;
sl@0
   109
  }
sl@0
   110
sl@0
   111
  unsigned long  operator++()           { return operator+=( 1 ); }
sl@0
   112
  unsigned long  count() const          { return _count; }
sl@0
   113
  unsigned long  expected_count() const { return _expected_count; }
sl@0
   114
sl@0
   115
  private:
sl@0
   116
  std::ostream &     m_os;  // may not be present in all imps
sl@0
   117
  const std::string  m_s1;  // string is more general, safer than 
sl@0
   118
  const std::string  m_s2;  //  const char *, and efficiency or size are
sl@0
   119
  const std::string  m_s3;  //  not issues
sl@0
   120
sl@0
   121
  unsigned long _count, _expected_count, _next_tic_count;
sl@0
   122
  unsigned int  _tic;
sl@0
   123
  void display_tic()
sl@0
   124
  {
sl@0
   125
    // use of floating point ensures that both large and small counts
sl@0
   126
    // work correctly.  static_cast<>() is also used several places
sl@0
   127
    // to suppress spurious compiler warnings. 
sl@0
   128
    unsigned int tics_needed =
sl@0
   129
      static_cast<unsigned int>(
sl@0
   130
        (static_cast<double>(_count)/_expected_count)*50.0 );
sl@0
   131
    do { m_os << '*' << std::flush; } while ( ++_tic < tics_needed );
sl@0
   132
    _next_tic_count = 
sl@0
   133
      static_cast<unsigned long>((_tic/50.0)*_expected_count);
sl@0
   134
    if ( _count == _expected_count ) {
sl@0
   135
      if ( _tic < 51 ) m_os << '*';
sl@0
   136
      m_os << std::endl;
sl@0
   137
      }
sl@0
   138
  } // display_tic
sl@0
   139
};
sl@0
   140
sl@0
   141
} // namespace boost
sl@0
   142
sl@0
   143
#endif  // BOOST_PROGRESS_HPP