fix linked midi-regions on different tracks #6541
[ardour.git] / libs / ardour / midi_source.cc
1 /*
2     Copyright (C) 2006 Paul Davis
3     Author: David Robillard
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 #include <sys/stat.h>
21 #include <unistd.h>
22 #include <fcntl.h>
23 #include <float.h>
24 #include <cerrno>
25 #include <ctime>
26 #include <cmath>
27 #include <iomanip>
28 #include <algorithm>
29
30 #include <glibmm/fileutils.h>
31 #include <glibmm/miscutils.h>
32
33 #include "pbd/xml++.h"
34 #include "pbd/pthread_utils.h"
35 #include "pbd/basename.h"
36
37 #include "evoral/Control.hpp"
38 #include "evoral/EventSink.hpp"
39
40 #include "ardour/debug.h"
41 #include "ardour/file_source.h"
42 #include "ardour/midi_channel_filter.h"
43 #include "ardour/midi_model.h"
44 #include "ardour/midi_source.h"
45 #include "ardour/midi_state_tracker.h"
46 #include "ardour/session.h"
47 #include "ardour/session_directory.h"
48 #include "ardour/source_factory.h"
49
50 #include "i18n.h"
51
52 namespace ARDOUR { template <typename T> class MidiRingBuffer; }
53
54 using namespace std;
55 using namespace ARDOUR;
56 using namespace PBD;
57
58 PBD::Signal1<void,MidiSource*> MidiSource::MidiSourceCreated;
59
60 MidiSource::MidiSource (Session& s, string name, Source::Flag flags)
61         : Source(s, DataType::MIDI, name, flags)
62         , _writing(false)
63         , _model_iter_valid(false)
64         , _length_beats(0.0)
65         , _last_read_end(0)
66         , _capture_length(0)
67         , _capture_loop_length(0)
68 {
69 }
70
71 MidiSource::MidiSource (Session& s, const XMLNode& node)
72         : Source(s, node)
73         , _writing(false)
74         , _model_iter_valid(false)
75         , _length_beats(0.0)
76         , _last_read_end(0)
77         , _capture_length(0)
78         , _capture_loop_length(0)
79 {
80         if (set_state (node, Stateful::loading_state_version)) {
81                 throw failed_constructor();
82         }
83 }
84
85 MidiSource::~MidiSource ()
86 {
87 }
88
89 XMLNode&
90 MidiSource::get_state ()
91 {
92         XMLNode& node (Source::get_state());
93
94         if (_captured_for.length()) {
95                 node.add_property ("captured-for", _captured_for);
96         }
97
98         for (InterpolationStyleMap::const_iterator i = _interpolation_style.begin(); i != _interpolation_style.end(); ++i) {
99                 XMLNode* child = node.add_child (X_("InterpolationStyle"));
100                 child->add_property (X_("parameter"), EventTypeMap::instance().to_symbol (i->first));
101                 child->add_property (X_("style"), enum_2_string (i->second));
102         }
103
104         for (AutomationStateMap::const_iterator i = _automation_state.begin(); i != _automation_state.end(); ++i) {
105                 XMLNode* child = node.add_child (X_("AutomationState"));
106                 child->add_property (X_("parameter"), EventTypeMap::instance().to_symbol (i->first));
107                 child->add_property (X_("state"), enum_2_string (i->second));
108         }
109
110         return node;
111 }
112
113 int
114 MidiSource::set_state (const XMLNode& node, int /*version*/)
115 {
116         const XMLProperty* prop;
117         if ((prop = node.property ("captured-for")) != 0) {
118                 _captured_for = prop->value();
119         }
120
121         XMLNodeList children = node.children ();
122         for (XMLNodeConstIterator i = children.begin(); i != children.end(); ++i) {
123                 if ((*i)->name() == X_("InterpolationStyle")) {
124                         if ((prop = (*i)->property (X_("parameter"))) == 0) {
125                                 error << _("Missing parameter property on InterpolationStyle") << endmsg;
126                                 return -1;
127                         }
128                         Evoral::Parameter p = EventTypeMap::instance().from_symbol (prop->value());
129
130                         if ((prop = (*i)->property (X_("style"))) == 0) {
131                                 error << _("Missing style property on InterpolationStyle") << endmsg;
132                                 return -1;
133                         }
134                         Evoral::ControlList::InterpolationStyle s = static_cast<Evoral::ControlList::InterpolationStyle>(
135                                 string_2_enum (prop->value(), s));
136                         set_interpolation_of (p, s);
137
138                 } else if ((*i)->name() == X_("AutomationState")) {
139                         if ((prop = (*i)->property (X_("parameter"))) == 0) {
140                                 error << _("Missing parameter property on AutomationState") << endmsg;
141                                 return -1;
142                         }
143                         Evoral::Parameter p = EventTypeMap::instance().from_symbol (prop->value());
144
145                         if ((prop = (*i)->property (X_("state"))) == 0) {
146                                 error << _("Missing state property on AutomationState") << endmsg;
147                                 return -1;
148                         }
149                         AutoState s = static_cast<AutoState> (string_2_enum (prop->value(), s));
150                         set_automation_state_of (p, s);
151                 }
152         }
153
154         return 0;
155 }
156
157 bool
158 MidiSource::empty () const
159 {
160         return !_length_beats;
161 }
162
163 framecnt_t
164 MidiSource::length (framepos_t pos) const
165 {
166         if (!_length_beats) {
167                 return 0;
168         }
169
170         BeatsFramesConverter converter(_session.tempo_map(), pos);
171         return converter.to(_length_beats);
172 }
173
174 void
175 MidiSource::update_length (framecnt_t)
176 {
177         // You're not the boss of me!
178 }
179
180 void
181 MidiSource::invalidate (const Lock& lock, std::set<Evoral::Sequence<Evoral::Beats>::WeakNotePtr>* notes)
182 {
183         _model_iter_valid = false;
184         _model_iter.invalidate(notes);
185 }
186
187 framecnt_t
188 MidiSource::midi_read (const Lock&                        lm,
189                        Evoral::EventSink<framepos_t>&     dst,
190                        framepos_t                         source_start,
191                        framepos_t                         start,
192                        framecnt_t                         cnt,
193                        MidiStateTracker*                  tracker,
194                        MidiChannelFilter*                 filter,
195                        const std::set<Evoral::Parameter>& filtered) const
196 {
197         BeatsFramesConverter converter(_session.tempo_map(), source_start);
198
199         DEBUG_TRACE (DEBUG::MidiSourceIO,
200                      string_compose ("MidiSource::midi_read() %5 sstart %1 start %2 cnt %3 tracker %4\n",
201                                      source_start, start, cnt, tracker, name()));
202
203         if (_model) {
204                 // Find appropriate model iterator
205                 Evoral::Sequence<Evoral::Beats>::const_iterator& i = _model_iter;
206                 const bool linear_read = _last_read_end != 0 && start == _last_read_end;
207                 if (!linear_read || !_model_iter_valid) {
208 #if 0
209                         // Cached iterator is invalid, search for the first event past start
210                         i = _model->begin(converter.from(start), false, filtered,
211                                           linear_read ? &_model->active_notes() : NULL);
212                         _model_iter_valid = true;
213                         if (!linear_read) {
214                                 _model->active_notes().clear();
215                         }
216 #else
217                         /* hot-fix http://tracker.ardour.org/view.php?id=6541
218                          * "parallel playback of linked midi regions -> no note-offs"
219                          *
220                          * A midi source can be used by multiple tracks simultaneously,
221                          * in which case midi_read() can called from different tracks for
222                          * overlapping time-ranges.
223                          *
224                          * However there is only a single iterator for a given midi-source.
225                          * this results in every midi_read() performing a seek.
226                          *
227                          * if seeking is performed with
228                          *    _model->begin(converter.from(start),...)
229                          * the model is used for seeking. That method seeks to the first
230                          * *note-on* event after 'start'.
231                          *
232                          * _model->begin(conveter.from(  ) ,..) eventually calls
233                          * Sequence<Time>::const_iterator() in libs/evoral/src/Sequence.cpp
234                          * which looks up the note-event via seq.note_lower_bound(t);
235                          * but the sequence 'seq' only contains note-on events(!).
236                          * note-off events are implicit in Sequence<Time>::operator++()
237                          * via _active_notes.pop(); and not part of seq.
238                          *
239                          * see also http://tracker.ardour.org/view.php?id=6287#c16671
240                          * and call 1-900-ardour-midi ($4.99/min)
241                          *
242                          * The linear search below assures that reading starts at the first
243                          * event for the given time, regardless of its event-type.
244                          */
245                         for (i = _model->begin(); i != _model->end(); ++i) {
246                                 const framecnt_t time_frames = converter.to(i->time());
247                                 if (time_frames >= start) {
248                                         break;
249                                 }
250                         }
251                         _model_iter_valid = true;
252 #endif
253                 }
254
255                 _last_read_end = start + cnt;
256
257                 // Copy events in [start, start + cnt) into dst
258                 for (; i != _model->end(); ++i) {
259                         const framecnt_t time_frames = converter.to(i->time());
260                         if (time_frames < start + cnt) {
261                                 if (filter && filter->filter(i->buffer(), i->size())) {
262                                         DEBUG_TRACE (DEBUG::MidiSourceIO,
263                                                      string_compose ("%1: filter event @ %2 type %3 size %4\n",
264                                                                      _name, time_frames + source_start, i->event_type(), i->size()));
265                                         continue;
266                                 }
267
268                                 // Offset by source start to convert event time to session time
269                                 dst.write (time_frames + source_start, i->event_type(), i->size(), i->buffer());
270
271                                 DEBUG_TRACE (DEBUG::MidiSourceIO,
272                                              string_compose ("%1: add event @ %2 type %3 size %4\n",
273                                                              _name, time_frames + source_start, i->event_type(), i->size()));
274
275                                 if (tracker) {
276                                         tracker->track (*i);
277                                 }
278                         } else {
279                                 DEBUG_TRACE (DEBUG::MidiSourceIO,
280                                              string_compose ("%1: reached end with event @ %2 vs. %3\n",
281                                                              _name, time_frames, start+cnt));
282                                 break;
283                         }
284                 }
285                 return cnt;
286         } else {
287                 return read_unlocked (lm, dst, source_start, start, cnt, tracker, filter);
288         }
289 }
290
291 framecnt_t
292 MidiSource::midi_write (const Lock&                 lm,
293                         MidiRingBuffer<framepos_t>& source,
294                         framepos_t                  source_start,
295                         framecnt_t                  cnt)
296 {
297         const framecnt_t ret = write_unlocked (lm, source, source_start, cnt);
298
299         if (cnt == max_framecnt) {
300                 _last_read_end = 0;
301                 invalidate(lm);
302         } else {
303                 _capture_length += cnt;
304         }
305
306         return ret;
307 }
308
309 void
310 MidiSource::mark_streaming_midi_write_started (const Lock& lock, NoteMode mode)
311 {
312         if (_model) {
313                 _model->set_note_mode (mode);
314                 _model->start_write ();
315         }
316
317         _writing = true;
318 }
319
320 void
321 MidiSource::mark_write_starting_now (framecnt_t position,
322                                      framecnt_t capture_length,
323                                      framecnt_t loop_length)
324 {
325         /* I'm not sure if this is the best way to approach this, but
326            _capture_length needs to be set up with the transport frame
327            when a record actually starts, as it is used by
328            SMFSource::write_unlocked to decide whether incoming notes
329            are within the correct time range.
330            mark_streaming_midi_write_started (perhaps a more logical
331            place to do this) is not called at exactly the time when
332            record starts, and I don't think it necessarily can be
333            because it is not RT-safe.
334         */
335
336         set_timeline_position(position);
337         _capture_length      = capture_length;
338         _capture_loop_length = loop_length;
339
340         BeatsFramesConverter converter(_session.tempo_map(), position);
341         _length_beats = converter.from(capture_length);
342 }
343
344 void
345 MidiSource::mark_streaming_write_started (const Lock& lock)
346 {
347         NoteMode note_mode = _model ? _model->note_mode() : Sustained;
348         mark_streaming_midi_write_started (lock, note_mode);
349 }
350
351 void
352 MidiSource::mark_midi_streaming_write_completed (const Lock&                                      lock,
353                                                  Evoral::Sequence<Evoral::Beats>::StuckNoteOption option,
354                                                  Evoral::Beats                                    end)
355 {
356         if (_model) {
357                 _model->end_write (option, end);
358
359                 /* Make captured controls discrete to play back user input exactly. */
360                 for (MidiModel::Controls::iterator i = _model->controls().begin(); i != _model->controls().end(); ++i) {
361                         if (i->second->list()) {
362                                 i->second->list()->set_interpolation(Evoral::ControlList::Discrete);
363                                 _interpolation_style.insert(std::make_pair(i->second->parameter(), Evoral::ControlList::Discrete));
364                         }
365                 }
366         }
367
368         invalidate(lock);
369         _writing = false;
370 }
371
372 void
373 MidiSource::mark_streaming_write_completed (const Lock& lock)
374 {
375         mark_midi_streaming_write_completed (lock, Evoral::Sequence<Evoral::Beats>::DeleteStuckNotes);
376 }
377
378 int
379 MidiSource::write_to (const Lock& lock, boost::shared_ptr<MidiSource> newsrc, Evoral::Beats begin, Evoral::Beats end)
380 {
381         Lock newsrc_lock (newsrc->mutex ());
382
383         newsrc->set_timeline_position (_timeline_position);
384         newsrc->copy_interpolation_from (this);
385         newsrc->copy_automation_state_from (this);
386
387         if (_model) {
388                 if (begin == Evoral::MinBeats && end == Evoral::MaxBeats) {
389                         _model->write_to (newsrc, newsrc_lock);
390                 } else {
391                         _model->write_section_to (newsrc, newsrc_lock, begin, end);
392                 }
393         } else {
394                 error << string_compose (_("programming error: %1"), X_("no model for MidiSource during ::clone()"));
395                 return -1;
396         }
397
398         newsrc->flush_midi(newsrc_lock);
399
400         /* force a reload of the model if the range is partial */
401
402         if (begin != Evoral::MinBeats || end != Evoral::MaxBeats) {
403                 newsrc->load_model (newsrc_lock, true);
404         } else {
405                 newsrc->set_model (newsrc_lock, _model);
406         }
407
408         /* this file is not removable (but since it is MIDI, it is mutable) */
409
410         boost::dynamic_pointer_cast<FileSource> (newsrc)->prevent_deletion ();
411
412         return 0;
413 }
414
415 void
416 MidiSource::session_saved()
417 {
418         Lock lm (_lock);
419
420         /* this writes a copy of the data to disk.
421            XXX do we need to do this every time?
422         */
423
424         if (_model && _model->edited()) {
425                 /* The model is edited, write its contents into the current source
426                    file (overwiting previous contents). */
427
428                 /* Temporarily drop our reference to the model so that as the model
429                    pushes its current state to us, we don't try to update it. */
430                 boost::shared_ptr<MidiModel> mm = _model;
431                 _model.reset ();
432
433                 /* Flush model contents to disk. */
434                 mm->sync_to_source (lm);
435
436                 /* Reacquire model. */
437                 _model = mm;
438
439         } else {
440                 flush_midi(lm);
441         }
442 }
443
444 void
445 MidiSource::set_note_mode(const Lock& lock, NoteMode mode)
446 {
447         if (_model) {
448                 _model->set_note_mode(mode);
449         }
450 }
451
452 void
453 MidiSource::drop_model (const Lock& lock)
454 {
455         _model.reset();
456         invalidate(lock);
457         ModelChanged (); /* EMIT SIGNAL */
458 }
459
460 void
461 MidiSource::set_model (const Lock& lock, boost::shared_ptr<MidiModel> m)
462 {
463         _model = m;
464         invalidate(lock);
465         ModelChanged (); /* EMIT SIGNAL */
466 }
467
468 Evoral::ControlList::InterpolationStyle
469 MidiSource::interpolation_of (Evoral::Parameter p) const
470 {
471         InterpolationStyleMap::const_iterator i = _interpolation_style.find (p);
472         if (i == _interpolation_style.end()) {
473                 return EventTypeMap::instance().interpolation_of (p);
474         }
475
476         return i->second;
477 }
478
479 AutoState
480 MidiSource::automation_state_of (Evoral::Parameter p) const
481 {
482         AutomationStateMap::const_iterator i = _automation_state.find (p);
483         if (i == _automation_state.end()) {
484                 /* default to `play', otherwise if MIDI is recorded /
485                    imported with controllers etc. they are by default
486                    not played back, which is a little surprising.
487                 */
488                 return Play;
489         }
490
491         return i->second;
492 }
493
494 /** Set interpolation style to be used for a given parameter.  This change will be
495  *  propagated to anyone who needs to know.
496  */
497 void
498 MidiSource::set_interpolation_of (Evoral::Parameter p, Evoral::ControlList::InterpolationStyle s)
499 {
500         if (interpolation_of (p) == s) {
501                 return;
502         }
503
504         if (EventTypeMap::instance().interpolation_of (p) == s) {
505                 /* interpolation type is being set to the default, so we don't need a note in our map */
506                 _interpolation_style.erase (p);
507         } else {
508                 _interpolation_style[p] = s;
509         }
510
511         InterpolationChanged (p, s); /* EMIT SIGNAL */
512 }
513
514 void
515 MidiSource::set_automation_state_of (Evoral::Parameter p, AutoState s)
516 {
517         if (automation_state_of (p) == s) {
518                 return;
519         }
520
521         if (s == Play) {
522                 /* automation state is being set to the default, so we don't need a note in our map */
523                 _automation_state.erase (p);
524         } else {
525                 _automation_state[p] = s;
526         }
527
528         AutomationStateChanged (p, s); /* EMIT SIGNAL */
529 }
530
531 void
532 MidiSource::copy_interpolation_from (boost::shared_ptr<MidiSource> s)
533 {
534         copy_interpolation_from (s.get ());
535 }
536
537 void
538 MidiSource::copy_automation_state_from (boost::shared_ptr<MidiSource> s)
539 {
540         copy_automation_state_from (s.get ());
541 }
542
543 void
544 MidiSource::copy_interpolation_from (MidiSource* s)
545 {
546         _interpolation_style = s->_interpolation_style;
547
548         /* XXX: should probably emit signals here */
549 }
550
551 void
552 MidiSource::copy_automation_state_from (MidiSource* s)
553 {
554         _automation_state = s->_automation_state;
555
556         /* XXX: should probably emit signals here */
557 }