Gracefully ignore illegal MIDI events.
[ardour.git] / libs / evoral / src / Sequence.cpp
1 /* This file is part of Evoral.
2  * Copyright (C) 2008 Dave 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 #define __STDC_LIMIT_MACROS 1
20 #include <algorithm>
21 #include <cmath>
22 #include <iostream>
23 #include <limits>
24 #include <stdexcept>
25 #include <stdint.h>
26 #include "evoral/Control.hpp"
27 #include "evoral/ControlList.hpp"
28 #include "evoral/ControlSet.hpp"
29 #include "evoral/EventSink.hpp"
30 #include "evoral/MIDIParameters.hpp"
31 #include "evoral/Sequence.hpp"
32 #include "evoral/TypeMap.hpp"
33 #include "evoral/midi_util.h"
34
35 //#define DEBUG_SEQUENCE 1
36 #ifdef DEBUG_SEQUENCE
37         #include <boost/format.hpp>
38         using boost::format;
39         #define DUMP(x) cerr << (x);
40 #else
41         #define DUMP(x)
42 #endif
43
44 using namespace std;
45
46 namespace Evoral {
47
48 template<typename Time>
49 void Sequence<Time>::write_lock() {
50         _lock.writer_lock();
51         _control_lock.lock();
52 }
53
54 template<typename Time>
55 void Sequence<Time>::write_unlock() {
56         _lock.writer_unlock();
57         _control_lock.unlock();
58 }
59
60 template<typename Time>
61 void Sequence<Time>::read_lock() const {
62         _lock.reader_lock();
63 }
64
65 template<typename Time>
66 void Sequence<Time>::read_unlock() const {
67         _lock.reader_unlock();
68 }
69
70
71 // Read iterator (const_iterator)
72
73 template<typename Time>
74 Sequence<Time>::const_iterator::const_iterator()
75         : _seq(NULL)
76         , _is_end(true)
77         , _locked(false)
78 {
79         _event = boost::shared_ptr< Event<Time> >(new Event<Time>());
80 }
81
82 template<typename Time>
83 Sequence<Time>::const_iterator::const_iterator(const Sequence<Time>& seq, Time t)
84         : _seq(&seq)
85         , _type(NIL)
86         , _is_end((t == DBL_MAX) || seq.empty())
87         , _locked(!_is_end)
88 {
89         DUMP(format("Created Iterator @ %1% (is end: %2%)\n)") % t % _is_end);
90         
91         if (_is_end) {
92                 return;
93         }
94
95         seq.read_lock();
96
97         // Find first note which begins after t
98         _note_iter = seq.notes().end();
99         for (typename Sequence<Time>::Notes::const_iterator i = seq.notes().begin();
100                         i != seq.notes().end(); ++i) {
101                 if ((*i)->time() >= t) {
102                         _note_iter = i;
103                         break;
104                 }
105         }
106         assert(_note_iter == seq.notes().end() || (*_note_iter)->time() >= t);
107         
108         // Find first sysex event after t
109         _sysex_iter = seq.sysexes().end();
110         for (typename Sequence<Time>::SysExes::const_iterator i = seq.sysexes().begin();
111                         i != seq.sysexes().end(); ++i) {
112                 if ((*i)->time() >= t) {
113                         _sysex_iter = i;
114                         break;
115                 }
116         }
117         assert(_sysex_iter == seq.sysexes().end() || (*_sysex_iter)->time() >= t);
118
119         // Find first control event after t
120         ControlIterator earliest_control(boost::shared_ptr<ControlList>(), DBL_MAX, 0.0);
121         _control_iters.reserve(seq._controls.size());
122         for (Controls::const_iterator i = seq._controls.begin(); i != seq._controls.end(); ++i) {
123                 DUMP(format("Iterator: control: %1%\n") % seq._type_map.to_symbol(i->first));
124                 double x, y;
125                 bool ret = i->second->list()->rt_safe_earliest_event_unlocked(t, DBL_MAX, x, y);
126                 if (!ret) {
127                         DUMP(format("Iterator: CC %1% (size %2%) has no events past %3%\n")
128                                         % i->first.id() % i->second->list()->size() % t);
129                         continue;
130                 }
131
132                 assert(x >= 0);
133
134                 if (y < i->first.min() || y > i->first.max()) {
135                         cerr << "ERROR: Controller value " << y
136                                 << " out of range [" << i->first.min() << "," << i->first.max()
137                                 << "], event ignored" << endl;
138                         continue;
139                 }
140                 
141                 DUMP(format("Iterator: CC %1% added (%2%, %3%)\n") % i->first.id() % x % y);
142
143                 const ControlIterator new_iter(i->second->list(), x, y);
144                 _control_iters.push_back(new_iter);
145
146                 // Found a new earliest_control
147                 if (x < earliest_control.x) {
148                         earliest_control = new_iter;
149                         _control_iter = _control_iters.end();
150                         --_control_iter; // now points to the last element in _control_iters
151                 }
152         }
153         
154         // Now find the earliest event overall and point to it
155         Time earliest_t = t;
156
157         if (_note_iter != seq.notes().end()) {
158                 _type = NOTE_ON;
159                 earliest_t = (*_note_iter)->time();
160         }
161         
162         if (_sysex_iter != seq.sysexes().end() && (*_sysex_iter)->time() < earliest_t) {
163                 _type = SYSEX;
164                 earliest_t = (*_sysex_iter)->time();
165         }
166
167         if (earliest_control.list && earliest_control.x >= t && earliest_control.x < earliest_t) {
168                 _type = CONTROL;
169                 earliest_t = earliest_control.x;
170         }
171         
172         switch (_type) {
173         case NOTE_ON:
174                 DUMP(format("Starting at note on event @ %1%\n") % earliest_t);
175                 _event = boost::shared_ptr< Event<Time> >(
176                                 new Event<Time>((*_note_iter)->on_event(), true));
177                 _active_notes.push(*_note_iter);
178                 break;
179         case SYSEX:
180                 DUMP(format("Starting at sysex event @ %1%\n") % earliest_t);
181                 _event = boost::shared_ptr< Event<Time> >(
182                                 new Event<Time>(*(*_sysex_iter), true));
183                 break;
184         case CONTROL:
185                 DUMP(format("Starting at control event @ %1%\n") % earliest_t);
186                 seq.control_to_midi_event(_event, earliest_control);
187                 break;
188         default:
189                 assert(false);
190         }
191
192         if (!_event || _event->size() == 0) {
193                 DUMP(format("Starting at end @ %1%\n") % t);
194                 _is_end = true;
195                 _type   = NIL;
196                 if (_locked) {
197                         _seq->read_unlock();
198                         _locked = false;
199                 }
200         } else {
201                 DUMP(format("New iterator = %1% : %2% @ %3%\n")
202                                 % (int)_event->event_type()
203                                 % (int)((MIDIEvent<Time>*)_event.get())->type()
204                                 % _event->time());
205         }
206         
207         assert(_event && _event->size() > 0 && _event->time() >= t);
208         assert(midi_event_is_valid(_event->buffer(), _event->size()));
209 }
210
211 template<typename Time>
212 Sequence<Time>::const_iterator::~const_iterator()
213 {
214         if (_locked) {
215                 _seq->read_unlock();
216         }
217 }
218
219 template<typename Time>
220 const typename Sequence<Time>::const_iterator&
221 Sequence<Time>::const_iterator::operator++()
222 {
223         if (_is_end) {
224                 throw std::logic_error("Attempt to iterate past end of Sequence");
225         }
226         
227         DUMP("Sequence::const_iterator++\n");
228         assert(_event && _event->buffer() && _event->size() > 0);
229         
230         const MIDIEvent<Time>& ev = *((MIDIEvent<Time>*)_event.get());
231
232         if (!(     ev.is_note()
233                         || ev.is_cc()
234                         || ev.is_pgm_change()
235                         || ev.is_pitch_bender()
236                         || ev.is_channel_pressure()
237                         || ev.is_sysex()) ) {
238                 cerr << "WARNING: Unknown event (type " << _type << "): " << hex
239                         << int(ev.buffer()[0]) << int(ev.buffer()[1]) << int(ev.buffer()[2]) << endl;
240         }
241         
242         double x   = 0.0;
243         double y   = 0.0;
244         bool   ret = false;
245         
246         // Increment past current event
247         switch (_type) {
248         case NOTE_ON:
249                 ++_note_iter;
250                 break;
251         case NOTE_OFF:
252                 break;
253         case CONTROL:
254                 // Increment current controller iterator
255                 ret = _control_iter->list->rt_safe_earliest_event_unlocked(
256                                 _control_iter->x, DBL_MAX, x, y, false);
257                 assert(!ret || x > _control_iter->x);
258                 if (ret) {
259                         _control_iter->x = x;
260                         _control_iter->y = y;
261                 } else {
262                         _control_iter->list.reset();
263                         _control_iter->x = DBL_MAX;
264                         _control_iter->y = DBL_MAX;
265                 }
266         
267                 // Find the controller with the next earliest event time
268                 _control_iter = _control_iters.begin();
269                 for (ControlIterators::iterator i = _control_iters.begin();
270                                 i != _control_iters.end(); ++i) {
271                         if (i->x < _control_iter->x) {
272                                 _control_iter = i;
273                         }
274                 }
275                 break;
276         case SYSEX:
277                 ++_sysex_iter;
278                 break;
279         default:
280                 assert(false);
281         }
282
283         // Now find the earliest event overall and point to it
284         _type = NIL;
285         Time earliest_t = std::numeric_limits<Time>::max();
286
287         // Next earliest note on
288         if (_note_iter != _seq->notes().end()) {
289                 _type = NOTE_ON;
290                 earliest_t = (*_note_iter)->time();
291         }
292
293         // Use the next note off iff it's earlier or the same time as the note on
294         if (!_seq->percussive() && (!_active_notes.empty())) {
295                 if (_type == NIL || _active_notes.top()->end_time() <= earliest_t) {
296                         _type = NOTE_OFF;
297                         earliest_t = _active_notes.top()->end_time();
298                 }
299         }
300
301         // Use the next earliest controller iff it's earlier than the note event
302         if (_control_iter != _control_iters.end() && _control_iter->x != DBL_MAX) {
303                 if (_type == NIL || _control_iter->x < earliest_t) {
304                         _type = CONTROL;
305                         earliest_t = _control_iter->x;
306                 }
307         }
308         
309         // Use the next earliest SysEx iff it's earlier than the controller
310         if (_sysex_iter != _seq->sysexes().end()) {
311                 if (_type == NIL || (*_sysex_iter)->time() < earliest_t) {
312                         _type = SYSEX;
313                         earliest_t = (*_sysex_iter)->time();
314                 }
315         }
316
317         // Set event to reflect new position
318         switch (_type) {
319         case NOTE_ON:
320                 DUMP("iterator = note on\n");
321                 *_event = (*_note_iter)->on_event();
322                 _active_notes.push(*_note_iter);
323                 break;
324         case NOTE_OFF:
325                 DUMP("iterator = note off\n");
326                 assert(!_active_notes.empty());
327                 *_event = _active_notes.top()->off_event();
328                 _active_notes.pop();
329                 break;
330         case CONTROL:
331                 DUMP("iterator = control\n");
332                 _seq->control_to_midi_event(_event, *_control_iter);
333                 break;
334         case SYSEX:
335                 DUMP("iterator = sysex\n");
336                 *_event = *(*_sysex_iter);
337                 break;
338         default:
339                 DUMP("iterator = end\n");
340                 _is_end = true;
341         }
342
343         assert(_is_end || (_event->size() > 0 && _event->buffer() && _event->buffer()[0] != '\0'));
344
345         return *this;
346 }
347
348 template<typename Time>
349 bool
350 Sequence<Time>::const_iterator::operator==(const const_iterator& other) const
351 {
352         if (_seq != other._seq) {
353                 return false;
354         } else if (_is_end || other._is_end) {
355                 return (_is_end == other._is_end);
356         } else if (_type != other._type) {
357                 return false;
358         } else {
359                 return (_event == other._event);
360         }
361 }
362
363 template<typename Time>
364 typename Sequence<Time>::const_iterator&
365 Sequence<Time>::const_iterator::operator=(const const_iterator& other)
366 {
367         if (_seq != other._seq) {
368                 if (_locked) {
369                         _seq->read_unlock();
370                 }
371                 if (other._locked) {
372                    other._seq->read_lock();
373                 }
374         }
375
376         _seq           = other._seq;
377         _event         = other._event;
378         _active_notes  = other._active_notes;
379         _type          = other._type;
380         _is_end        = other._is_end;
381         _locked        = other._locked;
382         _note_iter     = other._note_iter;
383         _sysex_iter    = other._sysex_iter;
384         _control_iters = other._control_iters;
385         size_t index   = other._control_iter - other._control_iters.begin();
386         _control_iter  = _control_iters.begin() + index;
387
388         return *this;
389 }
390
391 // Sequence
392
393 template<typename Time>
394 Sequence<Time>::Sequence(const TypeMap& type_map, size_t size)
395         : _read_iter(*this, DBL_MAX)
396         , _edited(false)
397         , _type_map(type_map)
398         , _notes(size)
399         , _writing(false)
400         , _end_iter(*this, DBL_MAX)
401         , _percussive(false)
402         , _lowest_note(127)
403         , _highest_note(0)
404 {
405         DUMP(format("Sequence (size %1%) constructed: %2%\n") % size % this);
406         assert(_end_iter._is_end);
407         assert( ! _end_iter._locked);
408 }
409
410 /** Write the controller event pointed to by \a iter to \a ev.
411  * The buffer of \a ev will be allocated or resized as necessary.
412  * The event_type of \a ev should be set to the expected output type.
413  * \return true on success
414  */
415 template<typename Time>
416 bool
417 Sequence<Time>::control_to_midi_event(
418                 boost::shared_ptr< Event<Time> >& ev,
419                 const ControlIterator&            iter) const
420 {
421         assert(iter.list.get());
422         const uint32_t event_type = iter.list->parameter().type();
423         
424         // initialize the event pointer with a new event, if necessary
425         if (!ev) {
426                 ev = boost::shared_ptr< Event<Time> >(new Event<Time>(event_type, 0, 3, NULL, true));
427         }
428         
429         uint8_t midi_type = _type_map.parameter_midi_type(iter.list->parameter());
430         ev->set_event_type(_type_map.midi_event_type(midi_type));
431         switch (midi_type) {
432         case MIDI_CMD_CONTROL:
433                 assert(iter.list.get());
434                 assert(iter.list->parameter().channel() < 16);
435                 assert(iter.list->parameter().id() <= INT8_MAX);
436                 assert(iter.y <= INT8_MAX);
437                 
438                 ev->time() = iter.x;
439                 ev->realloc(3);
440                 ev->buffer()[0] = MIDI_CMD_CONTROL + iter.list->parameter().channel();
441                 ev->buffer()[1] = (uint8_t)iter.list->parameter().id();
442                 ev->buffer()[2] = (uint8_t)iter.y;
443                 break;
444
445         case MIDI_CMD_PGM_CHANGE:
446                 assert(iter.list.get());
447                 assert(iter.list->parameter().channel() < 16);
448                 assert(iter.y <= INT8_MAX);
449                 
450                 ev->time() = iter.x;
451                 ev->realloc(2);
452                 ev->buffer()[0] = MIDI_CMD_PGM_CHANGE + iter.list->parameter().channel();
453                 ev->buffer()[1] = (uint8_t)iter.y;
454                 break;
455
456         case MIDI_CMD_BENDER:
457                 assert(iter.list.get());
458                 assert(iter.list->parameter().channel() < 16);
459                 assert(iter.y < (1<<14));
460                 
461                 ev->time() = iter.x;
462                 ev->realloc(3);
463                 ev->buffer()[0] = MIDI_CMD_BENDER + iter.list->parameter().channel();
464                 ev->buffer()[1] = uint16_t(iter.y) & 0x7F; // LSB
465                 ev->buffer()[2] = (uint16_t(iter.y) >> 7) & 0x7F; // MSB
466                 break;
467
468         case MIDI_CMD_CHANNEL_PRESSURE:
469                 assert(iter.list.get());
470                 assert(iter.list->parameter().channel() < 16);
471                 assert(iter.y <= INT8_MAX);
472
473                 ev->time() = iter.x;
474                 ev->realloc(2);
475                 ev->buffer()[0] = MIDI_CMD_CHANNEL_PRESSURE + iter.list->parameter().channel();
476                 ev->buffer()[1] = (uint8_t)iter.y;
477                 break;
478
479         default:
480                 return false;
481         }
482
483         return true;
484 }
485
486 /** Clear all events from the model.
487  */
488 template<typename Time>
489 void
490 Sequence<Time>::clear()
491 {
492         _lock.writer_lock();
493         _notes.clear();
494         for (Controls::iterator li = _controls.begin(); li != _controls.end(); ++li)
495                 li->second->list()->clear();
496         _read_iter = end();
497         _lock.writer_unlock();
498 }
499
500 /** Begin a write of events to the model.
501  *
502  * If \a mode is Sustained, complete notes with length are constructed as note
503  * on/off events are received.  Otherwise (Percussive), only note on events are
504  * stored; note off events are discarded entirely and all contained notes will
505  * have length 0.
506  */
507 template<typename Time>
508 void
509 Sequence<Time>::start_write()
510 {
511         DUMP(format("%1% : start_write (percussive = %2%)\n") % this % _percussive);
512         write_lock();
513         _writing = true;
514         for (int i = 0; i < 16; ++i) {
515                 _write_notes[i].clear();
516         }
517         _dirty_controls.clear();
518         write_unlock();
519 }
520
521 /** Finish a write of events to the model.
522  *
523  * If \a delete_stuck is true and the current mode is Sustained, note on events
524  * that were never resolved with a corresonding note off will be deleted.
525  * Otherwise they will remain as notes with length 0.
526  */
527 template<typename Time>
528 void
529 Sequence<Time>::end_write(bool delete_stuck)
530 {
531         write_lock();
532         assert(_writing);
533
534         DUMP(format("%1% : end_write (%2% notes)\n") % this % _notes.size());
535
536         if (!_percussive && delete_stuck) {
537                 for (typename Notes::iterator n = _notes.begin(); n != _notes.end() ;) {
538                         if ((*n)->length() == 0) {
539                                 cerr << "WARNING: Stuck note lost: " << (*n)->note() << endl;
540                                 n = _notes.erase(n);
541                                 // we have to break here because erase invalidates the iterator
542                                 break;
543                         } else {
544                                 ++n;
545                         }
546                 }
547         }
548
549         for (int i = 0; i < 16; ++i) {
550                 if (!_write_notes[i].empty()) {
551                         cerr << "WARNING: Sequence<Time>::end_write: Channel " << i << " has "
552                                         << _write_notes[i].size() << " stuck notes" << endl;
553                 }
554                 _write_notes[i].clear();
555         }
556
557         for (ControlLists::const_iterator i = _dirty_controls.begin(); i != _dirty_controls.end(); ++i) {
558                 (*i)->mark_dirty();
559         }
560         
561         _writing = false;
562         write_unlock();
563 }
564
565 /** Append \a ev to model.  NOT realtime safe.
566  *
567  * Timestamps of events in \a buf are expected to be relative to
568  * the start of this model (t=0) and MUST be monotonically increasing
569  * and MUST be >= the latest event currently in the model.
570  */
571 template<typename Time>
572 void
573 Sequence<Time>::append(const Event<Time>& event)
574 {
575         write_lock();
576         _edited = true;
577         
578         const MIDIEvent<Time>& ev = (const MIDIEvent<Time>&)event;
579
580         assert(_notes.empty() || ev.time() >= _notes.back()->time());
581         assert(_writing);
582
583         if (!midi_event_is_valid(ev.buffer(), ev.size())) {
584                 cerr << "WARNING: Ignoring illegal MIDI event" << endl;
585                 return;
586         }
587
588         if (ev.is_note_on()) {
589                 append_note_on_unlocked(ev.channel(), ev.time(), ev.note(), ev.velocity());
590         } else if (ev.is_note_off()) {
591                 append_note_off_unlocked(ev.channel(), ev.time(), ev.note());
592         } else if (ev.is_sysex()) {
593                 append_sysex_unlocked(ev);
594         } else if (!_type_map.type_is_midi(ev.event_type())) {
595                 printf("WARNING: Sequence: Unknown event type %X: ", ev.event_type());
596                 for (size_t i=0; i < ev.size(); ++i) {
597                         printf("%X ", ev.buffer()[i]);
598                 }
599                 printf("\n");
600         } else if (ev.is_cc()) {
601                 append_control_unlocked(
602                                 Evoral::MIDI::ContinuousController(ev.event_type(), ev.channel(), ev.cc_number()),
603                                 ev.time(), ev.cc_value());
604         } else if (ev.is_pgm_change()) {
605                 append_control_unlocked(
606                                 Evoral::MIDI::ProgramChange(ev.event_type(), ev.channel()),
607                                 ev.time(), ev.pgm_number());
608         } else if (ev.is_pitch_bender()) {
609                 append_control_unlocked(
610                                 Evoral::MIDI::PitchBender(ev.event_type(), ev.channel()),
611                                 ev.time(), double(  (0x7F & ev.pitch_bender_msb()) << 7
612                                         | (0x7F & ev.pitch_bender_lsb()) ));
613         } else if (ev.is_channel_pressure()) {
614                 append_control_unlocked(
615                                 Evoral::MIDI::ChannelPressure(ev.event_type(), ev.channel()),
616                                 ev.time(), ev.channel_pressure());
617         } else {
618                 printf("WARNING: Sequence: Unknown MIDI event type %X\n", ev.type());
619         }
620
621         write_unlock();
622 }
623
624 template<typename Time>
625 void
626 Sequence<Time>::append_note_on_unlocked(uint8_t chan, Time time, uint8_t note_num, uint8_t velocity)
627 {
628         DUMP(format("%1% c=%2% note %3% on @ %4% v=%5%\n")
629                         % this % (int)chan % (int)note_num % time % (int)velocity);
630         assert(note_num <= 127);
631         assert(chan < 16);
632         assert(_writing);
633         _edited = true;
634
635         if (velocity == 0) {
636                 append_note_off_unlocked(chan, time, note_num);
637                 return;
638         }
639
640         if (note_num < _lowest_note)
641                 _lowest_note = note_num;
642         if (note_num > _highest_note)
643                 _highest_note = note_num;
644
645         boost::shared_ptr< Note<Time> > new_note(new Note<Time>(chan, time, 0, note_num, velocity));
646         _notes.push_back(new_note);
647         if (!_percussive) {
648                 DUMP(format("Sustained: Appending active note on %1% channel %2%\n")
649                                 % (unsigned)(uint8_t)note_num % chan);
650                 _write_notes[chan].push_back(_notes.size() - 1);
651         } else {
652                 DUMP("Percussive: NOT appending active note on\n");
653          }
654 }
655
656 template<typename Time>
657 void
658 Sequence<Time>::append_note_off_unlocked(uint8_t chan, Time time, uint8_t note_num)
659 {
660         DUMP(format("%1% c=%2% note %3% off @ %4%\n")
661                         % this % (int)chan % (int)note_num % time);
662         assert(note_num <= 127);
663         assert(chan < 16);
664         assert(_writing);
665         _edited = true;
666
667         if (_percussive) {
668                 DUMP("Sequence Ignoring note off (percussive mode)\n");
669                 return;
670         }
671
672         /* FIXME: make _write_notes fixed size (127 noted) for speed */
673
674         /* FIXME: note off velocity for that one guy out there who actually has
675          * keys that send it */
676
677         bool resolved = false;
678
679         for (WriteNotes::iterator n = _write_notes[chan].begin(); n
680                         != _write_notes[chan].end(); ++n) {
681                 Note<Time>& note = *_notes[*n].get();
682                 if (note.note() == note_num) {
683                         assert(time >= note.time());
684                         note.set_length(time - note.time());
685                         _write_notes[chan].erase(n);
686                         DUMP(format("resolved note, length: %1%\n") % note.length());
687                         resolved = true;
688                         break;
689                 }
690         }
691
692         if (!resolved) {
693                 cerr << this << " spurious note off chan " << (int)chan
694                                 << ", note " << (int)note_num << " @ " << time << endl;
695         }
696 }
697
698 template<typename Time>
699 void
700 Sequence<Time>::append_control_unlocked(const Parameter& param, Time time, double value)
701 {
702         DUMP(format("%1% %2% @ %3%\t=\t%4% # controls: %5%\n")
703                         % this % _type_map.to_symbol(param) % time % value % _controls.size());
704         boost::shared_ptr<Control> c = control(param, true);
705         c->list()->rt_add(time, value);
706 }
707
708 template<typename Time>
709 void
710 Sequence<Time>::append_sysex_unlocked(const MIDIEvent<Time>& ev)
711 {
712         #ifdef DEBUG_SEQUENCE
713         cerr << this << " SysEx @ " << ev.time() << " \t= \t [ " << hex;
714         for (size_t i=0; i < ev.size(); ++i) {
715                 cerr << int(ev.buffer()[i]) << " ";
716         } cerr << "]" << endl;
717         #endif
718
719         boost::shared_ptr<MIDIEvent<Time> > event(new MIDIEvent<Time>(ev, true));
720         _sysexes.push_back(event);
721 }
722
723 template<typename Time>
724 void
725 Sequence<Time>::add_note_unlocked(const boost::shared_ptr< Note<Time> > note)
726 {
727         DUMP(format("%1% add note %2% @ %3%\n") % this % (int)note->note() % note->time());
728         _edited = true;
729         typename Notes::iterator i = upper_bound(_notes.begin(), _notes.end(), note,
730                         note_time_comparator);
731         _notes.insert(i, note);
732 }
733
734 template<typename Time>
735 void
736 Sequence<Time>::remove_note_unlocked(const boost::shared_ptr< const Note<Time> > note)
737 {
738         _edited = true;
739         DUMP(format("%1% remove note %2% @ %3%\n") % this % (int)note->note() % note->time());
740         for (typename Notes::iterator n = _notes.begin(); n != _notes.end(); ++n) {
741                 if (*(*n) == *note) {
742                         _notes.erase(n);
743                         break;
744                 }
745         }
746 }
747
748 template class Sequence<double>;
749
750 } // namespace Evoral
751