summaryrefslogtreecommitdiffstats
path: root/arts/midi/audiomiditimer_impl.cc
blob: a185b1cb25aead4771978113d5fbd24a8de908c3 (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
105
106
107
108
109
110
111
112
113
114
115
116
    /*

    Copyright (C) 2001 Stefan Westerfeld
                       stefan@space.twc.de

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.
  
    This library 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
    Library General Public License for more details.
   
    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA 02110-1301, USA.

    */

#include "artsmidi.h"
#include "artsflow.h"
#include "stdsynthmodule.h"
#include "debug.h"
#include "miditimercommon.h"
#include "audiotimer.h"
#include "flowsystem.h"

using namespace std;

namespace Arts {

class AudioMidiTimerCommon : public MidiTimerCommon, public AudioTimerCallback
{
protected:
	AudioMidiTimerCommon();
	virtual ~AudioMidiTimerCommon();

	AudioTimer *audioTimer;

public:
	// allocation: share one AudioMidiTimerCommon for everbody who needs one
	static AudioMidiTimerCommon *subscribe();

	TimeStamp time();
	void updateTime();
};

}

using namespace Arts;

static AudioMidiTimerCommon *AudioMidiTimerCommon_the = 0;

AudioMidiTimerCommon::AudioMidiTimerCommon()
{
	AudioMidiTimerCommon_the = this;

	audioTimer = AudioTimer::subscribe();
	audioTimer->addCallback(this);
}

AudioMidiTimerCommon::~AudioMidiTimerCommon()
{
	audioTimer->removeCallback(this);
	audioTimer->unsubscribe();

	AudioMidiTimerCommon_the = 0;
}

TimeStamp AudioMidiTimerCommon::time()
{
	return audioTimer->time();
}

void AudioMidiTimerCommon::updateTime()
{
	processQueue();
}

AudioMidiTimerCommon *AudioMidiTimerCommon::subscribe()
{
	if(!AudioMidiTimerCommon_the)
		AudioMidiTimerCommon_the = new AudioMidiTimerCommon();
	AudioMidiTimerCommon_the->refCount++;
	return AudioMidiTimerCommon_the;
}

namespace Arts {

class AudioMidiTimer_impl : public AudioMidiTimer_skel {
protected:
	AudioMidiTimerCommon *timer;
public:
	AudioMidiTimer_impl()
	{
		timer = AudioMidiTimerCommon::subscribe();
	}
	~AudioMidiTimer_impl()
	{
		timer->unsubscribe();
	}
	TimeStamp time()
	{
		return timer->time();
	}
	void queueEvent(MidiPort port, const MidiEvent& event)
	{
		timer->queueEvent(port, event);
	}
};

REGISTER_IMPLEMENTATION(AudioMidiTimer_impl);
}