fix missing negation from previous MCP commit
[ardour.git] / libs / surfaces / mackie / surface_port.h
index f41f2865bb0c5a0d23030c743c3d5c78820238a0..70b1df4580d8153472f789be9d4c863211b4660c 100644 (file)
 #ifndef surface_port_h
 #define surface_port_h
 
-#include <boost/signals2.hpp>
+#include <midi++/types.h>
 #include <glibmm/thread.h>
 
+#include "pbd/signals.h"
 #include "midi_byte_array.h"
 #include "types.h"
 
 namespace MIDI {
        class Port;
+       class Parser;
 }
 
+class MackieControlProtocol;
+
 namespace Mackie
 {
 
+class Surface;
+
 /**
        Make a relationship between a midi port and a Mackie device.
 */
-class SurfacePort
+
+class SurfacePort 
 {
 public:
-       SurfacePort( MIDI::Port & port, int number );
+       SurfacePort (Mackie::Surface&);
        virtual ~SurfacePort();
        
-       // when this is successful, active() should return true
-       virtual void open() = 0;
-       
-       // subclasses should call this before doing their own close
-       virtual void close() = 0;
-
-       /// read bytes from the port. They'll either end up in the
-       /// parser, or if that's not active they'll be returned
-       virtual MidiByteArray read();
-       
        /// an easier way to output bytes via midi
-       virtual void write( const MidiByteArray & );
-       
-       /// write a sysex message
-       void write_sysex( const MidiByteArray & mba );
-       void write_sysex( MIDI::byte msg );
-
-       /// return the correct sysex header for this port
-       virtual const MidiByteArray & sysex_hdr() const = 0;
-
-       MIDI::Port & port() { return *_port; }
-       const MIDI::Port & port() const { return *_port; }
+       int write (const MidiByteArray&);
        
-       // all control notofications are sent from here
-       boost::signals2::signal<void(SurfacePort &, Control &, const ControlState &)> control_event;
-       
-       // emitted just before the port goes into initialisation
-       // where it tries to establish that its device is connected
-       boost::signals2::signal<void()> init_event;
-       
-       // emitted when the port completes initialisation successfully
-       boost::signals2::signal<void()> active_event;
-
-       // emitted when the port goes inactive (ie a read or write failed)
-       boost::signals2::signal<void()> inactive_event;
-       
-       // the port number - master is 0(extenders are 1((,4
-       virtual int number() const { return _number; }
-       
-       // number of strips handled by this port. Usually 8.
-       virtual int strips() const = 0;
+       MIDI::Port& input_port() { return *_input_port; }
+       const MIDI::Port& input_port() const { return *_input_port; }
+       MIDI::Port& output_port() { return *_output_port; }
+       const MIDI::Port& output_port() const { return *_output_port; }
 
-       virtual bool active() const { return _active; }
-       virtual void active( bool yn ) { _active = yn; }
-       
 protected:
-       /// Only for use by DummyPort
-       SurfacePort();
-       
-private:
-       MIDI::Port * _port;
-       int _number;
-       bool _active;
 
-       Glib::RecMutex _rwlock;
+private:
+       Mackie::Surface* _surface;
+       MIDI::Port*  _input_port;
+       MIDI::Port*  _output_port;
 };     
 
-std::ostream & operator << ( std::ostream & , const SurfacePort & port );
+std::ostream& operator <<  (std::ostream& , const SurfacePort& port);
 
 }