Merge remote-tracking branch 'upstream/master'
[ardour.git] / libs / evoral / evoral / Sequence.hpp
1 /* This file is part of Evoral.
2  * Copyright (C) 2008 David Robillard <http://drobilla.net>
3  * Copyright (C) 2000-2008 Paul Davis
4  *
5  * Evoral is free software; you can redistribute it and/or modify it under the
6  * terms of the GNU General Public License as published by the Free Software
7  * Foundation; either version 2 of the License, or (at your option) any later
8  * version.
9  *
10  * Evoral is distributed in the hope that it will be useful, but WITHOUT ANY
11  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #ifndef EVORAL_SEQUENCE_HPP
20 #define EVORAL_SEQUENCE_HPP
21
22 #include <vector>
23 #include <queue>
24 #include <set>
25 #include <list>
26 #include <utility>
27 #include <boost/shared_ptr.hpp>
28 #include <glibmm/threads.h>
29
30 #include "evoral/visibility.h"
31 #include "evoral/types.hpp"
32 #include "evoral/Note.hpp"
33 #include "evoral/Parameter.hpp"
34 #include "evoral/ControlSet.hpp"
35 #include "evoral/ControlList.hpp"
36 #include "evoral/PatchChange.hpp"
37
38 namespace Evoral {
39
40 class TypeMap;
41 template<typename Time> class EventSink;
42 template<typename Time> class Note;
43 template<typename Time> class Event;
44
45 /** An iterator over (the x axis of) a 2-d double coordinate space.
46  */
47 class /*LIBEVORAL_API*/ ControlIterator {
48 public:
49         ControlIterator(boost::shared_ptr<const ControlList> al, double ax, double ay)
50                 : list(al)
51                 , x(ax)
52                 , y(ay)
53         {}
54
55         boost::shared_ptr<const ControlList> list;
56         double x;
57         double y;
58 };
59
60
61 /** This is a higher level view of events, with separate representations for
62  * notes (instead of just unassociated note on/off events) and controller data.
63  * Controller data is represented as a list of time-stamped float values. */
64 template<typename Time>
65 class LIBEVORAL_API Sequence : virtual public ControlSet {
66 public:
67         Sequence(const TypeMap& type_map);
68         Sequence(const Sequence<Time>& other);
69
70 protected:
71         struct WriteLockImpl {
72                 WriteLockImpl(Glib::Threads::RWLock& s, Glib::Threads::Mutex& c)
73                         : sequence_lock(new Glib::Threads::RWLock::WriterLock(s))
74                         , control_lock(new Glib::Threads::Mutex::Lock(c)) { }
75                 ~WriteLockImpl() {
76                         delete sequence_lock;
77                         delete control_lock;
78                 }
79                 Glib::Threads::RWLock::WriterLock* sequence_lock;
80                 Glib::Threads::Mutex::Lock*        control_lock;
81         };
82
83 public:
84
85         typedef typename boost::shared_ptr<Evoral::Note<Time> >  NotePtr;
86         typedef typename boost::shared_ptr<const Evoral::Note<Time> >  constNotePtr;
87
88         typedef boost::shared_ptr<Glib::Threads::RWLock::ReaderLock> ReadLock;
89         typedef boost::shared_ptr<WriteLockImpl>            WriteLock;
90
91         virtual ReadLock  read_lock() const { return ReadLock(new Glib::Threads::RWLock::ReaderLock(_lock)); }
92         virtual WriteLock write_lock()      { return WriteLock(new WriteLockImpl(_lock, _control_lock)); }
93
94         void clear();
95
96         bool percussive() const     { return _percussive; }
97         void set_percussive(bool p) { _percussive = p; }
98
99         void start_write();
100         bool writing() const { return _writing; }
101
102         enum StuckNoteOption {
103                 Relax,
104                 DeleteStuckNotes,
105                 ResolveStuckNotes
106         };
107
108         void end_write (StuckNoteOption, Time when = 0);
109
110         void append(const Event<Time>& ev, Evoral::event_id_t evid);
111
112         inline size_t n_notes() const { return _notes.size(); }
113         inline bool   empty()   const { return _notes.empty() && _sysexes.empty() && _patch_changes.empty() && ControlSet::controls_empty(); }
114
115         inline static bool note_time_comparator(const boost::shared_ptr< const Note<Time> >& a,
116                                                 const boost::shared_ptr< const Note<Time> >& b) {
117                 return a->time() < b->time();
118         }
119
120         struct NoteNumberComparator {
121                 inline bool operator()(const boost::shared_ptr< const Note<Time> > a,
122                                        const boost::shared_ptr< const Note<Time> > b) const {
123                         return a->note() < b->note();
124                 }
125         };
126
127         struct EarlierNoteComparator {
128                 inline bool operator()(const boost::shared_ptr< const Note<Time> > a,
129                                        const boost::shared_ptr< const Note<Time> > b) const {
130                         return musical_time_less_than (a->time(), b->time());
131                 }
132         };
133
134         struct LaterNoteComparator {
135                 typedef const Note<Time>* value_type;
136                 inline bool operator()(const boost::shared_ptr< const Note<Time> > a,
137                                        const boost::shared_ptr< const Note<Time> > b) const {
138                         return musical_time_greater_than (a->time(), b->time());
139                 }
140         };
141
142         struct LaterNoteEndComparator {
143                 typedef const Note<Time>* value_type;
144                 inline bool operator()(const boost::shared_ptr< const Note<Time> > a,
145                                        const boost::shared_ptr< const Note<Time> > b) const {
146                         return musical_time_greater_than (a->end_time(), b->end_time());
147                 }
148         };
149
150         typedef std::multiset<NotePtr, EarlierNoteComparator> Notes;
151         inline       Notes& notes()       { return _notes; }
152         inline const Notes& notes() const { return _notes; }
153
154         enum NoteOperator {
155                 PitchEqual,
156                 PitchLessThan,
157                 PitchLessThanOrEqual,
158                 PitchGreater,
159                 PitchGreaterThanOrEqual,
160                 VelocityEqual,
161                 VelocityLessThan,
162                 VelocityLessThanOrEqual,
163                 VelocityGreater,
164                 VelocityGreaterThanOrEqual,
165         };
166
167         void get_notes (Notes&, NoteOperator, uint8_t val, int chan_mask = 0) const;
168
169         void remove_overlapping_notes ();
170         void trim_overlapping_notes ();
171         void remove_duplicate_notes ();
172
173         enum OverlapPitchResolution {
174                 LastOnFirstOff,
175                 FirstOnFirstOff
176         };
177
178         bool overlapping_pitches_accepted() const { return _overlapping_pitches_accepted; }
179         void overlapping_pitches_accepted(bool yn)  { _overlapping_pitches_accepted = yn; }
180         OverlapPitchResolution overlap_pitch_resolution() const { return _overlap_pitch_resolution; }
181         void set_overlap_pitch_resolution(OverlapPitchResolution opr);
182
183         void set_notes (const typename Sequence<Time>::Notes& n);
184
185         typedef boost::shared_ptr< Event<Time> > SysExPtr;
186         typedef boost::shared_ptr<const Event<Time> > constSysExPtr;
187
188         struct EarlierSysExComparator {
189                 inline bool operator() (constSysExPtr a, constSysExPtr b) const {
190                         return musical_time_less_than (a->time(), b->time());
191                 }
192         };
193
194         typedef std::multiset<SysExPtr, EarlierSysExComparator> SysExes;
195         inline       SysExes& sysexes()       { return _sysexes; }
196         inline const SysExes& sysexes() const { return _sysexes; }
197
198         typedef boost::shared_ptr<PatchChange<Time> > PatchChangePtr;
199         typedef boost::shared_ptr<const PatchChange<Time> > constPatchChangePtr;
200
201         struct EarlierPatchChangeComparator {
202                 inline bool operator() (constPatchChangePtr a, constPatchChangePtr b) const {
203                         return musical_time_less_than (a->time(), b->time());
204                 }
205         };
206
207         typedef std::multiset<PatchChangePtr, EarlierPatchChangeComparator> PatchChanges;
208         inline       PatchChanges& patch_changes ()       { return _patch_changes; }
209         inline const PatchChanges& patch_changes () const { return _patch_changes; }
210
211         void dump (std::ostream&) const;
212
213 private:
214         typedef std::priority_queue<NotePtr, std::deque<NotePtr>, LaterNoteEndComparator> ActiveNotes;
215 public:
216
217         /** Read iterator */
218         class LIBEVORAL_API /* Added by JE - */ const_iterator {
219         public:
220                 const_iterator();
221                 const_iterator(const Sequence<Time>& seq, Time t, bool, std::set<Evoral::Parameter> const &);
222                 ~const_iterator();
223
224                 inline bool valid() const { return !_is_end && _event; }
225                 //inline bool locked() const { return _locked; }
226
227                 void invalidate();
228
229                 const Event<Time>& operator*()  const { return *_event;  }
230                 const boost::shared_ptr< Event<Time> > operator->() const  { return _event; }
231                 const boost::shared_ptr< Event<Time> > get_event_pointer() { return _event; }
232
233                 const const_iterator& operator++(); // prefix only
234
235                 bool operator==(const const_iterator& other) const;
236                 bool operator!=(const const_iterator& other) const { return ! operator==(other); }
237
238                 const_iterator& operator=(const const_iterator& other);
239
240         private:
241                 friend class Sequence<Time>;
242
243                 typedef std::vector<ControlIterator> ControlIterators;
244                 enum MIDIMessageType { NIL, NOTE_ON, NOTE_OFF, CONTROL, SYSEX, PATCH_CHANGE };
245
246                 const Sequence<Time>*                 _seq;
247                 boost::shared_ptr< Event<Time> >      _event;
248                 mutable ActiveNotes                   _active_notes;
249                 /** If the iterator is pointing at a patch change, this is the index of the
250                  *  sub-message within that change.
251                  */
252                 int                                   _active_patch_change_message;
253                 MIDIMessageType                       _type;
254                 bool                                  _is_end;
255                 typename Sequence::ReadLock           _lock;
256                 typename Notes::const_iterator        _note_iter;
257                 typename SysExes::const_iterator      _sysex_iter;
258                 typename PatchChanges::const_iterator _patch_change_iter;
259                 ControlIterators                      _control_iters;
260                 ControlIterators::iterator            _control_iter;
261                 bool                                  _force_discrete;
262         };
263
264         const_iterator begin (
265                 Time t = 0,
266                 bool force_discrete = false,
267                 std::set<Evoral::Parameter> const & f = std::set<Evoral::Parameter> ()) const {
268                 return const_iterator (*this, t, force_discrete, f);
269         }
270
271         const const_iterator& end() const { return _end_iter; }
272
273         // CONST iterator implementations (x3)
274         typename Notes::const_iterator note_lower_bound (Time t) const;
275         typename PatchChanges::const_iterator patch_change_lower_bound (Time t) const;
276         typename SysExes::const_iterator sysex_lower_bound (Time t) const;
277
278         // NON-CONST iterator implementations (x3)
279         typename Notes::iterator note_lower_bound (Time t);
280         typename PatchChanges::iterator patch_change_lower_bound (Time t);
281         typename SysExes::iterator sysex_lower_bound (Time t);
282
283         bool control_to_midi_event(boost::shared_ptr< Event<Time> >& ev,
284                                    const ControlIterator&            iter) const;
285
286         bool edited() const      { return _edited; }
287         void set_edited(bool yn) { _edited = yn; }
288
289         bool overlaps (const NotePtr& ev,
290                        const NotePtr& ignore_this_note) const;
291         bool contains (const NotePtr& ev) const;
292
293         bool add_note_unlocked (const NotePtr note, void* arg = 0);
294         void remove_note_unlocked(const constNotePtr note);
295
296         void add_patch_change_unlocked (const PatchChangePtr);
297         void remove_patch_change_unlocked (const constPatchChangePtr);
298
299         void add_sysex_unlocked (const SysExPtr);
300         void remove_sysex_unlocked (const SysExPtr);
301
302         uint8_t lowest_note()  const { return _lowest_note; }
303         uint8_t highest_note() const { return _highest_note; }
304
305
306 protected:
307         bool                   _edited;
308         bool                   _overlapping_pitches_accepted;
309         OverlapPitchResolution _overlap_pitch_resolution;
310         mutable Glib::Threads::RWLock   _lock;
311         bool                   _writing;
312
313         virtual int resolve_overlaps_unlocked (const NotePtr, void* /* arg */ = 0) {
314                 return 0;
315         }
316
317         typedef std::multiset<NotePtr, NoteNumberComparator>  Pitches;
318         inline       Pitches& pitches(uint8_t chan)       { return _pitches[chan&0xf]; }
319         inline const Pitches& pitches(uint8_t chan) const { return _pitches[chan&0xf]; }
320
321         virtual void control_list_marked_dirty ();
322
323 private:
324         friend class const_iterator;
325
326         bool overlaps_unlocked (const NotePtr& ev, const NotePtr& ignore_this_note) const;
327         bool contains_unlocked (const NotePtr& ev) const;
328
329         void append_note_on_unlocked (NotePtr, Evoral::event_id_t);
330         void append_note_off_unlocked(NotePtr);
331         void append_control_unlocked(const Parameter& param, Time time, double value, Evoral::event_id_t);
332         void append_sysex_unlocked(const MIDIEvent<Time>& ev, Evoral::event_id_t);
333         void append_patch_change_unlocked (const PatchChange<Time>&, Evoral::event_id_t);
334
335         void get_notes_by_pitch (Notes&, NoteOperator, uint8_t val, int chan_mask = 0) const;
336         void get_notes_by_velocity (Notes&, NoteOperator, uint8_t val, int chan_mask = 0) const;
337
338         const TypeMap& _type_map;
339
340         Notes        _notes;       // notes indexed by time
341         Pitches      _pitches[16]; // notes indexed by channel+pitch
342         SysExes      _sysexes;
343         PatchChanges _patch_changes;
344
345         typedef std::multiset<NotePtr, EarlierNoteComparator> WriteNotes;
346         WriteNotes _write_notes[16];
347
348         /** Current bank number on each channel so that we know what
349          *  to put in PatchChange events when program changes are
350          *  seen.
351          */
352         int _bank[16];
353
354         const   const_iterator _end_iter;
355         bool                   _percussive;
356
357         uint8_t _lowest_note;
358         uint8_t _highest_note;
359 };
360
361
362 } // namespace Evoral
363
364 template<typename Time> /*LIBEVORAL_API*/ std::ostream& operator<<(std::ostream& o, const Evoral::Sequence<Time>& s) { s.dump (o); return o; }
365
366
367 #endif // EVORAL_SEQUENCE_HPP
368