2008-12-12 17:55:03 -05:00
|
|
|
/*
|
2019-08-03 08:34:29 -04:00
|
|
|
* Copyright (C) 2006-2007 John Anderson
|
|
|
|
* Copyright (C) 2008-2015 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2014-2015 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2008-12-12 17:55:03 -05:00
|
|
|
|
|
|
|
#ifndef timer_h
|
|
|
|
#define timer_h
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include "windows.h"
|
|
|
|
#else
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
|
2015-04-15 20:37:20 -04:00
|
|
|
namespace ArdourSurface {
|
|
|
|
|
2008-12-12 17:55:03 -05:00
|
|
|
namespace Mackie
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
millisecond timer class.
|
|
|
|
*/
|
|
|
|
class Timer
|
|
|
|
{
|
|
|
|
public:
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 17:55:03 -05:00
|
|
|
/**
|
|
|
|
start the timer running if true, or just create the
|
|
|
|
object if false.
|
|
|
|
*/
|
|
|
|
Timer( bool shouldStart = true )
|
|
|
|
{
|
|
|
|
if ( shouldStart )
|
|
|
|
start();
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 17:55:03 -05:00
|
|
|
/**
|
|
|
|
Start the timer running. Return the current timestamp, in milliseconds
|
|
|
|
*/
|
|
|
|
unsigned long start()
|
|
|
|
{
|
2014-05-16 12:35:42 -04:00
|
|
|
_start = g_get_monotonic_time();
|
|
|
|
return _start / 1000;
|
2008-12-12 17:55:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
returns the number of milliseconds since start
|
|
|
|
also stops the timer running
|
|
|
|
*/
|
|
|
|
unsigned long stop()
|
|
|
|
{
|
2014-05-16 12:35:42 -04:00
|
|
|
_stop = g_get_monotonic_time();
|
2008-12-12 17:55:03 -05:00
|
|
|
return elapsed();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
returns the number of milliseconds since start
|
|
|
|
*/
|
|
|
|
unsigned long elapsed() const
|
|
|
|
{
|
|
|
|
if ( running )
|
|
|
|
{
|
2014-05-16 12:35:42 -04:00
|
|
|
uint64_t now = g_get_monotonic_time();
|
|
|
|
return (now - _start) / 1000;
|
2008-12-12 17:55:03 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-05-16 12:35:42 -04:00
|
|
|
return (_stop - _start) / 1000;
|
2008-12-12 17:55:03 -05:00
|
|
|
}
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 17:55:03 -05:00
|
|
|
/**
|
|
|
|
Call stop and then start. Return the value from stop.
|
|
|
|
*/
|
|
|
|
unsigned long restart()
|
|
|
|
{
|
|
|
|
unsigned long retval = stop();
|
|
|
|
start();
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2014-05-16 12:35:42 -04:00
|
|
|
uint64_t _start;
|
|
|
|
uint64_t _stop;
|
2008-12-12 17:55:03 -05:00
|
|
|
bool running;
|
|
|
|
};
|
|
|
|
|
2015-04-15 20:37:20 -04:00
|
|
|
} // Mackie namespace
|
|
|
|
} // ArdourSurface namespace
|
2008-12-12 17:55:03 -05:00
|
|
|
|
|
|
|
#endif
|