2008-06-02 17:41:35 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 1998 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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __midi_manager_h__
|
|
|
|
#define __midi_manager_h__
|
|
|
|
|
2009-11-13 14:50:39 -05:00
|
|
|
#include <list>
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "midi++/types.h"
|
|
|
|
#include "midi++/port.h"
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
namespace MIDI {
|
|
|
|
|
2010-07-08 18:55:20 -04:00
|
|
|
class MachineControl;
|
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
class Manager {
|
|
|
|
public:
|
|
|
|
~Manager ();
|
|
|
|
|
|
|
|
/** Signal the start of an audio cycle.
|
|
|
|
* This MUST be called before any reading/writing for this cycle.
|
|
|
|
* Realtime safe.
|
|
|
|
*/
|
2010-12-03 17:26:29 -05:00
|
|
|
void cycle_start (pframes_t nframes);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
/** Signal the end of an audio cycle.
|
|
|
|
* This signifies that the cycle began with @ref cycle_start has ended.
|
|
|
|
* This MUST be called at the end of each cycle.
|
|
|
|
* Realtime safe.
|
|
|
|
*/
|
2010-12-03 17:26:29 -05:00
|
|
|
void cycle_end ();
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2010-07-08 18:55:20 -04:00
|
|
|
MachineControl* mmc () const { return _mmc; }
|
|
|
|
Port *mtc_input_port() const { return _mtc_input_port; }
|
|
|
|
Port *mtc_output_port() const { return _mtc_output_port; }
|
|
|
|
Port *midi_input_port() const { return _midi_input_port; }
|
|
|
|
Port *midi_output_port() const { return _midi_output_port; }
|
|
|
|
Port *midi_clock_input_port() const { return _midi_clock_input_port; }
|
|
|
|
Port *midi_clock_output_port() const { return _midi_clock_output_port; }
|
|
|
|
|
2010-07-06 20:40:58 -04:00
|
|
|
Port* add_port (Port *);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2010-07-06 20:40:58 -04:00
|
|
|
Port* port (std::string const &);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2010-07-08 18:55:20 -04:00
|
|
|
void set_port_states (std::list<XMLNode*>);
|
|
|
|
|
2009-11-13 14:50:39 -05:00
|
|
|
typedef std::list<Port *> PortList;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2009-11-13 14:50:39 -05:00
|
|
|
const PortList& get_midi_ports() const { return _ports; }
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2010-07-08 18:55:20 -04:00
|
|
|
static void create (jack_client_t* jack);
|
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
static Manager *instance () {
|
|
|
|
return theManager;
|
|
|
|
}
|
|
|
|
|
2010-07-08 18:55:20 -04:00
|
|
|
void reestablish (jack_client_t *);
|
2010-07-05 11:41:05 -04:00
|
|
|
void reconnect ();
|
|
|
|
|
2009-12-19 15:26:31 -05:00
|
|
|
PBD::Signal0<void> PortsChanged;
|
2009-12-08 22:05:14 -05:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
private:
|
|
|
|
/* This is a SINGLETON pattern */
|
|
|
|
|
2010-07-08 18:55:20 -04:00
|
|
|
Manager (jack_client_t *);
|
2008-06-02 17:41:35 -04:00
|
|
|
static Manager *theManager;
|
2010-07-08 18:55:20 -04:00
|
|
|
|
|
|
|
MIDI::MachineControl* _mmc;
|
|
|
|
MIDI::Port* _mtc_input_port;
|
|
|
|
MIDI::Port* _mtc_output_port;
|
|
|
|
MIDI::Port* _midi_input_port;
|
|
|
|
MIDI::Port* _midi_output_port;
|
|
|
|
MIDI::Port* _midi_clock_input_port;
|
|
|
|
MIDI::Port* _midi_clock_output_port;
|
2010-07-06 20:40:58 -04:00
|
|
|
|
2009-11-13 14:50:39 -05:00
|
|
|
std::list<Port*> _ports;
|
2008-06-02 17:41:35 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace MIDI
|
|
|
|
|
|
|
|
#endif // __midi_manager_h__
|