Move EventRingBuffer to libardour.
[ardour.git] / libs / ardour / ardour / midi_ring_buffer.h
index 228479067f4c7173467725e7dc73af653794e085..15e4d2689bafe9134a760779090e9121fecf066c 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    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
 
 #include <iostream>
 #include <algorithm>
+
+#include "ardour/event_ring_buffer.h"
+#include "ardour/libardour_visibility.h"
 #include "ardour/types.h"
-#include "ardour/buffer.h"
-#include "evoral/EventRingBuffer.hpp"
+#include "ardour/midi_state_tracker.h"
 
 namespace ARDOUR {
 
@@ -38,49 +40,24 @@ class MidiBuffer;
  * [timestamp][type][size][size bytes of raw MIDI][timestamp][type][size](etc...)
  */
 template<typename T>
-class MidiRingBuffer : public Evoral::EventRingBuffer<T> {
+class /*LIBARDOUR_API*/ MidiRingBuffer : public EventRingBuffer<T> {
 public:
-       /** @param size Size in bytes.
-        */
-       MidiRingBuffer(size_t size)
-               : Evoral::EventRingBuffer<T>(size)
-               , _channel_mask(0x0000FFFF)
-       {}
+       /** @param size Size in bytes. */
+       MidiRingBuffer(size_t size) : EventRingBuffer<T>(size) {}
 
        inline bool read_prefix(T* time, Evoral::EventType* type, uint32_t* size);
        inline bool read_contents(uint32_t size, uint8_t* buf);
 
-       size_t read(MidiBuffer& dst, nframes_t start, nframes_t end, nframes_t offset=0);
-       
-       /** Set the channel filtering mode.
-        * @param mask If mode is FilterChannels, each bit represents a midi channel:
-        *     bit 0 = channel 0, bit 1 = channel 1 etc. the read and write methods will only
-        *     process events whose channel bit is 1.
-        *     If mode is ForceChannel, mask is simply a channel number which all events will
-        *     be forced to while reading.
-        */
-       void set_channel_mode(ChannelMode mode, uint16_t mask) {
-               g_atomic_int_set(&_channel_mask, (uint32_t(mode) << 16) | uint32_t(mask));
-       }
+       size_t read(MidiBuffer& dst, framepos_t start, framepos_t end, framecnt_t offset=0, bool stop_on_overflow_in_destination=false);
+
+       void dump(std::ostream& dst);
+       void flush (framepos_t start, framepos_t end);
+
+       void reset_tracker ();
+       void loop_resolve (MidiBuffer& dst, framepos_t);
 
-       ChannelMode get_channel_mode() const {
-               return static_cast<ChannelMode>((g_atomic_int_get(&_channel_mask) & 0xFFFF0000) >> 16);
-       }
-       
-       uint16_t get_channel_mask() const {
-               return g_atomic_int_get(&_channel_mask) & 0x0000FFFF;
-       }
-       
-protected:
-       inline bool is_channel_event(uint8_t event_type_byte) {
-               // mask out channel information
-               event_type_byte &= 0xF0;
-               // midi channel events range from 0x80 to 0xE0
-               return (0x80 <= event_type_byte) && (event_type_byte <= 0xE0);
-       }
-       
 private:
-       volatile uint32_t _channel_mask; // 16 bits mode, 16 bits mask
+       MidiStateTracker _tracker;
 };
 
 
@@ -91,13 +68,19 @@ template<typename T>
 inline bool
 MidiRingBuffer<T>::read_prefix(T* time, Evoral::EventType* type, uint32_t* size)
 {
-       bool success = Evoral::EventRingBuffer<T>::full_read(sizeof(T), (uint8_t*)time);
-       if (success)
-               success = Evoral::EventRingBuffer<T>::full_read(sizeof(Evoral::EventType), (uint8_t*)type);
-       if (success)
-               success = Evoral::EventRingBuffer<T>::full_read(sizeof(uint32_t), (uint8_t*)size);
+       if (PBD::RingBufferNPT<uint8_t>::read((uint8_t*)time, sizeof(T)) != sizeof (T)) {
+               return false;
+       }
+
+       if (PBD::RingBufferNPT<uint8_t>::read((uint8_t*)type, sizeof(Evoral::EventType)) != sizeof (Evoral::EventType)) {
+               return false;
+       }
 
-       return success;
+       if (PBD::RingBufferNPT<uint8_t>::read((uint8_t*)size, sizeof(uint32_t)) != sizeof (uint32_t)) {
+               return false;
+       }
+
+       return true;
 }
 
 
@@ -108,10 +91,9 @@ template<typename T>
 inline bool
 MidiRingBuffer<T>::read_contents(uint32_t size, uint8_t* buf)
 {
-       return Evoral::EventRingBuffer<T>::full_read(size, buf);
+       return PBD::RingBufferNPT<uint8_t>::read(buf, size) == size;
 }
 
-
 } // namespace ARDOUR
 
 #endif // __ardour_midi_ring_buffer_h__