Sophie

Sophie

distrib > Mageia > 6 > i586 > by-pkgid > 8bc6759a6f32712e5bc0cdfb80b23784 > files > 455

boost-examples-1.60.0-6.mga6.noarch.rpm

//  boost/chrono/stopwatches/strict_stopwatch.hpp  ------------------------------------------------------------//
//  Copyright 2011 Vicente J. Botet Escriba
//  Copyright (c) Microsoft Corporation 2014
//  Distributed under the Boost Software License, Version 1.0. (See accompanying
//  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//  See http://www.boost.org/libs/libs/chrono/stopwatches for documentation.

#ifndef BOOST_CHRONO_STOPWATCHES_STRICT_STOPWATCH__HPP
#define BOOST_CHRONO_STOPWATCHES_STRICT_STOPWATCH__HPP

#include <boost/chrono/config.hpp>

#include <boost/chrono/chrono.hpp>
#include <boost/chrono/detail/system.hpp>
#include <boost/chrono/thread_clock.hpp>
#include <boost/chrono/process_cpu_clocks.hpp>
#include <utility>

namespace boost
{
  namespace chrono
  {

    /**
     * This class provides the simpler stopwatch which is just able to give the elapsed time since its construction.
     */
    template<typename Clock=high_resolution_clock>
    class strict_stopwatch
    {
    public:
      typedef Clock clock;
      typedef typename Clock::duration duration;
      typedef typename Clock::time_point time_point;
      typedef typename Clock::rep rep;
      typedef typename Clock::period period;
      BOOST_STATIC_CONSTEXPR bool is_steady =             Clock::is_steady;


      strict_stopwatch() :
        start_(clock::now())
      {
      }
#if !defined BOOST_CHRONO_DONT_PROVIDE_HYBRID_ERROR_HANDLING
      explicit strict_stopwatch(system::error_code & ec) :
        start_(duration::zero())
      {
        time_point tmp = clock::now(ec);
        if (!BOOST_CHRONO_IS_THROWS(ec))
        {
          if (ec)
          {
            return;
          }
        }
        start_ = tmp;
      }
#endif

      ~strict_stopwatch() BOOST_NOEXCEPT
      {
      }

      duration elapsed()
      {
        return clock::now() - start_;
      }

#if !defined BOOST_CHRONO_DONT_PROVIDE_HYBRID_ERROR_HANDLING
      duration elapsed(system::error_code & ec)
      {
        time_point tmp = clock::now(ec);
        if (!BOOST_CHRONO_IS_THROWS(ec))
        {
          if (ec)
            return duration::zero();
        }
        return tmp - start_;
      }
#endif
      /**
       * States if the Stopwatch is running.
       */
      bool is_running() const {
        return true;
      }
    private:
      time_point start_;
      strict_stopwatch(const strict_stopwatch&); // = delete;
      strict_stopwatch& operator=(const strict_stopwatch&); // = delete;
    };

    typedef strict_stopwatch<system_clock> system_strict_stopwatch;
#ifdef BOOST_CHRONO_HAS_CLOCK_STEADY
    typedef strict_stopwatch<steady_clock> steady_strict_stopwatch;
#endif
    typedef strict_stopwatch<high_resolution_clock> high_resolution_strict_stopwatch;

#if defined(BOOST_CHRONO_HAS_PROCESS_CLOCKS)
    typedef strict_stopwatch<process_real_cpu_clock> process_real_cpu_strict_stopwatch;
#if ! BOOST_OS_WINDOWS || BOOST_PLAT_WINDOWS_DESKTOP
    typedef strict_stopwatch<process_user_cpu_clock> process_user_cpu_strict_stopwatch;
    typedef strict_stopwatch<process_system_cpu_clock> process_system_cpu_strict_stopwatch;
    typedef strict_stopwatch<process_cpu_clock> process_cpu_strict_stopwatch;
#endif
#endif

#if defined(BOOST_CHRONO_HAS_THREAD_CLOCK)
    typedef strict_stopwatch<thread_clock> thread_strict_stopwatch;
#endif


  } // namespace chrono
} // namespace boost

#endif