summaryrefslogtreecommitdiff
path: root/libs/midi++2/midifactory.cc
blob: f8c8eb1a2095166eeb2f549f43ca814bd1d738e6 (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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/*
    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 <cassert>
#include <stdint.h>

#include "pbd/error.h"
#include "pbd/convert.h"

#include "midi++/types.h"
#include "midi++/factory.h"
#include "midi++/fifomidi.h"

#ifdef WITH_JACK_MIDI
#include "midi++/jack.h"

std::string MIDI::JACK_MidiPort::typestring = "jack";
#endif // WITH_JACK_MIDI

std::string MIDI::FIFO_MidiPort::typestring = "fifo";

#ifdef WITH_ALSA
#include "midi++/alsa_sequencer.h"
#include "midi++/alsa_rawmidi.h"

std::string MIDI::ALSA_SequencerMidiPort::typestring = "alsa/sequencer";
std::string MIDI::ALSA_RawMidiPort::typestring = "alsa/raw";

#endif // WITH_ALSA

#ifdef WITH_COREMIDI
#include "midi++/coremidi_midiport.h"

std::string MIDI::CoreMidi_MidiPort::typestring = "coremidi";

#endif // WITH_COREMIDI

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

// FIXME: void* data pointer, filthy
Port *
PortFactory::create_port (const XMLNode& node, void* data)

{
	Port::Descriptor desc (node);
	Port *port;
	
	switch (desc.type) {
#ifdef WITH_JACK_MIDI
	case Port::JACK_Midi:
		assert(data != NULL);
		port = new JACK_MidiPort (node, (jack_client_t*) data);
		break;
#endif // WITH_JACK_MIDI
	
#ifdef WITH_ALSA
	case Port::ALSA_RawMidi:
		port = new ALSA_RawMidiPort (node);
		break;

	case Port::ALSA_Sequencer:
		port = new ALSA_SequencerMidiPort (node);
		break;
#endif // WITH_ALSA

#if WITH_COREMIDI
	case Port::CoreMidi_MidiPort:
		port = new CoreMidi_MidiPort (node);
		break;
#endif // WITH_COREMIDI

	case Port::FIFO:
		port = new FIFO_MidiPort (node);
		break;

	default:
		return 0;
	}

	return port;
}

bool 
PortFactory::ignore_duplicate_devices (Port::Type type)
{
	bool ret = false;

	switch (type) {
#ifdef WITH_ALSA
	case Port::ALSA_Sequencer:
		ret = true;
		break;
#endif // WITH_ALSA

#if WITH_COREMIDI
	case Port::CoreMidi_MidiPort:
		ret = true;
		break;
#endif // WITH_COREMIDI

	default:
		break;
	}

	return ret;
}

int
PortFactory::get_known_ports (vector<PortSet>& ports)
{
	int n = 0;
#ifdef WITH_ALSA
	n += ALSA_SequencerMidiPort::discover (ports);
#endif // WITH_ALSA

#if WITH_COREMIDI
	n += CoreMidi_MidiPort::discover (ports);
#endif // WITH_COREMIDI
	
	return n;
}

std::string
PortFactory::default_port_type ()
{
#ifdef WITH_JACK_MIDI
	return "jack";
#endif

#ifdef WITH_ALSA
	return "alsa/sequencer";
#endif

#ifdef WITH_COREMIDI
	return "coremidi";
#endif // WITH_COREMIDI
	
	PBD::fatal << "programming error: no default port type defined in midifactory.cc" << endmsg;
	/*NOTREACHED*/
	return "";
}

Port::Type
PortFactory::string_to_type (const string& xtype)
{
	if (0){ 
#ifdef WITH_ALSA
	} else if (strings_equal_ignore_case (xtype, ALSA_RawMidiPort::typestring)) {
		return Port::ALSA_RawMidi;
	} else if (strings_equal_ignore_case (xtype, ALSA_SequencerMidiPort::typestring)) {
		return Port::ALSA_Sequencer;
#endif 
#ifdef WITH_COREMIDI
	} else if (strings_equal_ignore_case (xtype, CoreMidi_MidiPort::typestring)) {
		return Port::CoreMidi_MidiPort;
#endif
	} else if (strings_equal_ignore_case (xtype, FIFO_MidiPort::typestring)) {
		return Port::FIFO;
#ifdef WITH_JACK_MIDI
	} else if (strings_equal_ignore_case (xtype, JACK_MidiPort::typestring)) {
		return Port::JACK_Midi;
#endif
	}

	return Port::Unknown;
}

string
PortFactory::mode_to_string (int mode)
{
	if (mode == O_RDONLY) {
		return "input";
	} else if (mode == O_WRONLY) {
		return "output";
	} 

	return "duplex";
}

int
PortFactory::string_to_mode (const string& str)
{
	if (strings_equal_ignore_case (str, "output") || strings_equal_ignore_case (str, "out")) {
		return O_WRONLY;
	} else if (strings_equal_ignore_case (str, "input") || strings_equal_ignore_case (str, "in")) {
		return O_RDONLY;
	}

	return O_RDWR;
}