ardour
midi_ring_buffer.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2006 Paul Davis
3 
4  This program is free software; you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation; either version 2 of the License, or
7  (at your option) any later version.
8 
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with this program; if not, write to the Free Software
16  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18 
19 #ifndef __ardour_midi_ring_buffer_h__
20 #define __ardour_midi_ring_buffer_h__
21 
22 #include <iostream>
23 #include <algorithm>
24 
27 #include "ardour/types.h"
29 
30 namespace ARDOUR {
31 
32 class MidiBuffer;
33 
42 template<typename T>
43 class /*LIBARDOUR_API*/ MidiRingBuffer : public EventRingBuffer<T> {
44 public:
46  MidiRingBuffer(size_t size) : EventRingBuffer<T>(size) {}
47 
48  inline bool read_prefix(T* time, Evoral::EventType* type, uint32_t* size);
49  inline bool read_contents(uint32_t size, uint8_t* buf);
50 
51  size_t read(MidiBuffer& dst, framepos_t start, framepos_t end, framecnt_t offset=0, bool stop_on_overflow_in_destination=false);
52  size_t skip_to(framepos_t start);
53 
54  void dump(std::ostream& dst);
55  void flush (framepos_t start, framepos_t end);
56 
57  void reset_tracker ();
60 
61 private:
63 };
64 
65 
69 template<typename T>
70 inline bool
71 MidiRingBuffer<T>::read_prefix(T* time, Evoral::EventType* type, uint32_t* size)
72 {
73  if (PBD::RingBufferNPT<uint8_t>::read((uint8_t*)time, sizeof(T)) != sizeof (T)) {
74  return false;
75  }
76 
77  if (PBD::RingBufferNPT<uint8_t>::read((uint8_t*)type, sizeof(Evoral::EventType)) != sizeof (Evoral::EventType)) {
78  return false;
79  }
80 
81  if (PBD::RingBufferNPT<uint8_t>::read((uint8_t*)size, sizeof(uint32_t)) != sizeof (uint32_t)) {
82  return false;
83  }
84 
85  return true;
86 }
87 
88 
92 template<typename T>
93 inline bool
94 MidiRingBuffer<T>::read_contents(uint32_t size, uint8_t* buf)
95 {
96  return PBD::RingBufferNPT<uint8_t>::read(buf, size) == size;
97 }
98 
99 } // namespace ARDOUR
100 
101 #endif // __ardour_midi_ring_buffer_h__
102 
void resolve_tracker(MidiBuffer &dst, framepos_t)
bool read_contents(uint32_t size, uint8_t *buf)
MidiStateTracker _tracker
LIBARDOUR_API PBD::PropertyDescriptor< framepos_t > start
Definition: region.cc:63
void flush(framepos_t start, framepos_t end)
int64_t framecnt_t
Definition: types.h:76
size_t read(MidiBuffer &dst, framepos_t start, framepos_t end, framecnt_t offset=0, bool stop_on_overflow_in_destination=false)
Definition: amp.h:29
int64_t framepos_t
Definition: types.h:66
bool read_prefix(T *time, Evoral::EventType *type, uint32_t *size)
uint32_t EventType
Definition: types.hpp:43
size_t read(T *dest, size_t cnt)
void dump(std::ostream &dst)
size_t skip_to(framepos_t start)