rename all Evoral source from .(hpp|cpp)$ to .(h|cc)
[ardour.git] / libs / ardour / ardour / buffer_set.h
index 26d47682af6e69a511e6277445948c8f24e18147..85041b6728349bc5c9d63dd9ac5017fb00c77d80 100644 (file)
@@ -1,20 +1,23 @@
 /*
-    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.
-*/
+ * Copyright (C) 2006-2016 David Robillard <d@drobilla.net>
+ * Copyright (C) 2007-2017 Paul Davis <paul@linuxaudiosystems.com>
+ * Copyright (C) 2009-2011 Carl Hetherington <carl@carlh.net>
+ * Copyright (C) 2013-2016 Robin Gareus <robin@gareus.org>
+ *
+ * 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.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
 
 #ifndef __ardour_buffer_set_h__
 #define __ardour_buffer_set_h__
 #include <vector>
 #include "ardour/chan_count.h"
 #include "ardour/data_type.h"
+#include "ardour/libardour_visibility.h"
 #include "ardour/types.h"
 
-#if defined VST_SUPPORT || defined LXVST_SUPPORT
-#include "evoral/MIDIEvent.hpp"
+#if defined WINDOWS_VST_SUPPORT || defined LXVST_SUPPORT || defined MACVST_SUPPORT
+#include "evoral/Event.h"
 struct _VstEvents;
 typedef struct _VstEvents VstEvents;
 struct _VstMidiEvent;
@@ -61,7 +65,7 @@ class PortSet;
  * others the form of their output (eg what they did to the BufferSet).
  * Setting the use counts is realtime safe.
  */
-class BufferSet
+class LIBARDOUR_API BufferSet
 {
 public:
        BufferSet();
@@ -70,10 +74,10 @@ public:
        void clear();
 
        void attach_buffers (PortSet& ports);
-       void get_backend_port_addresses (PortSet &, framecnt_t);
+       void get_backend_port_addresses (PortSet &, samplecnt_t);
 
        /* 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
+          on the DataType of the buffers. for audio, its a sample count. for MIDI
           its a byte count.
        */
 
@@ -86,31 +90,30 @@ public:
        const ChanCount& count() const { return _count; }
        ChanCount&       count()       { return _count; }
 
-       void set_is_silent(bool yn);
-       void silence (framecnt_t nframes, framecnt_t offset);
+       void silence (samplecnt_t nframes, samplecnt_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&       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);
+               return (AudioBuffer&)get_available (DataType::AUDIO, i);
        }
        const AudioBuffer& get_audio(size_t i) const {
-               return (const AudioBuffer&)get(DataType::AUDIO, i);
+               return (const AudioBuffer&)get_available(DataType::AUDIO, i);
        }
 
        MidiBuffer& get_midi(size_t i) {
-               return (MidiBuffer&)get(DataType::MIDI, i);
+               return (MidiBuffer&)get_available(DataType::MIDI, i);
        }
        const MidiBuffer& get_midi(size_t i) const {
-               return (const MidiBuffer&)get(DataType::MIDI, i);
+               return (const MidiBuffer&)get_available(DataType::MIDI, i);
        }
 
+       Buffer&       get_available(DataType type, size_t i);
+       const Buffer& get_available(DataType type, size_t i) const;
+
 #ifdef LV2_SUPPORT
        /** Get a MIDI buffer translated into an LV2 MIDI buffer for use with
         * plugins.  The index here corresponds directly to MIDI buffer numbers
@@ -130,19 +133,19 @@ public:
        void forward_lv2_midi(LV2_Evbuf*, size_t, bool purge_ardour_buffer = true);
 #endif
 
-#if defined VST_SUPPORT || defined LXVST_SUPPORT
+#if defined WINDOWS_VST_SUPPORT || defined LXVST_SUPPORT || defined MACVST_SUPPORT
        VstEvents* get_vst_midi (size_t);
 #endif
 
-       void read_from(const BufferSet& in, framecnt_t nframes);
-       void read_from(const BufferSet& in, framecnt_t nframes, DataType);
-       void merge_from(const BufferSet& in, framecnt_t nframes);
+       void read_from(const BufferSet& in, samplecnt_t nframes);
+       void read_from(const BufferSet& in, samplecnt_t nframes, DataType);
+       void merge_from(const BufferSet& in, samplecnt_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); }
+               B& operator*()  { return (B&)_set.get_available(_type, _index); }
+               B* operator->() { return &(B&)_set.get_available(_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); }
@@ -189,14 +192,14 @@ private:
        LV2Buffers _lv2_buffers;
 #endif
 
-#if defined VST_SUPPORT || defined LXVST_SUPPORT
+#if defined WINDOWS_VST_SUPPORT || defined LXVST_SUPPORT || defined MACVST_SUPPORT
        class VSTBuffer {
        public:
                VSTBuffer (size_t);
                ~VSTBuffer ();
 
                void clear ();
-               void push_back (Evoral::MIDIEvent<framepos_t> const &);
+               void push_back (Evoral::Event<samplepos_t> const &);
                VstEvents* events () const {
                        return _events;
                }