new transport slave/master implementation, libs/ edition
[ardour.git] / libs / ardour / ardour / midiport_manager.h
1 /*
2     Copyright (C) 1998 Paul Barton-Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __midiport_manager_h__
21 #define __midiport_manager_h__
22
23 #include <list>
24
25 #include <string>
26
27 #include "pbd/rcu.h"
28
29 #include "midi++/types.h"
30 #include "midi++/port.h"
31
32 #include "ardour/libardour_visibility.h"
33 #include "ardour/midi_port.h"
34 #include "ardour/types.h"
35
36 namespace ARDOUR {
37
38 class MidiPort;
39 class Port;
40
41 class LIBARDOUR_API MidiPortManager {
42   public:
43     MidiPortManager();
44     virtual ~MidiPortManager ();
45
46     /* Ports used for control. These are read/written to outside of the
47      * process callback (asynchronously with respect to when data
48      * actually arrives).
49      *
50      * More detail: we do actually read/write data for these ports
51      * inside the process callback, but incoming data is only parsed
52      * and outgoing data is only generated *outside* the process
53      * callback.
54      */
55
56     boost::shared_ptr<ARDOUR::Port> midi_input_port () const { return _midi_in; }
57     boost::shared_ptr<ARDOUR::Port> midi_output_port () const { return _midi_out; }
58
59     boost::shared_ptr<ARDOUR::Port> mmc_input_port() const { return boost::dynamic_pointer_cast<MidiPort>(_mmc_in); }
60     boost::shared_ptr<ARDOUR::Port> mmc_output_port() const { return boost::dynamic_pointer_cast<MidiPort>(_mmc_out); }
61
62     boost::shared_ptr<ARDOUR::Port> scene_input_port() const { return boost::dynamic_pointer_cast<MidiPort>(_scene_in); }
63     boost::shared_ptr<ARDOUR::Port> scene_output_port() const { return boost::dynamic_pointer_cast<MidiPort>(_scene_out); }
64
65     /* Ports used to send synchronization. These have their output handled inside the
66      * process callback.
67      */
68
69     boost::shared_ptr<MidiPort> mtc_output_port() const { return _mtc_output_port; }
70     boost::shared_ptr<MidiPort> midi_clock_output_port() const { return _midi_clock_output_port; }
71
72     void set_midi_port_states (const XMLNodeList&);
73     std::list<XMLNode*> get_midi_port_states () const;
74
75     PBD::Signal0<void> PortsChanged;
76
77   protected:
78     /* asynchronously handled ports: ARDOUR::AsyncMIDIPort */
79     boost::shared_ptr<Port> _midi_in;
80     boost::shared_ptr<Port> _midi_out;
81     boost::shared_ptr<Port> _mmc_in;
82     boost::shared_ptr<Port> _mmc_out;
83     boost::shared_ptr<Port> _scene_in;
84     boost::shared_ptr<Port> _scene_out;
85
86     /* synchronously handled ports: ARDOUR::MidiPort */
87     boost::shared_ptr<MidiPort> _mtc_output_port;
88     boost::shared_ptr<MidiPort> _midi_clock_output_port;
89
90     void create_ports ();
91
92 };
93
94 } // namespace MIDI
95
96 #endif  // __midi_port_manager_h__