summaryrefslogtreecommitdiff
path: root/libs/backends/portaudio/cycle_timer.h
blob: b81a1ed234fc44da9e2881a8a394f6324e7e3a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
 * Copyright (C) 2015 Tim Mayberry <mojofunk@gmail.com>
 *
 * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#ifndef CYCLE_TIMER_H
#define CYCLE_TIMER_H

#include <stdint.h>
#include <cmath>
#include <algorithm>

// Could call it FrameTimer and make it more generic
// Could be an interface and or include clock source
// include sample count/processed samples in iteration?
class CycleTimer {
public:
	CycleTimer ()
	    : m_cycle_start (0)
	    , m_samplerate (0)
	    , m_samples_per_cycle (0)
	{
	}

	void set_samplerate (double samplerate) { m_samplerate = samplerate; }

	double get_samplerate () const { return m_samplerate; }

	double get_sample_length_us () const { return 1e6 / m_samplerate; }

	double get_length_us () const
	{
		return get_sample_length_us () * m_samples_per_cycle;
	}

	void set_samples_per_cycle (uint32_t samples)
	{
		m_samples_per_cycle = samples;
	}

	uint32_t get_samples_per_cycle () const { return m_samples_per_cycle; }

	// rint?? that may round to sample outside of cycle?
	// max(0, value)?
	uint32_t samples_since_cycle_start (int64_t timer_val) const
	{
		if (timer_val < m_cycle_start) {
			return 0;
		}
		return std::max((double)0, (timer_val - get_start ()) / get_sample_length_us ());
	}

	int64_t timestamp_from_sample_offset (uint32_t sample_offset)
	{
		return m_cycle_start + get_sample_length_us () * sample_offset;
	}

	bool valid () const { return m_samples_per_cycle && m_samplerate; }

	bool in_cycle(int64_t timer_value_us) const
	{
		return (timer_value_us >= get_start()) && (timer_value_us < get_next_start());
	}

	void reset_start (int64_t timestamp) { m_cycle_start = timestamp; }

	int64_t get_start () const { return m_cycle_start; }

	int64_t microseconds_since_start (int64_t timestamp) const
	{
		return timestamp - m_cycle_start;
	}

	int64_t microseconds_since_start (uint32_t samples) const
	{
		return m_cycle_start + samples * get_sample_length_us ();
	}

	int64_t get_next_start () const
	{
		return m_cycle_start + rint (get_length_us ());
	}

private:
	int64_t m_cycle_start;

	uint32_t m_samplerate;
	uint32_t m_samples_per_cycle;
};

#endif // CYCLE_TIMER_H