David Robillard
e0aaed6d65
All #include statements that include a header that is a part of a library bundled with ardour MUST use quotes, not angle brackets. Do this: #include "ardour/types.h" NOT this: #include <ardour/types.h> Rationale: This is best practice in general, to ensure we include the local version and not the system version. That quotes mean "local" (in some sense) and angle brackets mean "system" (in some sense) is a ubiquitous convention and IIRC right in the C spec somewhere. More pragmatically, this is required by (my) waf (stuff) for dependencies to work correctly. That is: !!! FAILURE TO DO THIS CAN RESULT IN BROKEN BUILDS !!! Failure to comply is punishable by death by torture. :) P.S. It's not that dramatic in all cases, but this (in combination with some GCC flags specific to the include type) is the best way I have found to be absolutely 100% positive the local ones are being used (and we definitely want to be absolutely 100% positive on that one). git-svn-id: svn://localhost/ardour2/branches/3.0@4655 d708f5d6-7413-0410-9779-e7cbd77b26cf
326 lines
6.5 KiB
C++
326 lines
6.5 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 <fcntl.h>
|
|
|
|
#include <glib.h>
|
|
|
|
#include "pbd/error.h"
|
|
|
|
#include "midi++/types.h"
|
|
#include "midi++/manager.h"
|
|
#include "midi++/factory.h"
|
|
#include "midi++/channel.h"
|
|
|
|
using namespace std;
|
|
using namespace MIDI;
|
|
using namespace PBD;
|
|
|
|
/* XXX check for strdup leaks */
|
|
|
|
Manager *Manager::theManager = 0;
|
|
|
|
Manager::Manager ()
|
|
{
|
|
inputPort = 0;
|
|
outputPort = 0;
|
|
inputChannelNumber = 0;
|
|
outputChannelNumber = 0;
|
|
api_data = 0;
|
|
}
|
|
|
|
Manager::~Manager ()
|
|
{
|
|
PortMap::iterator i;
|
|
|
|
for (i = ports_by_device.begin(); i != ports_by_device.end(); i++) {
|
|
delete (*i).second;
|
|
}
|
|
|
|
ports_by_device.erase (ports_by_device.begin(), ports_by_device.end());
|
|
ports_by_tag.erase (ports_by_tag.begin(), ports_by_tag.end());
|
|
|
|
if (theManager == this) {
|
|
theManager = 0;
|
|
}
|
|
}
|
|
|
|
Port *
|
|
Manager::add_port (const XMLNode& node)
|
|
{
|
|
Port::Descriptor desc (node);
|
|
PortFactory factory;
|
|
Port *port;
|
|
PortMap::iterator existing;
|
|
pair<string, Port *> newpair;
|
|
|
|
/* do not allow multiple ports with the same tag. if attempted, just return the existing
|
|
port with the same tag. XXX this is really caused by the mess of setup_midi() being
|
|
called twice in Ardour, once in the global init() function and once after the user RC file
|
|
has been loaded (there may be extra ports in it).
|
|
*/
|
|
|
|
if ((existing = ports_by_tag.find (desc.tag)) != ports_by_tag.end()) {
|
|
|
|
port = (*existing).second;
|
|
|
|
if (port->mode() == desc.mode) {
|
|
|
|
/* Same mode - reuse the port, and just
|
|
create a new tag entry.
|
|
*/
|
|
|
|
newpair.first = desc.tag;
|
|
newpair.second = port;
|
|
|
|
ports_by_tag.insert (newpair);
|
|
return port;
|
|
}
|
|
|
|
/* If the existing is duplex, and this request
|
|
is not, then fail, because most drivers won't
|
|
allow opening twice with duplex and non-duplex
|
|
operation.
|
|
*/
|
|
|
|
if ((desc.mode == O_RDWR && port->mode() != O_RDWR) ||
|
|
(desc.mode != O_RDWR && port->mode() == O_RDWR)) {
|
|
error << "MIDIManager: port tagged \""
|
|
<< desc.tag
|
|
<< "\" cannot be opened duplex and non-duplex"
|
|
<< endmsg;
|
|
return 0;
|
|
}
|
|
|
|
/* modes must be different or complementary */
|
|
}
|
|
|
|
if (!PortFactory::ignore_duplicate_devices (desc.type)) {
|
|
|
|
if ((existing = ports_by_device.find (desc.device)) != ports_by_device.end()) {
|
|
|
|
port = (*existing).second;
|
|
|
|
if (port->mode() == desc.mode) {
|
|
|
|
/* Same mode - reuse the port, and just
|
|
create a new tag entry.
|
|
*/
|
|
|
|
newpair.first = desc.tag;
|
|
newpair.second = port;
|
|
|
|
ports_by_tag.insert (newpair);
|
|
return port;
|
|
}
|
|
|
|
/* If the existing is duplex, and this request
|
|
is not, then fail, because most drivers won't
|
|
allow opening twice with duplex and non-duplex
|
|
operation.
|
|
*/
|
|
|
|
if ((desc.mode == O_RDWR && port->mode() != O_RDWR) ||
|
|
(desc.mode != O_RDWR && port->mode() == O_RDWR)) {
|
|
error << "MIDIManager: port tagged \""
|
|
<< desc.tag
|
|
<< "\" cannot be opened duplex and non-duplex"
|
|
<< endmsg;
|
|
return 0;
|
|
}
|
|
|
|
/* modes must be different or complementary */
|
|
}
|
|
}
|
|
|
|
port = factory.create_port (node, api_data);
|
|
|
|
if (port == 0) {
|
|
return 0;
|
|
}
|
|
|
|
if (!port->ok()) {
|
|
delete port;
|
|
return 0;
|
|
}
|
|
|
|
newpair.first = port->name();
|
|
newpair.second = port;
|
|
ports_by_tag.insert (newpair);
|
|
|
|
newpair.first = port->device();
|
|
newpair.second = port;
|
|
ports_by_device.insert (newpair);
|
|
|
|
/* first port added becomes the default input
|
|
port.
|
|
*/
|
|
|
|
if (inputPort == 0) {
|
|
inputPort = port;
|
|
}
|
|
|
|
if (outputPort == 0) {
|
|
outputPort = port;
|
|
}
|
|
|
|
return port;
|
|
}
|
|
|
|
int
|
|
Manager::remove_port (Port* port)
|
|
{
|
|
PortMap::iterator res;
|
|
|
|
for (res = ports_by_device.begin(); res != ports_by_device.end(); ) {
|
|
PortMap::iterator tmp;
|
|
tmp = res;
|
|
++tmp;
|
|
if (res->second == port) {
|
|
ports_by_device.erase (res);
|
|
}
|
|
res = tmp;
|
|
}
|
|
|
|
|
|
for (res = ports_by_tag.begin(); res != ports_by_tag.end(); ) {
|
|
PortMap::iterator tmp;
|
|
tmp = res;
|
|
++tmp;
|
|
if (res->second == port) {
|
|
ports_by_tag.erase (res);
|
|
}
|
|
res = tmp;
|
|
}
|
|
|
|
delete port;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
Manager::set_input_port (string tag)
|
|
{
|
|
PortMap::iterator res;
|
|
bool found = false;
|
|
|
|
for (res = ports_by_tag.begin(); res != ports_by_tag.end(); res++) {
|
|
if (tag == (*res).first) {
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!found) {
|
|
return -1;
|
|
}
|
|
|
|
inputPort = (*res).second;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
Manager::set_output_port (string tag)
|
|
|
|
{
|
|
PortMap::iterator res;
|
|
bool found = false;
|
|
|
|
for (res = ports_by_tag.begin(); res != ports_by_tag.end(); res++) {
|
|
if (tag == (*res).first) {
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!found) {
|
|
return -1;
|
|
}
|
|
|
|
// XXX send a signal to say we're about to change output ports
|
|
|
|
if (outputPort) {
|
|
for (channel_t chan = 0; chan < 16; chan++) {
|
|
outputPort->channel (chan)->all_notes_off (0);
|
|
}
|
|
}
|
|
outputPort = (*res).second;
|
|
|
|
// XXX send a signal to say we've changed output ports
|
|
|
|
return 0;
|
|
}
|
|
|
|
Port *
|
|
Manager::port (string name)
|
|
{
|
|
PortMap::iterator res;
|
|
|
|
for (res = ports_by_tag.begin(); res != ports_by_tag.end(); res++) {
|
|
if (name == (*res).first) {
|
|
return (*res).second;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
Manager::foreach_port (int (*func)(const Port &, size_t, void *),
|
|
void *arg)
|
|
{
|
|
PortMap::const_iterator i;
|
|
int retval;
|
|
int n;
|
|
|
|
for (n = 0, i = ports_by_device.begin();
|
|
i != ports_by_device.end(); i++, n++) {
|
|
|
|
if ((retval = func (*((*i).second), n, arg)) != 0) {
|
|
return retval;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
Manager::cycle_start(nframes_t nframes)
|
|
{
|
|
for (PortMap::iterator i = ports_by_device.begin(); i != ports_by_device.end(); i++) {
|
|
(*i).second->cycle_start (nframes);
|
|
}
|
|
}
|
|
|
|
void
|
|
Manager::cycle_end()
|
|
{
|
|
for (PortMap::iterator i = ports_by_device.begin(); i != ports_by_device.end(); i++) {
|
|
(*i).second->cycle_end ();
|
|
}
|
|
}
|
|
|
|
|
|
int
|
|
Manager::get_known_ports (vector<PortSet>& ports)
|
|
{
|
|
return PortFactory::get_known_ports (ports);
|
|
}
|