add slave,transport and event debugging traces
[ardour.git] / libs / ardour / ardour / port.h
index c63faa162d8bd78568d6945ccda82dc027ddaa5a..2597fa9601117c640968c16fc63436bd33d74bd3 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2009 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
@@ -24,6 +24,7 @@
 #include <string>
 #include <vector>
 #include <jack/jack.h>
+#include <boost/utility.hpp>
 #include <sigc++/trackable.h>
 #include "ardour/data_type.h"
 #include "ardour/types.h"
@@ -31,9 +32,9 @@
 namespace ARDOUR {
 
 class AudioEngine;
-class Buffer;  
+class Buffer;
 
-class Port : public sigc::trackable
+class Port : public sigc::trackable, public boost::noncopyable
 {
 public:
        enum Flags {
@@ -43,6 +44,18 @@ public:
 
        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;
+       }
+
        /** @return Port short name */
        std::string name () const {
                return _name;
@@ -89,34 +102,44 @@ public:
 
        virtual void reset ();
 
+       /** @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, nframes_t) = 0;
-       virtual void cycle_end (nframes_t, nframes_t) = 0;
-       virtual Buffer& get_buffer (nframes_t, nframes_t) = 0;
-       virtual void flush_buffers (nframes_t, nframes_t) {}
+       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, nframes64_t /*time*/, nframes_t offset = 0) {
+               assert(offset < nframes);
+       }
+       virtual void transport_stopped () {}
 
        static void set_engine (AudioEngine *);
 
        sigc::signal<void, bool> MonitorInputChanged;
 
 protected:
-       
+
        Port (std::string const &, DataType, Flags);
 
        jack_port_t* _jack_port; ///< JACK port
 
+       static nframes_t _port_offset;
+       static nframes_t _buffer_size;
+
        static AudioEngine* _engine; ///< the AudioEngine
 
 private:
        friend class AudioEngine;
 
        void recompute_total_latency () const;
-       
+
        /* XXX */
        bool _last_monitor;
 
-       std::string _name; ///< port short name
-       Flags _flags; ///< flags
+       std::string _name;  ///< port short name
+       Flags       _flags; ///< flags
 
        /** ports that we are connected to, kept so that we can
            reconnect to JACK when required */
@@ -125,4 +148,4 @@ private:
 
 }
 
-#endif
+#endif /* __ardour_port_h__ */