mpd/src/output/Timer.hxx

55 lines
1.4 KiB
C++
Raw Normal View History

/*
2019-06-17 11:17:30 +02:00
* Copyright 2003-2019 The Music Player Daemon Project
* http://www.musicpd.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.
*/
2013-05-12 15:03:42 +02:00
#ifndef MPD_TIMER_HXX
#define MPD_TIMER_HXX
2016-12-28 10:11:07 +01:00
#include <chrono>
2013-08-03 21:00:50 +02:00
struct AudioFormat;
2013-05-12 15:03:42 +02:00
class Timer {
2016-12-28 10:11:07 +01:00
typedef std::chrono::microseconds Time;
Time time;
2016-12-28 10:11:48 +01:00
bool started = false;
2013-05-12 15:03:42 +02:00
const int rate;
public:
2013-08-03 21:00:50 +02:00
explicit Timer(AudioFormat af);
2013-01-15 18:58:02 +01:00
2013-05-12 15:03:42 +02:00
bool IsStarted() const { return started; }
2013-05-12 15:03:42 +02:00
void Start();
void Reset();
2016-12-28 10:17:29 +01:00
void Add(size_t size);
2013-05-12 15:03:42 +02:00
/**
2016-12-28 10:11:07 +01:00
* Returns the duration to sleep to get back to sync.
2013-05-12 15:03:42 +02:00
*/
2016-12-28 10:11:07 +01:00
std::chrono::steady_clock::duration GetDelay() const;
private:
static Time Now() {
return std::chrono::duration_cast<Time>(std::chrono::steady_clock::now().time_since_epoch());
}
2013-05-12 15:03:42 +02:00
};
2013-01-15 18:58:02 +01:00
#endif