merge pre- and post-fader processor boxes; start removing Placement (not finished...
[ardour.git] / libs / ardour / ardour / port.h
index 6bd607c334dc11d3b96b207216c38d5836097d81..3f86fb8fd2158e1b52cedaf5122978ed39631cbb 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
 #define __ardour_port_h__
 
 #include <set>
-#include <vector>
 #include <string>
-#include <cstring>
-#include <sigc++/signal.h>
-#include <pbd/failed_constructor.h>
-#include <pbd/destructible.h>
-#include <ardour/ardour.h>
-#include <ardour/data_type.h>
+#include <vector>
 #include <jack/jack.h>
+#include <boost/utility.hpp>
+#include <sigc++/trackable.h>
+#include "ardour/data_type.h"
+#include "ardour/types.h"
 
 namespace ARDOUR {
 
 class AudioEngine;
-class Buffer;
+class Buffer;  
 
-/** Abstract base for ports
- */
-class Port : public virtual PBD::Destructible {
-   public:
+class Port : public sigc::trackable, public boost::noncopyable
+{
+public:
        enum Flags {
                IsInput = JackPortIsInput,
                IsOutput = JackPortIsOutput,
-               IsPhysical = JackPortIsPhysical,
-               IsTerminal = JackPortIsTerminal,
-               CanMonitor = JackPortCanMonitor
        };
 
-       virtual ~Port();
+       virtual ~Port ();
+
+       static nframes_t port_offset() { return _port_offset; }
+
+       static void set_port_offset (nframes_t off) {
+               _port_offset = off;
+       }
+       static void increment_port_offset (nframes_t n) {
+               _port_offset += n;
+       }
+       static void set_buffer_size (nframes_t sz) {
+               _buffer_size = sz;
+       }
 
-       std::string name() const { 
+       /** @return Port short name */
+       std::string name () const {
                return _name;
        }
 
-       Flags flags() const {
+       int set_name (std::string const &);
+
+       /** @return flags */
+       Flags flags () const {
                return _flags;
        }
 
-       bool receives_input() const {
+       /** @return true if this Port receives input, otherwise false */
+       bool receives_input () const {
                return _flags & IsInput;
        }
 
+       /** @return true if this Port sends output, otherwise false */
        bool sends_output () const {
                return _flags & IsOutput;
        }
 
-       bool can_monitor () const {
-               return _flags & CanMonitor;
-       }
+       bool connected () const;
+       int disconnect_all ();
+       int get_connections (std::vector<std::string> &) const;
 
-       void enable_metering() {
-               _metering++;
-       }
-       
-       void disable_metering () {
-               if (_metering) { _metering--; }
-       }
+       /* connection by name */
+       bool connected_to (std::string const &) const;
+       int connect (std::string const &);
+       int disconnect (std::string const &);
 
-       virtual void cycle_start (nframes_t nframes, nframes_t offset) {}
-       virtual void cycle_end (nframes_t nframes, nframes_t offset) {}
-       virtual void flush_buffers (nframes_t nframes, nframes_t offset ) {}
-       virtual DataType type() const = 0;
-       virtual Buffer& get_buffer( nframes_t nframes, nframes_t offset ) = 0;
+       /* connection by Port* */
+       bool connected_to (Port *) const;
+       virtual int connect (Port *);
+       int disconnect (Port *);
 
-       virtual bool connected () const;
-       virtual bool connected_to (const std::string& portname) const;
-       virtual int get_connections (std::vector<std::string>&) const;
+       void ensure_monitor_input (bool);
+       bool monitoring_input () const;
+       nframes_t total_latency () const;
+       int reestablish ();
+       int reconnect ();
+       void request_monitor_input (bool);
+       void set_latency (nframes_t);
 
-       virtual int connect (Port& other);
-       virtual int disconnect (Port& other);
-       virtual int disconnect_all ();
-       
        virtual void reset ();
-       virtual int reestablish () {return 0; }
-       virtual int reconnect () { return 0; }
-
-       virtual int set_name (const std::string& str) {
-               _name = str;
-               return 0;
-       }
-
-       virtual std::string short_name() const = 0;
-       virtual bool monitoring_input () const = 0;
-       virtual void ensure_monitor_input (bool yn) = 0;
-       virtual void request_monitor_input (bool yn) = 0;
-       virtual nframes_t latency () const = 0;
-       virtual nframes_t total_latency () const = 0;
-       virtual void set_latency (nframes_t nframes) = 0;
-
-       sigc::signal<void,bool> MonitorInputChanged;
-       sigc::signal<void,bool> ClockSyncChanged;
-
-       static void set_engine (AudioEngine*);
-
-  protected:
-       friend class AudioEngine;
-
-       Port (const std::string& name, Flags flgs);
-
-       virtual void recompute_total_latency() const {}
        
-       /* engine isn't supposed to access below here */
-
-       Flags          _flags;
-       std::string    _type;
-       std::string    _name;
-       unsigned short _metering;
-       bool           _last_monitor;
-       nframes_t      _latency;
-
-       std::set<Port*> _connections;
+       /** @return the size of the raw buffer (bytes) for duration @a nframes (audio frames) */
+       virtual size_t raw_buffer_size(jack_nframes_t nframes) const = 0;
+
+       virtual DataType type () const = 0;
+       virtual void cycle_start (nframes_t) = 0;
+       virtual void cycle_end (nframes_t) = 0;
+       virtual void cycle_split () = 0;
+       virtual Buffer& get_buffer (nframes_t nframes, nframes_t offset = 0) = 0;
+       virtual void flush_buffers (nframes_t, nframes_t offset = 0) {}
+       
+       static void set_engine (AudioEngine *);
 
-       static AudioEngine* engine;
+       sigc::signal<void, bool> MonitorInputChanged;
 
-   private:
+protected:
+       
+       Port (std::string const &, DataType, Flags);
 
-        void port_going_away (Port *);
-};
+       jack_port_t* _jack_port; ///< JACK port
 
-class PortConnectableByName {
-  public:
-       PortConnectableByName() {}
-       virtual ~PortConnectableByName() {}
+       static nframes_t _port_offset;
+       static nframes_t _buffer_size;
 
-       virtual int connect (const std::string& other_name) = 0;
-       virtual int disconnect (const std::string& other_name) = 0;
-};
-class PortFacade : public virtual Port, public PortConnectableByName { 
-  public:
-       PortFacade (const std::string& name, Flags flgs) : Port (name, flgs), _ext_port (0) {}
-       ~PortFacade() {}
+       static AudioEngine* _engine; ///< the AudioEngine
 
-       void reset ();
-       int reestablish ();
-       int reconnect ();
+private:
+       friend class AudioEngine;
 
-       int connect (Port& other);
-       int disconnect (Port& other);
-       int disconnect_all ();
+       void recompute_total_latency () const;
+       
+       /* XXX */
+       bool _last_monitor;
 
-       int connect (const std::string& other_name);
-       int disconnect (const std::string& other_name);
+       std::string _name;  ///< port short name
+       Flags       _flags; ///< flags
 
-       bool connected () const;
-       bool connected_to (const std::string& portname) const;
-       int get_connections (std::vector<std::string>&) const;
-
-       std::string short_name() const;
-       int         set_name (const std::string& str);
-       bool        monitoring_input () const;
-       void        ensure_monitor_input (bool yn);
-       void        request_monitor_input (bool yn);
-       nframes_t   latency () const;
-       nframes_t   total_latency () const;
-       void        set_latency (nframes_t nframes);
-
-  protected:
-       Port* _ext_port;
+       /** ports that we are connected to, kept so that we can
+           reconnect to JACK when required */
+       std::set<std::string> _connections;
 };
 
-} // namespace ARDOUR
+}
 
 #endif /* __ardour_port_h__ */