Remove weird/pointless Automatable::data().
[ardour.git] / libs / ardour / ardour / buffer_set.h
index 179985879466d2839f720ff878e6c8d0fdf47e5b..278496ffbc84d741252434c25308e3c5e75480f6 100644 (file)
@@ -1,16 +1,16 @@
 /*
-    Copyright (C) 2006 Paul Davis 
-    
+    Copyright (C) 2006 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 the Free
     Software Foundation; either version 2 of the License, or (at your option)
     any later version.
-    
+
     This program is distributed in the hope that it will be useful, but WITHOUT
     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
     for more details.
-    
+
     You should have received a copy of the GNU General Public License along
     with this program; if not, write to the Free Software Foundation, Inc.,
     675 Mass Ave, Cambridge, MA 02139, USA.
 #ifndef __ardour_buffer_set_h__
 #define __ardour_buffer_set_h__
 
+#ifdef WAF_BUILD
+#include "libardour-config.h"
+#endif
+
+#include <cassert>
 #include <vector>
-#include <ardour/buffer.h>
-#include <ardour/chan_count.h>
-#include <ardour/data_type.h>
-#include <ardour/port_set.h>
+#include "ardour/chan_count.h"
+#include "ardour/data_type.h"
+#include "ardour/types.h"
 
 namespace ARDOUR {
 
+class Buffer;
+class AudioBuffer;
+class MidiBuffer;
+class PortSet;
+#ifdef HAVE_SLV2
+class LV2EventBuffer;
+#endif
 
 /** A set of buffers of various types.
  *
@@ -44,63 +55,117 @@ namespace ARDOUR {
 class BufferSet
 {
 public:
-       BufferSet(const PortSet& ports);
        BufferSet();
        ~BufferSet();
 
        void clear();
-       
-       void ensure_buffers(const ChanCount& chan_count, size_t buffer_capacity);
-       void ensure_buffers(size_t num_buffers, DataType type, size_t buffer_capacity);
 
-       // FIXME: add these
-       //const ChanCount& available() const { return _count; }
-       //ChanCount&       available()       { return _count; }
+       void attach_buffers(PortSet& ports, nframes_t nframes, nframes_t offset = 0);
+
+       /* the capacity here is a size_t and has a different interpretation depending
+          on the DataType of the buffers. for audio, its a frame count. for MIDI
+          its a byte count.
+       */
+
+       void ensure_buffers(DataType type, size_t num_buffers, size_t buffer_capacity);
+       void ensure_buffers(const ChanCount& chns, size_t buffer_capacity);
+
+       const ChanCount& available() const { return _available; }
+       ChanCount&       available()       { return _available; }
 
        const ChanCount& count() const { return _count; }
        ChanCount&       count()       { return _count; }
 
-       size_t available_buffers(DataType type) const;
+       void is_silent(bool yn);
+       void silence (nframes_t nframes, nframes_t offset);
+       bool is_mirror() const { return _is_mirror; }
+
+       void set_count(const ChanCount& count) { assert(count <= _available); _count = count; }
+
        size_t buffer_capacity(DataType type) const;
 
