12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- // Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
- //
- // Permission to use, copy, modify, and/or distribute this software for any
- // purpose with or without fee is hereby granted, provided that the above
- // copyright notice and this permission notice appear in all copies.
- //
- // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- #include <util/stopwatch.h>
- #include <util/stopwatch_impl.h>
- namespace isc {
- namespace util {
- using namespace boost::posix_time;
- Stopwatch::Stopwatch(const bool autostart)
- : impl_(new StopwatchImpl()) {
- // If the autostart has been specified, invoke start.
- if (autostart) {
- start();
- }
- }
- Stopwatch::~Stopwatch() {
- delete impl_;
- }
- void
- Stopwatch::start() {
- impl_->start();
- }
- void
- Stopwatch::stop() {
- impl_->stop();
- }
- void
- Stopwatch::reset() {
- impl_->reset();
- }
- boost::posix_time::time_duration
- Stopwatch::getLastDuration() const {
- return (impl_->getLastDuration());
- }
- boost::posix_time::time_duration
- Stopwatch::getTotalDuration() const {
- return (impl_->getTotalDuration());
- }
- long
- Stopwatch::getLastMilliseconds() const {
- return (getLastDuration().total_milliseconds());
- }
- long
- Stopwatch::getTotalMilliseconds() const {
- return (getTotalDuration().total_milliseconds());
- }
- long
- Stopwatch::getLastMicroseconds() const {
- return (getLastDuration().total_microseconds());
- }
- long
- Stopwatch::getTotalMicroseconds() const {
- return (getTotalDuration().total_microseconds());
- }
- std::string
- Stopwatch::logFormatLastDuration() const {
- return (StopwatchImpl::logFormat(getLastDuration()));
- }
- std::string
- Stopwatch::logFormatTotalDuration() const {
- return (StopwatchImpl::logFormat(getTotalDuration()));
- }
- } // end of isc::util
- } // end of isc
|