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