summaryrefslogtreecommitdiff
path: root/libs/midi++2/manager.cc
blob: 3df9681dd3318eaaf3143d145d04300f1e4a7244 (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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*
    Copyright (C) 1998-99 Paul Barton-Davis 
    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.

    $Id$
*/

#include <fcntl.h>

#include <glib.h>

#include "pbd/error.h"

#include "midi++/types.h"
#include "midi++/manager.h"
#include "midi++/channel.h"
#include "midi++/port.h"
#include "midi++/jack_midi_port.h"
#include "midi++/mmc.h"

using namespace std;
using namespace MIDI;
using namespace PBD;

Manager *Manager::theManager = 0;

Manager::Manager (ARDOUR::PortEngine& eng)
	: _ports (new PortList)
{
	_mmc = new MachineControl (this, eng);
	
	_mtc_input_port = add_port (new MIDI::JackMIDIPort ("MTC in", Port::IsInput, eng));
	_mtc_output_port = add_port (new MIDI::JackMIDIPort ("MTC out", Port::IsOutput, eng));
	_midi_input_port = add_port (new MIDI::JackMIDIPort ("MIDI control in", Port::IsInput, eng));
	_midi_output_port = add_port (new MIDI::JackMIDIPort ("MIDI control out", Port::IsOutput, eng));
	_midi_clock_input_port = add_port (new MIDI::JackMIDIPort ("MIDI clock in", Port::IsInput, eng));
	_midi_clock_output_port = add_port (new MIDI::JackMIDIPort ("MIDI clock out", Port::IsOutput, eng));
}

Manager::~Manager ()
{
	delete _mmc;
	
	/* This will delete our MTC etc. ports */

	boost::shared_ptr<PortList> pr = _ports.reader ();
	for (PortList::iterator p = pr->begin(); p != pr->end(); ++p) {
		delete *p;
	}

	if (theManager == this) {
		theManager = 0;
	}
}

Port *
Manager::add_port (Port* p)
{
	{
		RCUWriter<PortList> writer (_ports);
		boost::shared_ptr<PortList> pw = writer.get_copy ();
		pw->push_back (p);
	}

	PortsChanged (); /* EMIT SIGNAL */

	return p;
}

void
Manager::remove_port (Port* p)
{
	{
		RCUWriter<PortList> writer (_ports);
		boost::shared_ptr<PortList> pw = writer.get_copy ();
		pw->remove (p);
	}

	PortsChanged (); /* EMIT SIGNAL */
}

void
Manager::cycle_start (pframes_t nframes)
{
	boost::shared_ptr<PortList> pr = _ports.reader ();
	
	for (PortList::iterator p = pr->begin(); p != pr->end(); ++p) {
		(*p)->cycle_start (nframes);
	}
}

void
Manager::cycle_end()
{
	boost::shared_ptr<PortList> pr = _ports.reader ();
	
	for (PortList::iterator p = pr->begin(); p != pr->end(); ++p) {
		(*p)->cycle_end ();
	}
}

/** Re-register ports that disappear on JACK shutdown */
void
Manager::reestablish ()
{
	boost::shared_ptr<PortList> pr = _ports.reader ();

	for (PortList::const_iterator p = pr->begin(); p != pr->end(); ++p) {
		JackMIDIPort* pp = dynamic_cast<JackMIDIPort*> (*p);
		if (pp) {
			pp->reestablish ();
		}
	}
}

/** Re-connect ports after a reestablish () */
void
Manager::reconnect ()
{
	boost::shared_ptr<PortList> pr = _ports.reader ();

	for (PortList::const_iterator p = pr->begin(); p != pr->end(); ++p) {
		JackMIDIPort* pp = dynamic_cast<JackMIDIPort*> (*p);
		if (pp) {
			pp->reconnect ();
		}
	}
}

Port*
Manager::port (string const & n)
{
	boost::shared_ptr<PortList> pr = _ports.reader ();
	
	PortList::const_iterator p = pr->begin();
	while (p != pr->end() && (*p)->name() != n) {
		++p;
	}

	if (p == pr->end()) {
		return 0;
	}

	return *p;
}

void
Manager::create (ARDOUR::PortEngine& eng)
{
	assert (theManager == 0);
	theManager = new Manager (eng);
}

void
Manager::set_port_states (list<XMLNode*> s)
{
	boost::shared_ptr<PortList> pr = _ports.reader ();
	
	for (list<XMLNode*>::iterator i = s.begin(); i != s.end(); ++i) {
		for (PortList::const_iterator j = pr->begin(); j != pr->end(); ++j) {
			(*j)->set_state (**i);
		}
	}
}

void
Manager::destroy ()
{
	delete theManager;
	theManager = 0;
}