-       Buffer& buffer(DataType type, size_t i)
-       {
-               assert(i <= _count.get(type));
-               return *_buffers[type.to_index()][i];
+       Buffer&       get(DataType type, size_t i);
+       const Buffer& get(DataType type, size_t i) const;
+
+       AudioBuffer& get_audio(size_t i) {
+               return (AudioBuffer&)get(DataType::AUDIO, i);
        }
 
-       AudioBuffer& audio_buffer(size_t i)
-       {
-               return (AudioBuffer&)buffer(DataType::AUDIO, i);
+       MidiBuffer& get_midi(size_t i) {
+               return (MidiBuffer&)get(DataType::MIDI, i);
        }
-       #if 0
-       /** See PortInsert::run for an example of usage */
-       class IndexSet {
-       public:
-               IndexSet() { reset(); }
-               
-               void reset() { _is[0] = 0; _is[1] = 0; }
 
-               size_t index(DataType type)     { return _is[type.to_index()]; }
-               void   increment(DataType type) { _is[type.to_index()] += 1; }
+#ifdef HAVE_SLV2
+       /** Get a MIDI buffer translated into an LV2 MIDI buffer for use with plugins.
+        * The index here corresponds directly to MIDI buffer numbers (i.e. the index
+        * passed to get_midi), translation back and forth will happen as needed */
+       LV2EventBuffer& get_lv2_midi(bool input, size_t i);
+
+       /** Flush modified LV2 event output buffers back to Ardour buffers */
+       void flush_lv2_midi(bool input, size_t i);
+#endif
+
+       void read_from(const BufferSet& in, nframes_t nframes);
+       void merge_from(const BufferSet& in, nframes_t nframes);
+
+       template <typename BS, typename B>
+       class iterator_base {
+       public:
+               B& operator*()  { return (B&)_set.get(_type, _index); }
+               B* operator->() { return &(B&)_set.get(_type, _index); }
+               iterator_base<BS,B>& operator++() { ++_index; return *this; } // yes, prefix only
+               bool operator==(const iterator_base<BS,B>& other) { return (_index == other._index); }
+               bool operator!=(const iterator_base<BS,B>& other) { return (_index != other._index); }
+               iterator_base<BS,B> operator=(const iterator_base<BS,B>& other) {
+                       _set = other._set; _type = other._type; _index = other._index; return *this;
+               }
 
        private:
-               int _is[2];
+               friend class BufferSet;
+
+               iterator_base(BS& list, DataType type, size_t index)
+                       : _set(list), _type(type), _index(index) {}
+
+               BS&      _set;
+               DataType _type;
+               size_t   _index;
        };
-       #endif
-       
-       const ChanCount& chan_count() const { return _count; }
-       
+
+       typedef iterator_base<BufferSet, Buffer> iterator;
+       iterator begin(DataType type) { return iterator(*this, type, 0); }
+       iterator end(DataType type)   { return iterator(*this, type, _count.get(type)); }
+
+       typedef iterator_base<const BufferSet, const Buffer> const_iterator;
+       const_iterator begin(DataType type) const { return const_iterator(*this, type, 0); }
+       const_iterator end(DataType type)   const { return const_iterator(*this, type, _count.get(type)); }
+
+       typedef iterator_base<BufferSet, AudioBuffer> audio_iterator;
+       audio_iterator audio_begin() { return audio_iterator(*this, DataType::AUDIO, 0); }
+       audio_iterator audio_end()   { return audio_iterator(*this, DataType::AUDIO, _count.n_audio()); }
+
+       typedef iterator_base<BufferSet, MidiBuffer> midi_iterator;
+       midi_iterator midi_begin() { return midi_iterator(*this, DataType::MIDI, 0); }
+       midi_iterator midi_end()   { return midi_iterator(*this, DataType::MIDI, _count.n_midi()); }
+
 private:
        typedef std::vector<Buffer*> BufferVec;
 
-       /// Vector of vectors, indexed by DataType::to_index()
+       /// Vector of vectors, indexed by DataType
        std::vector<BufferVec> _buffers;
 
+#ifdef HAVE_SLV2
+       /// LV2 MIDI buffers (for conversion to/from MIDI buffers)
+       typedef std::vector< std::pair<bool, LV2EventBuffer*> > LV2Buffers;
+       LV2Buffers _lv2_buffers;
+#endif
+
        /// Use counts (there may be more actual buffers than this)
        ChanCount _count;
 
-       /// Whether we (don't) 'own' the contained buffers (are a mirror of a PortSet)
+       /// Available counts (number of buffers actually allocated)
+       ChanCount _available;
+
+       /// False if we 'own' the contained buffers, if true we mirror a PortSet)
        bool _is_mirror;
 };