* adjusted formatting a bit to style guide
[ardour.git] / libs / ardour / midi_model.cc
1 /*
2  Copyright (C) 2007 Paul Davis 
3  Written by Dave Robillard, 2007
4
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  GNU General Public License for more details.
14
15  You should have received a copy of the GNU General Public License
16  along with this program; if not, write to the Free Software
17  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19  */
20
21 #define __STDC_LIMIT_MACROS 1
22
23 #include <iostream>
24 #include <algorithm>
25 #include <stdexcept>
26 #include <stdint.h>
27 #include <pbd/enumwriter.h>
28 #include <midi++/events.h>
29
30 #include <ardour/midi_model.h>
31 #include <ardour/midi_source.h>
32 #include <ardour/types.h>
33 #include <ardour/session.h>
34
35 using namespace std;
36 using namespace ARDOUR;
37
38 void MidiModel::write_lock() {
39         _lock.writer_lock();
40         _automation_lock.lock();
41 }
42
43 void MidiModel::write_unlock() {
44         _lock.writer_unlock();
45         _automation_lock.unlock();
46 }
47
48 void MidiModel::read_lock() const {
49         _lock.reader_lock();
50         /*_automation_lock.lock();*/
51 }
52
53 void MidiModel::read_unlock() const {
54         _lock.reader_unlock();
55         /*_automation_lock.unlock();*/
56 }
57
58 // Read iterator (const_iterator)
59
60 MidiModel::const_iterator::const_iterator(const MidiModel& model, double t)
61         : _model(&model)
62         , _is_end( (t == DBL_MAX) || model.empty())
63         , _locked( !_is_end)
64 {
65         //cerr << "Created MIDI iterator @ " << t << " (is end: " << _is_end << ")" << endl;
66
67         if (_is_end)
68                 return;
69
70         model.read_lock();
71
72         _note_iter = model.notes().end();
73         // find first note which begins after t
74         for (MidiModel::Notes::const_iterator i = model.notes().begin(); i != model.notes().end(); ++i) {
75                 if ((*i)->time() >= t) {
76                         _note_iter = i;
77                         break;
78                 }
79         }
80
81         MidiControlIterator earliest_control(boost::shared_ptr<AutomationList>(), DBL_MAX, 0.0);
82
83         _control_iters.reserve(model.controls().size());
84         for (Automatable::Controls::const_iterator i = model.controls().begin();
85                         i != model.controls().end(); ++i) {
86
87                 assert(
88                         i->first.type() == MidiCCAutomation ||
89                         i->first.type() == MidiPgmChangeAutomation ||
90                         i->first.type() == MidiPitchBenderAutomation ||
91                         i->first.type() == MidiChannelAftertouchAutomation);
92
93                 double x, y;
94                 bool ret = i->second->list()->rt_safe_earliest_event_unlocked(t, DBL_MAX, x, y);
95                 if (!ret) {
96                         //cerr << "MIDI Iterator: CC " << i->first.id() << " (size " << i->second->list()->size()
97                         //      << ") has no events past " << t << endl;
98                         continue;
99                 }
100
101                 assert(x >= 0);
102                 assert(y >= i->first.min());
103                 assert(y <= i->first.max());
104
105                 const MidiControlIterator new_iter(i->second->list(), x, y);
106
107                 //cerr << "MIDI Iterator: CC " << i->first.id() << " added (" << x << ", " << y << ")" << endl;
108                 _control_iters.push_back(new_iter);
109
110                 if (x < earliest_control.x) {
111                         earliest_control = new_iter;
112                         _control_iter = _control_iters.end();
113                         --_control_iter;
114                 }
115         }
116
117         if (_note_iter != model.notes().end()) {
118                 _event = MIDI::Event((*_note_iter)->on_event(), false);
119                 _active_notes.push(*_note_iter);
120                 //cerr << " new const iterator: size active notes: " << _active_notes.size() << " is empty: " << _active_notes.empty() << endl;
121                 ++_note_iter;
122         }
123
124         if (earliest_control.automation_list.get() && earliest_control.x < _event.time()) {
125                 model.control_to_midi_event(_event, earliest_control);
126         } else {
127                 _control_iter = _control_iters.end();
128         }
129
130         if (_event.size() == 0) {
131                 //cerr << "Created MIDI iterator @ " << t << " is at end." << endl;
132                 _is_end = true;
133
134                 // FIXME: possible race condition here....
135                 if (_locked) {
136                         _model->read_unlock();
137                         _locked = false;
138                 }
139         } else {
140                 //printf("New MIDI Iterator = %X @ %lf\n", _event.type(), _event.time());
141         }
142 }
143
144 MidiModel::const_iterator::~const_iterator()
145 {
146         if (_locked) {
147                 _model->read_unlock();
148         }
149 }
150
151 const MidiModel::const_iterator& MidiModel::const_iterator::operator++()
152 {
153         if (_is_end) {
154                 throw std::logic_error("Attempt to iterate past end of MidiModel");
155         }
156
157         /*cerr << "const_iterator::operator++: _event type:" << hex << "0x" << int(_event.type()) 
158          << "   buffer: 0x" << int(_event.buffer()[0]) << " 0x" << int(_event.buffer()[1]) 
159          << " 0x" << int(_event.buffer()[2]) << endl;*/
160
161         if (! (_event.is_note() || _event.is_cc() || _event.is_pgm_change() || _event.is_pitch_bender() || _event.is_channel_aftertouch()) ) {
162                 cerr << "FAILED event buffer: " << hex << int(_event.buffer()[0]) << int(_event.buffer()[1]) << int(_event.buffer()[2]) << endl;
163         }
164         assert((_event.is_note() || _event.is_cc() || _event.is_pgm_change() || _event.is_pitch_bender() || _event.is_channel_aftertouch()));
165
166         // Increment past current control event
167         if (!_event.is_note() && _control_iter != _control_iters.end() && _control_iter->automation_list.get()) {
168                 double x = 0.0, y = 0.0;
169                 const bool ret = _control_iter->automation_list->rt_safe_earliest_event_unlocked(
170                                 _control_iter->x, DBL_MAX, x, y, false);
171                 //cerr << "control_iter x:" << _control_iter->x << " y:" << _control_iter->y << endl;
172
173                 if (ret) {
174                         cerr << "Incremented " << _control_iter->automation_list->parameter().id() << " to " << x << endl;
175                         _control_iter->x = x;
176                         _control_iter->y = y;
177                 } else {
178                         cerr << "Hit end of " << _control_iter->automation_list->parameter().id() << endl;
179                         _control_iter->automation_list.reset();
180                         _control_iter->x = DBL_MAX;
181                 }
182         }
183
184         // Now find and point at the earliest event
185
186         const std::vector<MidiControlIterator>::iterator old_control_iter = _control_iter;
187         _control_iter = _control_iters.begin();
188
189         for (std::vector<MidiControlIterator>::iterator i = _control_iters.begin();
190                         i != _control_iters.end(); ++i) {
191                 if (i->x < _control_iter->x) {
192                         _control_iter = i;
193                 }
194         }
195
196         enum Type {NIL, NOTE_ON, NOTE_OFF, AUTOMATION};
197
198         Type type = NIL;
199         double t = 0;
200
201         // Next earliest note on
202         if (_note_iter != _model->notes().end()) {
203                 type = NOTE_ON;
204                 t = (*_note_iter)->time();
205         }
206
207         // Use the next earliest note off iff it's earlier than the note on
208         if (_model->note_mode() == Sustained && (! _active_notes.empty())) {
209                 if (type == NIL || _active_notes.top()->end_time() <= (*_note_iter)->time()) {
210                         type = NOTE_OFF;
211                         t = _active_notes.top()->end_time();
212                 }
213         }
214
215         // Use the next earliest controller iff it's earlier than the note event
216         if (_control_iter != _control_iters.end()
217                         && _control_iter->x != DBL_MAX
218            )//&& _control_iter != old_control_iter)
219                 if (type == NIL || _control_iter->x < t)
220                         type = AUTOMATION;
221
222         if (type == NOTE_ON) {
223                 //cerr << "********** MIDI Iterator = note on" << endl;
224                 _event = MIDI::Event((*_note_iter)->on_event(), false);
225                 _active_notes.push(*_note_iter);
226                 ++_note_iter;
227         } else if (type == NOTE_OFF) {
228                 //cerr << "********** MIDI Iterator = note off" << endl;
229                 _event = MIDI::Event(_active_notes.top()->off_event(), false);
230                 _active_notes.pop();
231         } else if (type == AUTOMATION) {
232                 //cerr << "********** MIDI Iterator = Automation" << endl;
233                 _model->control_to_midi_event(_event, *_control_iter);
234         } else {
235                 //cerr << "********** MIDI Iterator = End" << endl;
236                 _is_end = true;
237         }
238
239         assert(_is_end || _event.size()> 0);
240
241         return *this;
242 }
243
244 bool MidiModel::const_iterator::operator==(const const_iterator& other) const
245 {
246         if (_is_end || other._is_end)
247                 return (_is_end == other._is_end);
248         else
249                 return (_event == other._event);
250 }
251
252 MidiModel::const_iterator& MidiModel::const_iterator::operator=(const const_iterator& other)
253 {
254         if (_locked && _model != other._model)
255                 _model->read_unlock();
256
257         assert( ! other._event.owns_buffer());
258
259         _model = other._model;
260         _event = other._event;
261         _active_notes = other._active_notes;
262         _is_end = other._is_end;
263         _locked = other._locked;
264         _note_iter = other._note_iter;
265         _control_iters = other._control_iters;
266         size_t index = other._control_iter - other._control_iters.begin();
267         _control_iter = _control_iters.begin() + index;
268
269         assert( !_event.owns_buffer() );
270
271         return *this;
272 }
273
274 // MidiModel
275
276 MidiModel::MidiModel(MidiSource *s, size_t size)
277         : Automatable(s->session(), "midi model")
278         , _notes(size)
279         , _note_mode(Sustained)
280         , _writing(false)
281         , _edited(false)
282         , _end_iter(*this, DBL_MAX)
283         , _next_read(UINT32_MAX)
284         , _read_iter(*this, DBL_MAX)
285         , _midi_source(s)
286 {
287         assert(_end_iter._is_end);
288         assert( ! _end_iter._locked);
289 }
290
291 /** Read events in frame range \a start .. \a start+cnt into \a dst,
292  * adding \a stamp_offset to each event's timestamp.
293  * \return number of events written to \a dst
294  */
295 size_t MidiModel::read(MidiRingBuffer& dst, nframes_t start, nframes_t nframes,
296                 nframes_t stamp_offset, nframes_t negative_stamp_offset) const
297 {
298         //cerr << this << " MM::read @ " << start << " frames: " << nframes << " -> " << stamp_offset << endl;
299         //cerr << this << " MM # notes: " << n_notes() << endl;
300
301         size_t read_events = 0;
302
303         if (start != _next_read) {
304                 _read_iter = const_iterator(*this, (double)start);
305                 //cerr << "Repositioning iterator from " << _next_read << " to " << start << endl;
306         } else {
307                 //cerr << "Using cached iterator at " << _next_read << endl;
308         }
309
310         _next_read = start + nframes;
311
312         while (_read_iter != end() && _read_iter->time() < start + nframes) {
313                 assert(_read_iter->size()> 0);
314                 dst.write(_read_iter->time() + stamp_offset - negative_stamp_offset,
315                                 _read_iter->size(), _read_iter->buffer());
316
317                 
318                  cerr << this << " MidiModel::read event @ " << _read_iter->time()  
319                  << " type: " << hex << int(_read_iter->type()) << dec 
320                  //<< " note: " << int(_read_iter->note()) 
321                  //<< " velocity: " << int(_read_iter->velocity()) 
322                  << endl;
323                  
324
325                 ++_read_iter;
326                 ++read_events;
327         }
328
329         return read_events;
330 }
331
332 bool MidiModel::control_to_midi_event(MIDI::Event& ev,
333                 const MidiControlIterator& iter) const
334 {
335         assert(iter.automation_list.get() != 0);
336         
337         switch (iter.automation_list->parameter().type()) {
338         case MidiCCAutomation:
339                 if (ev.size() < 3) {
340                         ev.set_buffer((Byte*)malloc(3), true);
341                 }
342
343                 assert(iter.automation_list);
344                 assert(iter.automation_list->parameter().channel() < 16);
345                 assert(iter.automation_list->parameter().id() <= INT8_MAX);
346                 assert(iter.y <= INT8_MAX);
347                 ev.buffer()[0] = MIDI_CMD_CONTROL + iter.automation_list->parameter().channel();
348                 ev.buffer()[1] = (Byte)iter.automation_list->parameter().id();
349                 ev.buffer()[2] = (Byte)iter.y;
350                 ev.time() = iter.x;
351                 ev.size() = 3;
352                 return true;
353
354         case MidiPgmChangeAutomation:
355                 if (ev.size() < 3) {
356                         ev.set_buffer((Byte*)malloc(3), true);
357                 }
358
359                 assert(iter.automation_list);
360                 assert(iter.automation_list->parameter().channel() < 16);
361                 assert(iter.automation_list->parameter().id() <= INT8_MAX);
362                 assert(iter.y <= INT8_MAX);
363                 ev.buffer()[0] = MIDI_CMD_PGM_CHANGE + iter.automation_list->parameter().channel();
364                 ev.buffer()[1] = (Byte)iter.y;
365                 ev.buffer()[2] = 0;
366                 ev.time() = iter.x;
367                 ev.size() = 3;
368                 return true;
369
370         case MidiPitchBenderAutomation:
371                 if (ev.size() < 3) {
372                         ev.set_buffer((Byte*)malloc(3), true);
373                 }
374
375                 assert(iter.automation_list);
376                 assert(iter.automation_list->parameter().channel() < 16);
377                 assert(iter.automation_list->parameter().id() <= INT8_MAX);
378                 assert(iter.y < (1<<14));
379                 ev.buffer()[0] = MIDI_CMD_BENDER + iter.automation_list->parameter().channel();
380                 ev.buffer()[1] = ((Byte)iter.y) & 0x7F; // LSB
381                 ev.buffer()[2] = (((Byte)iter.y) >> 7) & 0x7F; // MSB
382                 ev.time() = iter.x;
383                 ev.size() = 3;
384                 return true;
385
386         case MidiChannelAftertouchAutomation:
387                 if (ev.size() < 3) {
388                         ev.set_buffer((Byte*)malloc(3), true);
389                 }
390
391                 assert(iter.automation_list);
392                 assert(iter.automation_list->parameter().channel() < 16);
393                 assert(iter.automation_list->parameter().id() <= INT8_MAX);
394                 assert(iter.y <= INT8_MAX);
395                 ev.buffer()[0]
396                                 = MIDI_CMD_CHANNEL_PRESSURE + iter.automation_list->parameter().channel();
397                 ev.buffer()[1] = (Byte)iter.y;
398                 ev.buffer()[2] = 0;
399                 ev.time() = iter.x;
400                 ev.size() = 3;
401                 return true;
402
403         default:
404                 return false;
405         }
406 }
407
408
409 /** Clear all events from the model.
410  */
411 void MidiModel::clear()
412 {
413         _lock.writer_lock();
414         _notes.clear();
415         clear_automation();
416         _next_read = 0;
417         _read_iter = end();
418         _lock.writer_unlock();
419 }
420
421
422 /** Begin a write of events to the model.
423  *
424  * If \a mode is Sustained, complete notes with duration are constructed as note
425  * on/off events are received.  Otherwise (Percussive), only note on events are
426  * stored; note off events are discarded entirely and all contained notes will
427  * have duration 0.
428  */
429 void MidiModel::start_write()
430 {
431         //cerr << "MM " << this << " START WRITE, MODE = " << enum_2_string(_note_mode) << endl;
432         write_lock();
433         _writing = true;
434         for (int i = 0; i < 16; ++i)
435                 _write_notes[i].clear();
436         
437         _dirty_automations.clear();
438         write_unlock();
439 }
440
441 /** Finish a write of events to the model.
442  *
443  * If \a delete_stuck is true and the current mode is Sustained, note on events
444  * that were never resolved with a corresonding note off will be deleted.
445  * Otherwise they will remain as notes with duration 0.
446  */
447 void MidiModel::end_write(bool delete_stuck)
448 {
449         write_lock();
450         assert(_writing);
451
452         //cerr << "MM " << this << " END WRITE: " << _notes.size() << " NOTES\n";
453
454         if (_note_mode == Sustained && delete_stuck) {
455                 for (Notes::iterator n = _notes.begin(); n != _notes.end() ;) {
456                         if ((*n)->duration() == 0) {
457                                 cerr << "WARNING: Stuck note lost: " << (*n)->note() << endl;
458                                 n = _notes.erase(n);
459                                 // we have to break here because erase invalidates the iterator
460                                 break;
461                         } else {
462                                 ++n;
463                         }
464                 }
465         }
466
467         for (int i = 0; i < 16; ++i) {
468                 if (!_write_notes[i].empty()) {
469                         cerr << "WARNING: MidiModel::end_write: Channel " << i << " has "
470                                         << _write_notes[i].size() << " stuck notes" << endl;
471                 }
472                 _write_notes[i].clear();
473         }
474
475         for (AutomationLists::const_iterator i = _dirty_automations.begin(); i != _dirty_automations.end(); ++i) {
476                 (*i)->Dirty.emit();
477                 (*i)->lookup_cache().left = -1;
478                 (*i)->search_cache().left = -1;
479         }
480         
481         _writing = false;
482         write_unlock();
483 }
484
485 /** Append \a in_event to model.  NOT realtime safe.
486  *
487  * Timestamps of events in \a buf are expected to be relative to
488  * the start of this model (t=0) and MUST be monotonically increasing
489  * and MUST be >= the latest event currently in the model.
490  */
491 void MidiModel::append(const MIDI::Event& ev)
492 {
493         write_lock();
494         _edited = true;
495
496         cerr << "MidiModel append event type: "
497                 << hex << "0x" << (int)ev.type() << endl;
498
499         assert(_notes.empty() || ev.time() >= _notes.back()->time());
500         assert(_writing);
501
502         if (ev.is_note_on()) {
503                 append_note_on_unlocked(ev.channel(), ev.time(), ev.note(),
504                                 ev.velocity());
505         } else if (ev.is_note_off()) {
506                 append_note_off_unlocked(ev.channel(), ev.time(), ev.note());
507         } else if (ev.is_cc()) {
508                 append_automation_event_unlocked(MidiCCAutomation, ev.channel(),
509                                 ev.time(), ev.cc_number(), ev.cc_value());
510         } else if (ev.is_pgm_change()) {
511                 append_automation_event_unlocked(MidiPgmChangeAutomation, ev.channel(),
512                                 ev.time(), ev.pgm_number(), 0);
513         } else if (ev.is_pitch_bender()) {
514                 append_automation_event_unlocked(MidiPitchBenderAutomation,
515                                 ev.channel(), ev.time(), ev.pitch_bender_lsb(),
516                                 ev.pitch_bender_msb());
517         } else if (ev.is_channel_aftertouch()) {
518                 append_automation_event_unlocked(MidiChannelAftertouchAutomation,
519                                 ev.channel(), ev.time(), ev.channel_aftertouch(), 0);
520         } else {
521                 printf("WARNING: MidiModel: Unknown event type %X\n", ev.type());
522         }
523
524         write_unlock();
525 }
526
527 void MidiModel::append_note_on_unlocked(uint8_t chan, double time,
528                 uint8_t note_num, uint8_t velocity)
529 {
530         /*cerr << "MidiModel " << this << " chan " << (int)chan <<
531          " note " << (int)note_num << " on @ " << time << endl;*/
532
533         assert(chan < 16);
534         assert(_writing);
535         _edited = true;
536
537         boost::shared_ptr<Note> new_note(new Note(chan, time, 0, note_num, velocity));
538         _notes.push_back(new_note);
539         if (_note_mode == Sustained) {
540                 //cerr << "MM Sustained: Appending active note on " << (unsigned)(uint8_t)note_num << endl;
541                 _write_notes[chan].push_back(_notes.size() - 1);
542         }/* else {
543          cerr << "MM Percussive: NOT appending active note on" << endl;
544          }*/
545 }
546
547 void MidiModel::append_note_off_unlocked(uint8_t chan, double time,
548                 uint8_t note_num)
549 {
550         /*cerr << "MidiModel " << this << " chan " << (int)chan <<
551          " note " << (int)note_num << " off @ " << time << endl;*/
552
553         assert(chan < 16);
554         assert(_writing);
555         _edited = true;
556
557         if (_note_mode == Percussive) {
558                 cerr << "MidiModel Ignoring note off (percussive mode)" << endl;
559                 return;
560         }
561
562         /* FIXME: make _write_notes fixed size (127 noted) for speed */
563
564         /* FIXME: note off velocity for that one guy out there who actually has
565          * keys that send it */
566
567         bool resolved = false;
568
569         for (WriteNotes::iterator n = _write_notes[chan].begin(); n
570                         != _write_notes[chan].end(); ++n) {
571                 Note& note = *_notes[*n].get();
572                 //cerr << (unsigned)(uint8_t)note.note() << " ? " << (unsigned)note_num << endl;
573                 if (note.note() == note_num) {
574                         assert(time >= note.time());
575                         note.set_duration(time - note.time());
576                         _write_notes[chan].erase(n);
577                         //cerr << "MM resolved note, duration: " << note.duration() << endl;
578                         resolved = true;
579                         break;
580                 }
581         }
582
583         if (!resolved)
584                 cerr << "MidiModel " << this << " spurious note off chan " << (int)chan
585                                 << ", note " << (int)note_num << " @ " << time << endl;
586 }
587
588 void MidiModel::append_automation_event_unlocked(AutomationType type,
589                 uint8_t chan, double time, uint8_t first_byte, uint8_t second_byte)
590 {
591         //cerr << "MidiModel " << this << " chan " << (int)chan <<
592         //              " CC " << (int)number << " = " << (int)value << " @ " << time << endl;
593
594         assert(chan < 16);
595         assert(_writing);
596         _edited = true;
597         double value;
598
599         uint32_t id = 0;
600
601         switch (type) {
602         case MidiCCAutomation:
603                 id = first_byte;
604                 value = double(second_byte);
605                 break;
606         case MidiChannelAftertouchAutomation:
607         case MidiPgmChangeAutomation:
608                 id = 0;
609                 value = double(first_byte);
610                 break;
611         case MidiPitchBenderAutomation:
612                 id = 0;
613                 value = double((0x7F & second_byte) << 7 | (0x7F & first_byte));
614                 break;
615         default:
616                 assert(false);
617         }
618
619         Parameter param(type, id, chan);
620         boost::shared_ptr<AutomationControl> control = Automatable::control(param, true);
621         control->list()->fast_simple_add(time, value);
622         /*cerr << "control list size after fast simple add: " << control->list()->size() << endl;*/
623 }
624
625 void MidiModel::add_note_unlocked(const boost::shared_ptr<Note> note)
626 {
627         //cerr << "MidiModel " << this << " add note " << (int)note.note() << " @ " << note.time() << endl;
628         _edited = true;
629         Notes::iterator i = upper_bound(_notes.begin(), _notes.end(), note,
630                         note_time_comparator);
631         _notes.insert(i, note);
632 }
633
634 void MidiModel::remove_note_unlocked(const boost::shared_ptr<const Note> note)
635 {
636         _edited = true;
637         //cerr << "MidiModel " << this << " remove note " << (int)note.note() << " @ " << note.time() << endl;
638         for (Notes::iterator n = _notes.begin(); n != _notes.end(); ++n) {
639                 Note& _n = *(*n);
640                 const Note& _note = *note;
641                 // TODO: There is still the issue, that after restarting ardour
642                 // persisted undo does not work, because of rounding errors in the
643                 // event times after saving/restoring to/from MIDI files
644                 cerr << "======================================= " << endl;
645                 cerr << int(_n.note()) << "@" << int(_n.time()) << "[" << int(_n.channel()) << "] --" << int(_n.duration()) << "-- #" << int(_n.velocity()) << endl;
646                 cerr << int(_note.note()) << "@" << int(_note.time()) << "[" << int(_note.channel()) << "] --" << int(_note.duration()) << "-- #" << int(_note.velocity()) << endl;
647                 cerr << "Equal: " << bool(_n == _note) << endl;
648                 cerr << endl << endl;
649                 if (_n == _note) {
650                         _notes.erase(n);
651                         // we have to break here, because erase invalidates all iterators, ie. n itself
652                         break;
653                 }
654         }
655 }
656
657 /** Slow!  for debugging only. */
658 #ifndef NDEBUG
659 bool MidiModel::is_sorted() const {
660         bool t = 0;
661         for (Notes::const_iterator n = _notes.begin(); n != _notes.end(); ++n)
662                 if ((*n)->time() < t)
663                         return false;
664                 else
665                         t = (*n)->time();
666
667         return true;
668 }
669 #endif
670
671 /** Start a new command.
672  *
673  * This has no side-effects on the model or Session, the returned command
674  * can be held on to for as long as the caller wishes, or discarded without
675  * formality, until apply_command is called and ownership is taken.
676  */
677 MidiModel::DeltaCommand* MidiModel::new_delta_command(const string name)
678 {
679         DeltaCommand* cmd = new DeltaCommand(_midi_source->model(), name);
680         return cmd;
681 }
682
683 /** Apply a command.
684  *
685  * Ownership of cmd is taken, it must not be deleted by the caller.
686  * The command will constitute one item on the undo stack.
687  */
688 void MidiModel::apply_command(Command* cmd)
689 {
690         _session.begin_reversible_command(cmd->name());
691         (*cmd)();
692         assert(is_sorted());
693         _session.commit_reversible_command(cmd);
694         _edited = true;
695 }
696
697 // MidiEditCommand
698
699 MidiModel::DeltaCommand::DeltaCommand(boost::shared_ptr<MidiModel> m,
700                 const std::string& name)
701         : Command(name)
702         , _model(m)
703         , _name(name)
704 {
705 }
706
707 MidiModel::DeltaCommand::DeltaCommand(boost::shared_ptr<MidiModel> m,
708                 const XMLNode& node)
709         : _model(m)
710 {
711         set_state(node);
712 }
713
714 void MidiModel::DeltaCommand::add(const boost::shared_ptr<Note> note)
715 {
716         //cerr << "MEC: apply" << endl;
717         _removed_notes.remove(note);
718         _added_notes.push_back(note);
719 }
720
721 void MidiModel::DeltaCommand::remove(const boost::shared_ptr<Note> note)
722 {
723         //cerr << "MEC: remove" << endl;
724         _added_notes.remove(note);
725         _removed_notes.push_back(note);
726 }
727
728 void MidiModel::DeltaCommand::operator()()
729 {
730         // This could be made much faster by using a priority_queue for added and
731         // removed notes (or sort here), and doing a single iteration over _model
732
733         // Need to reset iterator to drop the read lock it holds, or we'll deadlock
734         const bool reset_iter = (_model->_read_iter.locked());
735         const double iter_time = _model->_read_iter->time();
736
737         if (reset_iter)
738                 _model->_read_iter = _model->end(); // drop read lock
739
740         assert( ! _model->_read_iter.locked());
741
742         _model->write_lock();
743
744         for (std::list< boost::shared_ptr<Note> >::iterator i = _added_notes.begin(); i != _added_notes.end(); ++i)
745                 _model->add_note_unlocked(*i);
746
747         for (std::list< boost::shared_ptr<Note> >::iterator i = _removed_notes.begin(); i != _removed_notes.end(); ++i)
748                 _model->remove_note_unlocked(*i);
749
750         _model->write_unlock();
751
752         if (reset_iter)
753         _model->_read_iter = const_iterator(*_model.get(), iter_time);
754
755         _model->ContentsChanged(); /* EMIT SIGNAL */
756 }
757
758 void MidiModel::DeltaCommand::undo()
759 {
760         // This could be made much faster by using a priority_queue for added and
761         // removed notes (or sort here), and doing a single iteration over _model
762
763         // Need to reset iterator to drop the read lock it holds, or we'll deadlock
764         const bool reset_iter = (_model->_read_iter.locked());
765         const double iter_time = _model->_read_iter->time();
766
767         if (reset_iter)
768                 _model->_read_iter = _model->end(); // drop read lock
769
770         assert( ! _model->_read_iter.locked());
771
772         _model->write_lock();
773
774         for (std::list< boost::shared_ptr<Note> >::iterator i = _added_notes.begin(); i
775                         != _added_notes.end(); ++i)
776                 _model->remove_note_unlocked(*i);
777
778         for (std::list< boost::shared_ptr<Note> >::iterator i =
779                         _removed_notes.begin(); i != _removed_notes.end(); ++i)
780                 _model->add_note_unlocked(*i);
781
782         _model->write_unlock();
783
784         if (reset_iter)
785                 _model->_read_iter = const_iterator(*_model.get(), iter_time);
786
787         _model->ContentsChanged(); /* EMIT SIGNAL */
788 }
789
790 XMLNode & MidiModel::DeltaCommand::marshal_note(const boost::shared_ptr<Note> note)
791 {
792         XMLNode *xml_note = new XMLNode("note");
793         ostringstream note_str(ios::ate);
794         note_str << int(note->note());
795         xml_note->add_property("note", note_str.str());
796
797         ostringstream channel_str(ios::ate);
798         channel_str << int(note->channel());
799         xml_note->add_property("channel", channel_str.str());
800
801         ostringstream time_str(ios::ate);
802         time_str << int(note->time());
803         xml_note->add_property("time", time_str.str());
804
805         ostringstream duration_str(ios::ate);
806         duration_str <<(unsigned int) note->duration();
807         xml_note->add_property("duration", duration_str.str());
808
809         ostringstream velocity_str(ios::ate);
810         velocity_str << (unsigned int) note->velocity();
811         xml_note->add_property("velocity", velocity_str.str());
812
813         return *xml_note;
814 }
815
816 boost::shared_ptr<Note> MidiModel::DeltaCommand::unmarshal_note(XMLNode *xml_note)
817 {
818         unsigned int note;
819         istringstream note_str(xml_note->property("note")->value());
820         note_str >> note;
821
822         unsigned int channel;
823         istringstream channel_str(xml_note->property("channel")->value());
824         channel_str >> channel;
825
826         unsigned int time;
827         istringstream time_str(xml_note->property("time")->value());
828         time_str >> time;
829
830         unsigned int duration;
831         istringstream duration_str(xml_note->property("duration")->value());
832         duration_str >> duration;
833
834         unsigned int velocity;
835         istringstream velocity_str(xml_note->property("velocity")->value());
836         velocity_str >> velocity;
837
838         boost::shared_ptr<Note> note_ptr(new Note(channel, time, duration, note, velocity));
839         return note_ptr;
840 }
841
842 #define ADDED_NOTES_ELEMENT "added_notes"
843 #define REMOVED_NOTES_ELEMENT "removed_notes"
844 #define DELTA_COMMAND_ELEMENT "DeltaCommand"
845
846 int MidiModel::DeltaCommand::set_state(const XMLNode& delta_command)
847 {
848         if (delta_command.name() != string(DELTA_COMMAND_ELEMENT)) {
849                 return 1;
850         }
851
852         _added_notes.clear();
853         XMLNode *added_notes = delta_command.child(ADDED_NOTES_ELEMENT);
854         XMLNodeList notes = added_notes->children();
855         transform(notes.begin(), notes.end(), back_inserter(_added_notes),
856                         sigc::mem_fun(*this, &DeltaCommand::unmarshal_note));
857
858         _removed_notes.clear();
859         XMLNode *removed_notes = delta_command.child(REMOVED_NOTES_ELEMENT);
860         notes = removed_notes->children();
861         transform(notes.begin(), notes.end(), back_inserter(_removed_notes),
862                         sigc::mem_fun(*this, &DeltaCommand::unmarshal_note));
863
864         return 0;
865 }
866
867 XMLNode& MidiModel::DeltaCommand::get_state()
868 {
869         XMLNode *delta_command = new XMLNode(DELTA_COMMAND_ELEMENT);
870         delta_command->add_property("midi_source", _model->midi_source()->id().to_s());
871
872         XMLNode *added_notes = delta_command->add_child(ADDED_NOTES_ELEMENT);
873         for_each(_added_notes.begin(), _added_notes.end(), sigc::compose(
874                         sigc::mem_fun(*added_notes, &XMLNode::add_child_nocopy),
875                         sigc::mem_fun(*this, &DeltaCommand::marshal_note)));
876
877         XMLNode *removed_notes = delta_command->add_child(REMOVED_NOTES_ELEMENT);
878         for_each(_removed_notes.begin(), _removed_notes.end(), sigc::compose(
879                         sigc::mem_fun(*removed_notes, &XMLNode::add_child_nocopy),
880                         sigc::mem_fun(*this, &DeltaCommand::marshal_note)));
881
882         return *delta_command;
883 }
884
885 struct EventTimeComparator {
886         typedef const MIDI::Event* value_type;
887         inline bool operator()(const MIDI::Event* a, const MIDI::Event* b) const {
888                 return a->time() >= b->time();
889         }
890 };
891
892 /** Write the model to a MidiSource (i.e. save the model).
893  * This is different from manually using read to write to a source in that
894  * note off events are written regardless of the track mode.  This is so the
895  * user can switch a recorded track (with note durations from some instrument)
896  * to percussive, save, reload, then switch it back to sustained without
897  * destroying the original note durations.
898  */
899 bool MidiModel::write_to(boost::shared_ptr<MidiSource> source)
900 {
901         read_lock();
902
903         const NoteMode old_note_mode = _note_mode;
904         _note_mode = Sustained;
905         
906         for (const_iterator i = begin(); i != end(); ++i) {
907                 source->append_event_unlocked(Frames, *i);
908         }
909                 
910         _note_mode = old_note_mode;
911         
912         read_unlock();
913         _edited = false;
914
915         return true;
916 }
917
918 XMLNode& MidiModel::get_state()
919 {
920         XMLNode *node = new XMLNode("MidiModel");
921         return *node;
922 }
923