add slave,transport and event debugging traces
[ardour.git] / libs / ardour / ardour / port.h
index cf54c5065b38463f0f2dc90adc72e835461163f6..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
@@ -32,7 +32,7 @@
 namespace ARDOUR {
 
 class AudioEngine;
-class Buffer;  
+class Buffer;
 
 class Port : public sigc::trackable, public boost::noncopyable
 {
@@ -44,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;
@@ -90,29 +102,39 @@ 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;