timer.hpp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. // boost/timer/timer.hpp -------------------------------------------------------------//
  2. // Copyright Beman Dawes 1994-2007, 2011
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // See http://www.boost.org/LICENSE_1_0.txt
  5. #ifndef BOOST_TIMER_TIMER_HPP
  6. #define BOOST_TIMER_TIMER_HPP
  7. #include <boost/config/warning_disable.hpp>
  8. #include <boost/timer/config.hpp>
  9. //#include <boost/chrono/chrono.hpp>
  10. #include <boost/cstdint.hpp>
  11. #include <string>
  12. #include <cstring>
  13. #include <ostream>
  14. #include <boost/config/abi_prefix.hpp> // must be the last #include
  15. # if defined(_MSC_VER)
  16. # pragma warning(push) // Save warning settings
  17. # pragma warning(disable : 4251) // disable warning: class 'std::basic_string<_Elem,_Traits,_Ax>'
  18. # endif // needs to have dll-interface...
  19. //--------------------------------------------------------------------------------------//
  20. namespace boost
  21. {
  22. namespace timer
  23. {
  24. class cpu_timer;
  25. class auto_cpu_timer;
  26. typedef boost::int_least64_t nanosecond_type;
  27. struct cpu_times
  28. {
  29. nanosecond_type wall;
  30. nanosecond_type user;
  31. nanosecond_type system;
  32. void clear() { wall = user = system = 0LL; }
  33. };
  34. const short default_places = 6;
  35. BOOST_TIMER_DECL
  36. std::string format(const cpu_times& times, short places, const std::string& format);
  37. BOOST_TIMER_DECL
  38. std::string format(const cpu_times& times, short places = default_places);
  39. // cpu_timer -------------------------------------------------------------------------//
  40. class BOOST_TIMER_DECL cpu_timer
  41. {
  42. public:
  43. // constructor
  44. cpu_timer() BOOST_NOEXCEPT { start(); }
  45. // observers
  46. bool is_stopped() const BOOST_NOEXCEPT { return m_is_stopped; }
  47. cpu_times elapsed() const BOOST_NOEXCEPT; // does not stop()
  48. std::string format(short places, const std::string& format) const
  49. { return ::boost::timer::format(elapsed(), places, format); }
  50. std::string format(short places = default_places) const
  51. { return ::boost::timer::format(elapsed(), places); }
  52. // actions
  53. void start() BOOST_NOEXCEPT;
  54. void stop() BOOST_NOEXCEPT;
  55. void resume() BOOST_NOEXCEPT;
  56. private:
  57. cpu_times m_times;
  58. bool m_is_stopped;
  59. };
  60. // auto_cpu_timer --------------------------------------------------------------------//
  61. class BOOST_TIMER_DECL auto_cpu_timer : public cpu_timer
  62. {
  63. public:
  64. // Explicit defaults for os are not provided to avoid including <iostream>, which has
  65. // high costs even when the standard streams are not actually used. Explicit defaults
  66. // for format are not provided to avoid order-of-dynamic-initialization issues with a
  67. // std::string.
  68. explicit auto_cpu_timer(short places = default_places); // #1
  69. auto_cpu_timer(short places, const std::string& format); // #2
  70. explicit auto_cpu_timer(const std::string& format); // #3
  71. auto_cpu_timer(std::ostream& os, short places,
  72. const std::string& format) // #4
  73. : m_places(places), m_os(&os), m_format(format)
  74. { start(); }
  75. explicit auto_cpu_timer(std::ostream& os, short places = default_places); // #5
  76. auto_cpu_timer(std::ostream& os, const std::string& format) // #6
  77. : m_places(default_places), m_os(&os), m_format(format)
  78. { start(); }
  79. ~auto_cpu_timer();
  80. // observers
  81. // not particularly useful to users, but allow testing of constructor
  82. // postconditions and ease specification of other functionality without resorting
  83. // to "for exposition only" private members.
  84. std::ostream& ostream() const { return *m_os; }
  85. short places() const { return m_places; }
  86. const std::string& format_string() const { return m_format; }
  87. // actions
  88. void report();
  89. private:
  90. short m_places;
  91. std::ostream* m_os; // stored as ptr so compiler can generate operator=
  92. std::string m_format;
  93. };
  94. } // namespace timer
  95. } // namespace boost
  96. # if defined(_MSC_VER)
  97. # pragma warning(pop) // restore warning settings.
  98. # endif
  99. #include <boost/config/abi_suffix.hpp> // pops abi_prefix.hpp pragmas
  100. #endif // BOOST_TIMER_TIMER_HPP