3fdcba1859
svn+ssh://ardoursvn@subversion.ardour.org/ardour2/branches/build_fixes ........ r6293 | trutkin | 2009-12-05 08:49:37 -0500 (Sat, 05 Dec 2009) | 2 lines fix if-statement in build script ........ r6296 | trutkin | 2009-12-05 09:30:19 -0500 (Sat, 05 Dec 2009) | 5 lines rearrange GTKOSX and darwin dependencies - moved some GTKOSX include paths to generic darwin - made GTKOSX dependent on being on darwin anyways ........ r6297 | trutkin | 2009-12-05 09:35:09 -0500 (Sat, 05 Dec 2009) | 2 lines move coreaudio and audiounit handling to darwin section ........ r6298 | trutkin | 2009-12-05 09:53:40 -0500 (Sat, 05 Dec 2009) | 3 lines use True/False instead of 1/0 fix another if-statement where it should be an elif-statement ........ r6299 | trutkin | 2009-12-05 14:11:09 -0500 (Sat, 05 Dec 2009) | 10 lines fixes to get libardour building - can't cast away volatile, so copy _transport_frame before emitting it. - const_reverse_iterator::operator!=() isn't defined in this version of gcc. - removed annoying HERE WE ARE CAAudioFile.h #warning. - removed unnecessary include of sndfile.h in session.h. - we don't want to set -march=i686 on the mac, so indent this if-statement so it's only run on linux. - DEBUG_STR() fails in the NDEBUG case, so wrap its use in an #ifndef NDEBUG ........ r6300 | trutkin | 2009-12-05 15:48:29 -0500 (Sat, 05 Dec 2009) | 2 lines remove old scons-style CXXFLAGS_FOO in favor of just CXXFLAGS ........ r6301 | trutkin | 2009-12-05 16:01:10 -0500 (Sat, 05 Dec 2009) | 8 lines clean up configure flags - removed useless --aubio and --syslibs flags. The syslibs value is ignored as we don't bring our own libraries with us anymoreand we use aubio automatically if it's available - added ways to turn off fpu_optimization and NLS - fixed compiling on the mac without fpu_optimization ........ r6302 | trutkin | 2009-12-05 18:12:46 -0500 (Sat, 05 Dec 2009) | 5 lines go back to prior uselib method for COREAUDIO, AUDIOUNIT, and GTKOSX - fixed compile of CoreAudioSource - re-did inclusion of coremidi_midiport.cc to depend on COREAUDIO presence ........ r6303 | trutkin | 2009-12-05 18:59:02 -0500 (Sat, 05 Dec 2009) | 5 lines fixed compiler warnings about classes with virtual member functions, but no virtual destructor. - Changed Metering to not use foo() = 0; to indicate it shouldn't be instantiated, but private: Metering(), which is more idiomatic. ........ r6304 | trutkin | 2009-12-05 19:25:41 -0500 (Sat, 05 Dec 2009) | 2 lines TOP_MENUBAR isn't used when building ardour.menus. Removed. ........ r6305 | trutkin | 2009-12-05 19:46:11 -0500 (Sat, 05 Dec 2009) | 5 lines fix some AudioUnit compile errors - update AudioUnit to use ChanCount - fix some namespacing issues in audio_unit.h ........ r6306 | trutkin | 2009-12-05 20:08:48 -0500 (Sat, 05 Dec 2009) | 2 lines make --extra-warn useful ........ r6308 | trutkin | 2009-12-05 22:59:42 -0500 (Sat, 05 Dec 2009) | 10 lines fix compiling/linking with --coreaudio - rearrange ardour_ui.h header in editor.cc to avoid conflict - midi++ depends on OSX as well as COREAUDIO - fixed including frameworks - tweaked --extra-warn again. it's kinda redundent with --strict - improved indentation in wscript - use #ifdef HAVE_COREMIDI, not #if HAVE_COREMIDI. #if isn't interchangable with #ifdef and won't work if HAVE_COREMIDI is defined with no value. ........ git-svn-id: svn://localhost/ardour2/branches/3.0@6310 d708f5d6-7413-0410-9779-e7cbd77b26cf
219 lines
4.6 KiB
C++
219 lines
4.6 KiB
C++
/*
|
|
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
|
|
|
|
#ifdef 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
|
|
|
|
#ifdef WITH_JACK_MIDI
|
|
case Port::JACK_Midi:
|
|
ret = true;
|
|
break;
|
|
#endif // WITH_JACK_MIDI
|
|
|
|
#ifdef WITH_COREMIDI
|
|
case Port::CoreMidi_MidiPort:
|
|
ret = true;
|
|
break;
|
|
#endif // WITH_COREMIDI
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
int
|
|
#if defined (WITH_ALSA) || defined (WITH_COREMIDI)
|
|
PortFactory::get_known_ports (vector<PortSet>& ports)
|
|
#else
|
|
PortFactory::get_known_ports (vector<PortSet>&)
|
|
#endif
|
|
{
|
|
int n = 0;
|
|
#ifdef WITH_ALSA
|
|
n += ALSA_SequencerMidiPort::discover (ports);
|
|
#endif // WITH_ALSA
|
|
|
|
#ifdef 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;
|
|
}
|