merge with master
[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/types.h"
34
35 namespace ARDOUR {
36
37 class MidiPort;
38 class Port;
39
40 class LIBARDOUR_API MidiPortManager {
41   public:
42     MidiPortManager();
43     virtual ~MidiPortManager ();
44         
45     /* Ports used for control. These are read/written to outside of the
46      * process callback (asynchronously with respect to when data
47      * actually arrives). 
48      *
49      * More detail: we do actually read/write data for these ports
50      * inside the process callback, but incoming data is only parsed
51      * and outgoing data is only generated *outside* the process
52      * callback. 
53      */
54
55     MIDI::Port* midi_input_port () const { return _midi_input_port; }
56     MIDI::Port* midi_output_port () const { return _midi_output_port; }
57     MIDI::Port* mmc_input_port () const { return _mmc_input_port; }
58     MIDI::Port* mmc_output_port () const { return _mmc_output_port; }
59     
60     /* Ports used for synchronization. These have their I/O handled inside the
61      * process callback.
62      */
63
64     boost::shared_ptr<MidiPort> mtc_input_port() const { return _mtc_input_port; }
65     boost::shared_ptr<MidiPort> mtc_output_port() const { return _mtc_output_port; }
66     boost::shared_ptr<MidiPort> midi_clock_input_port() const { return _midi_clock_input_port; }
67     boost::shared_ptr<MidiPort> midi_clock_output_port() const { return _midi_clock_output_port; }
68     
69     void set_midi_port_states (const XMLNodeList&);
70     std::list<XMLNode*> get_midi_port_states () const;
71
72     PBD::Signal0<void> PortsChanged;
73
74   protected:
75     /* asynchronously handled ports: MIDI::Port */
76     MIDI::Port* _midi_input_port;
77     MIDI::Port* _midi_output_port;
78     MIDI::Port* _mmc_input_port;
79     MIDI::Port* _mmc_output_port;
80     /* these point to the same objects as the 4 members above,
81        but cast to their ARDOUR::Port base class
82     */
83     boost::shared_ptr<Port> _midi_in;
84     boost::shared_ptr<Port> _midi_out;
85     boost::shared_ptr<Port> _mmc_in;
86     boost::shared_ptr<Port> _mmc_out;
87
88     /* synchronously handled ports: ARDOUR::MidiPort */
89     boost::shared_ptr<MidiPort> _mtc_input_port;
90     boost::shared_ptr<MidiPort> _mtc_output_port;
91     boost::shared_ptr<MidiPort> _midi_clock_input_port;
92     boost::shared_ptr<MidiPort> _midi_clock_output_port;
93
94     void create_ports ();
95
96 };
97
98 } // namespace MIDI
99
100 #endif  // __midi_port_manager_h__