fix conflicts after merge with master
[ardour.git] / libs / ardour / ardour / port.h
index 93ed2777e40a28402100345330929ddb089b6cf5..06175de6732a69418676705b0d9b79d4d63da8f7 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2002 Paul Davis 
+    Copyright (C) 2009 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #ifndef __ardour_port_h__
 #define __ardour_port_h__
 
-#include <sigc++/signal.h>
-#include <pbd/failed_constructor.h>
-#include <ardour/ardour.h>
+#include "libardour-config.h"
+
+#include <set>
+#include <string>
+#include <vector>
 #include <jack/jack.h>
+#include <boost/utility.hpp>
+#include "pbd/signals.h"
+
+#include "ardour/data_type.h"
+#include "ardour/port_engine.h"
+#include "ardour/types.h"
 
 namespace ARDOUR {
 
 class AudioEngine;
+class Buffer;
 
-class Port : public sigc::trackable {
-   public:
-       virtual ~Port() { 
-               free (port);
-       }
+class Port : public boost::noncopyable
+{
+public:
+       virtual ~Port ();
 
-       Sample *get_buffer (jack_nframes_t nframes) {
-               if (_flags & JackPortIsOutput) {
-                       return _buffer;
-               } else {
-                       return (Sample *) jack_port_get_buffer (port, nframes);
-               }
+       static void set_connecting_blocked( bool yn ) {
+               _connecting_blocked = yn;
        }
-
-       void reset_buffer () {
-               if (_flags & JackPortIsOutput) {
-                       _buffer = (Sample *) jack_port_get_buffer (port, 0);
-               } else {
-                       _buffer = 0; /* catch illegal attempts to use it */
-               }
-               silent = false;
+       static bool connecting_blocked() {
+               return _connecting_blocked;
        }
 
-       std::string name() { 
+       /** @return Port short name */
+       std::string name () const {
                return _name;
        }
 
-       std::string short_name() { 
-               return jack_port_short_name (port);
-       }
-       
-       int set_name (std::string str);
+       int set_name (std::string const &);
 
-       JackPortFlags flags() const {
+       /** @return flags */
+        PortFlags flags () const {
                return _flags;
        }
 
-       bool is_mine (jack_client_t *client) { 
-               return jack_port_is_mine (client, port);
+       /** @return true if this Port receives input, otherwise false */
+       bool receives_input () const {
+               return _flags & IsInput;
        }
 
-       const char* type() const {
-               return _type.c_str();
+       /** @return true if this Port sends output, otherwise false */
+       bool sends_output () const {
+               return _flags & IsOutput;
        }
 
-       int connected () const {
-               return jack_port_connected (port);
-       }
-       
-       bool connected_to (const std::string& portname) const {
-               return jack_port_connected_to (port, portname.c_str());
-       }
+       bool connected () const;
+       int disconnect_all ();
+       int get_connections (std::vector<std::string> &) const;
 
-       const char ** get_connections () const {
-               return jack_port_get_connections (port);
-       }
+       /* connection by name */
+       bool connected_to (std::string const &) const;
+       int connect (std::string const &);
+       int disconnect (std::string const &);
 
-       void reset_overs () {
-               _short_overs = 0;
-               _long_overs = 0;
-               overlen = 0;
-       }
+       /* connection by Port* */
+       bool connected_to (Port *) const;
+       virtual int connect (Port *);
+       int disconnect (Port *);
 
-       void reset_peak_meter () {
-               _peak = 0;
-       }
-       
-       void reset_meters () {
-               reset_peak_meter ();
-               reset_overs ();
-       }
+       void request_input_monitoring (bool);
+       void ensure_input_monitoring (bool);
+       bool monitoring_input () const;
+       int reestablish ();
+       int reconnect ();
 
-       void enable_metering() {
-               metering++;
-       }
-       
-       void disable_metering () {
-               if (metering) { metering--; }
-       }
+       bool last_monitor() const { return _last_monitor; }
+       void set_last_monitor (bool yn) { _last_monitor = yn; }
 
-       float    peak_db() const { return _peak_db; }
-       jack_default_audio_sample_t peak()    const { return _peak; }
+        PortEngine::PortHandle port_handle() { return _port_handle; }
 
-       uint32_t short_overs () const { return _short_overs; }
-       uint32_t long_overs () const { return _long_overs; }
-       
-       static void set_short_over_length (jack_nframes_t);
-       static void set_long_over_length (jack_nframes_t);
+        void get_connected_latency_range (LatencyRange& range, bool playback) const;
 
-       bool receives_input() const {
-               return _flags & JackPortIsInput;
-       }
+       void set_private_latency_range (LatencyRange& range, bool playback);
+       const LatencyRange&  private_latency_range (bool playback) const;
 
-       bool sends_output () const {
-               return _flags & JackPortIsOutput;
-       }
-       
-       bool monitoring_input () const {
-               return jack_port_monitoring_input (port);
-       }
+       void set_public_latency_range (LatencyRange& range, bool playback) const;
+       LatencyRange public_latency_range (bool playback) const;
+
+       virtual void reset ();
+
+       virtual DataType type () const = 0;
+       virtual void cycle_start (pframes_t);
+       virtual void cycle_end (pframes_t) = 0;
+       virtual void cycle_split () = 0;
+       virtual Buffer& get_buffer (pframes_t nframes) = 0;
+       virtual void flush_buffers (pframes_t /*nframes*/) {}
+       virtual void transport_stopped () {}
+       virtual void realtime_locate () {}
+
+       bool physically_connected () const;
+
+       PBD::Signal1<void,bool> MonitorInputChanged;
+       static PBD::Signal2<void,boost::shared_ptr<Port>,boost::shared_ptr<Port> > PostDisconnect;
+       static PBD::Signal0<void> PortDrop;
 
-       bool can_monitor () const {
-               return _flags & JackPortCanMonitor;
+       static void set_cycle_framecnt (pframes_t n) {
+               _cycle_nframes = n;
        }
-       
-       void ensure_monitor_input (bool yn) {
-               jack_port_request_monitor (port, yn);
+       static framecnt_t port_offset() { return _global_port_buffer_offset; }
+       static void set_global_port_buffer_offset (pframes_t off) {
+               _global_port_buffer_offset = off;
        }
-       
-       void request_monitor_input (bool yn) {
-               jack_port_request_monitor (port, yn);
+       static void increment_global_port_buffer_offset (pframes_t n) {
+               _global_port_buffer_offset += n;
        }
 
-       jack_nframes_t latency () const {
-               return jack_port_get_latency (port);
-       }
+       virtual void increment_port_buffer_offset (pframes_t n);
 
-       void set_latency (jack_nframes_t nframes) {
-               jack_port_set_latency (port, nframes);
-       }
+protected:
 
-       sigc::signal<void,bool> MonitorInputChanged;
-       sigc::signal<void,bool> ClockSyncChanged;
-
-       bool is_silent() const { return silent; }
-
-       void silence (jack_nframes_t nframes, jack_nframes_t offset) {
-               /* assumes that the port is an output port */
-
-               if (!silent) {
-                       memset (_buffer + offset, 0, sizeof (Sample) * nframes);
-                       if (offset == 0) {
-                               /* XXX this isn't really true, but i am not sure
-                                  how to set this correctly. we really just
-                                  want to set it true when the entire port
-                                  buffer has been overrwritten.
-                               */
-                               silent = true;
-                       }
-               }
-       }
-       
-       void mark_silence (bool yn) {
-               silent = yn;
-       }
+       Port (std::string const &, DataType, PortFlags);
 
-  private:
-       friend class AudioEngine;
+        PortEngine::PortHandle _port_handle;
 
-       Port (jack_port_t *port);
-       void reset ();
-       
-       /* engine isn't supposed to below here */
+       static bool       _connecting_blocked;
+       static pframes_t  _global_port_buffer_offset;   /* access only from process() tree */
+       static pframes_t  _cycle_nframes; /* access only from process() tree */
 
-       Sample       *_buffer;
+       framecnt_t _port_buffer_offset; /* access only from process() tree */
 
-       /* cache these 3 from JACK so that we can
-          access them for reconnecting.
+       LatencyRange _private_playback_latency;
+       LatencyRange _private_capture_latency;
+
+private:
+       std::string _name;  ///< port short name
+       PortFlags       _flags; ///< flags
+       bool        _last_monitor;
+
+       /** ports that we are connected to, kept so that we can
+           reconnect to the backend when required
        */
+       std::set<std::string> _connections;
 
-       JackPortFlags _flags;
-       std::string   _type;
-       std::string   _name;
-
-       bool           last_monitor : 1;
-       bool           silent : 1;
-       jack_port_t   *port;
-       jack_nframes_t      overlen;
-       jack_default_audio_sample_t      _peak;
-       float         _peak_db;
-       uint32_t _short_overs;
-       uint32_t _long_overs;
-       unsigned short  metering;
-       
-       static jack_nframes_t long_over_length;
-       static jack_nframes_t short_over_length;
+       void drop ();
+       PBD::ScopedConnection drop_connection;
 };
-} // namespace ARDOUR
+
+}
 
 #endif /* __ardour_port_h__ */