751ee848d7499a2bb321c2725b5104951f97f2f1
[ardour.git] / libs / surfaces / mackie / surface_port.h
1 /*
2         Copyright (C) 2006,2007 John Anderson
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 #ifndef surface_port_h
19 #define surface_port_h
20
21 #include <midi++/types.h>
22
23 #include "pbd/signals.h"
24
25
26 #include "midi_byte_array.h"
27 #include "types.h"
28
29 namespace MIDI {
30         class Parser;
31         class Port;
32 }
33
34 class MackieControlProtocol;
35
36 namespace ARDOUR {
37         class AsyncMIDIPort;
38         class Port;
39 }
40
41 namespace Mackie
42 {
43
44 class Surface;
45
46 /**
47         Make a relationship between a midi port and a Mackie device.
48 */
49
50 class SurfacePort 
51 {
52 public:
53         SurfacePort (Mackie::Surface&);
54         virtual ~SurfacePort();
55         
56         /// an easier way to output bytes via midi
57         int write (const MidiByteArray&);
58         
59     MIDI::Port& input_port() const { return *_input_port; }
60     MIDI::Port& output_port() const { return *_output_port; }
61
62 protected:
63
64 private:
65     Mackie::Surface*   _surface;
66     MIDI::Port* _input_port;
67     MIDI::Port* _output_port;
68     boost::shared_ptr<ARDOUR::Port> _async_in;
69     boost::shared_ptr<ARDOUR::Port> _async_out;
70 };      
71
72 std::ostream& operator <<  (std::ostream& , const SurfacePort& port);
73
74 }
75
76 #endif