Maintain correct tracker state on MIDI overwrite.
[ardour.git] / libs / ardour / midi_region.cc
1 /*
2     Copyright (C) 2000-2006 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id: midiregion.cc 746 2006-08-02 02:44:23Z drobilla $
19 */
20
21 #include <cmath>
22 #include <climits>
23 #include <cfloat>
24
25 #include <set>
26
27 #include <glibmm/threads.h>
28 #include <glibmm/fileutils.h>
29 #include <glibmm/miscutils.h>
30
31 #include "evoral/types.hpp"
32
33 #include "pbd/xml++.h"
34 #include "pbd/basename.h"
35
36 #include "ardour/automation_control.h"
37 #include "ardour/midi_model.h"
38 #include "ardour/midi_region.h"
39 #include "ardour/midi_ring_buffer.h"
40 #include "ardour/midi_source.h"
41 #include "ardour/region_factory.h"
42 #include "ardour/session.h"
43 #include "ardour/source_factory.h"
44 #include "ardour/tempo.h"
45 #include "ardour/types.h"
46
47 #include "i18n.h"
48 #include <locale.h>
49
50 using namespace std;
51 using namespace ARDOUR;
52 using namespace PBD;
53
54 namespace ARDOUR {
55         namespace Properties {
56                 PBD::PropertyDescriptor<void*>                midi_data;
57                 PBD::PropertyDescriptor<Evoral::MusicalTime>  start_beats;
58                 PBD::PropertyDescriptor<Evoral::MusicalTime>  length_beats;
59         }
60 }
61
62 void
63 MidiRegion::make_property_quarks ()
64 {
65         Properties::midi_data.property_id = g_quark_from_static_string (X_("midi-data"));
66         DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for midi-data = %1\n", Properties::midi_data.property_id));
67         Properties::start_beats.property_id = g_quark_from_static_string (X_("start-beats"));
68         DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for start-beats = %1\n", Properties::start_beats.property_id));
69         Properties::length_beats.property_id = g_quark_from_static_string (X_("length-beats"));
70         DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for length-beats = %1\n", Properties::length_beats.property_id));
71 }
72
73 void
74 MidiRegion::register_properties ()
75 {
76         add_property (_start_beats);
77         add_property (_length_beats);
78 }
79
80 /* Basic MidiRegion constructor (many channels) */
81 MidiRegion::MidiRegion (const SourceList& srcs)
82         : Region (srcs)
83         , _start_beats (Properties::start_beats, Evoral::MusicalTime())
84         , _length_beats (Properties::length_beats, midi_source(0)->length_beats())
85 {
86         register_properties ();
87
88         midi_source(0)->ModelChanged.connect_same_thread (_source_connection, boost::bind (&MidiRegion::model_changed, this));
89         model_changed ();
90         assert(_name.val().find("/") == string::npos);
91         assert(_type == DataType::MIDI);
92 }
93
94 MidiRegion::MidiRegion (boost::shared_ptr<const MidiRegion> other)
95         : Region (other)
96         , _start_beats (Properties::start_beats, other->_start_beats)
97         , _length_beats (Properties::length_beats, Evoral::MusicalTime())
98 {
99         update_length_beats ();
100         register_properties ();
101
102         assert(_name.val().find("/") == string::npos);
103         midi_source(0)->ModelChanged.connect_same_thread (_source_connection, boost::bind (&MidiRegion::model_changed, this));
104         model_changed ();
105 }
106
107 /** Create a new MidiRegion that is part of an existing one */
108 MidiRegion::MidiRegion (boost::shared_ptr<const MidiRegion> other, frameoffset_t offset)
109         : Region (other, offset)
110         , _start_beats (Properties::start_beats, Evoral::MusicalTime())
111         , _length_beats (Properties::length_beats, Evoral::MusicalTime())
112 {
113         BeatsFramesConverter bfc (_session.tempo_map(), _position);
114         Evoral::MusicalTime const offset_beats = bfc.from (offset);
115
116         _start_beats  = other->_start_beats.val() + offset_beats;
117         _length_beats = other->_length_beats.val() - offset_beats;
118
119         register_properties ();
120
121         assert(_name.val().find("/") == string::npos);
122         midi_source(0)->ModelChanged.connect_same_thread (_source_connection, boost::bind (&MidiRegion::model_changed, this));
123         model_changed ();
124 }
125
126 MidiRegion::~MidiRegion ()
127 {
128 }
129
130 /** Create a new MidiRegion that has its own version of some/all of the Source used by another.
131  */
132 boost::shared_ptr<MidiRegion>
133 MidiRegion::clone (string path) const
134 {
135         boost::shared_ptr<MidiSource> newsrc;
136
137         /* caller must check for pre-existing file */
138         assert (!path.empty());
139         assert (!Glib::file_test (path, Glib::FILE_TEST_EXISTS));
140         newsrc = boost::dynamic_pointer_cast<MidiSource>(
141                 SourceFactory::createWritable(DataType::MIDI, _session,
142                                               path, false, _session.frame_rate()));
143         return clone (newsrc);
144 }
145
146 boost::shared_ptr<MidiRegion>
147 MidiRegion::clone (boost::shared_ptr<MidiSource> newsrc) const
148 {
149         BeatsFramesConverter bfc (_session.tempo_map(), _position);
150         Evoral::MusicalTime const bbegin = bfc.from (_start);
151         Evoral::MusicalTime const bend = bfc.from (_start + _length);
152
153         {
154                 Source::Lock lm(newsrc->mutex());
155                 if (midi_source(0)->write_to (lm, newsrc, bbegin, bend)) {
156                         return boost::shared_ptr<MidiRegion> ();
157                 }
158         }
159
160         PropertyList plist;
161
162         plist.add (Properties::name, PBD::basename_nosuffix (newsrc->name()));
163         plist.add (Properties::whole_file, true);
164         plist.add (Properties::start, _start);
165         plist.add (Properties::start_beats, _start_beats);
166         plist.add (Properties::length, _length);
167         plist.add (Properties::length_beats, _length_beats);
168         plist.add (Properties::layer, 0);
169
170         return boost::dynamic_pointer_cast<MidiRegion> (RegionFactory::create (newsrc, plist, true));
171 }
172
173 void
174 MidiRegion::post_set (const PropertyChange& pc)
175 {
176         Region::post_set (pc);
177
178         if (pc.contains (Properties::length) && !pc.contains (Properties::length_beats)) {
179                 update_length_beats ();
180         } else if (pc.contains (Properties::start) && !pc.contains (Properties::start_beats)) {
181                 set_start_beats_from_start_frames ();
182         }
183 }
184
185 void
186 MidiRegion::set_start_beats_from_start_frames ()
187 {
188         BeatsFramesConverter c (_session.tempo_map(), _position - _start);
189         _start_beats = c.from (_start);
190 }
191
192 void
193 MidiRegion::set_length_internal (framecnt_t len)
194 {
195         Region::set_length_internal (len);
196         update_length_beats ();
197 }
198
199 void
200 MidiRegion::update_after_tempo_map_change ()
201 {
202         Region::update_after_tempo_map_change ();
203
204         /* _position has now been updated for the new tempo map */
205         _start = _position - _session.tempo_map().framepos_minus_beats (_position, _start_beats);
206
207         send_change (Properties::start);
208 }
209
210 void
211 MidiRegion::update_length_beats ()
212 {
213         BeatsFramesConverter converter (_session.tempo_map(), _position);
214         _length_beats = converter.from (_length);
215 }
216
217 void
218 MidiRegion::set_position_internal (framepos_t pos, bool allow_bbt_recompute)
219 {
220         Region::set_position_internal (pos, allow_bbt_recompute);
221         /* zero length regions don't exist - so if _length_beats is zero, this object
222            is under construction.
223         */
224         if (_length_beats.val() == Evoral::MusicalTime()) {
225                 /* leave _length_beats alone, and change _length to reflect the state of things
226                    at the new position (tempo map may dictate a different number of frames
227                 */
228                 BeatsFramesConverter converter (_session.tempo_map(), _position);
229                 Region::set_length_internal (converter.to (_length_beats));
230         }
231 }
232
233 framecnt_t
234 MidiRegion::read_at (Evoral::EventSink<framepos_t>& out, framepos_t position, framecnt_t dur, uint32_t chan_n, NoteMode mode, MidiStateTracker* tracker) const
235 {
236         return _read_at (_sources, out, position, dur, chan_n, mode, tracker);
237 }
238
239 framecnt_t
240 MidiRegion::master_read_at (MidiRingBuffer<framepos_t>& out, framepos_t position, framecnt_t dur, uint32_t chan_n, NoteMode mode) const
241 {
242         return _read_at (_master_sources, out, position, dur, chan_n, mode); /* no tracker */
243 }
244
245 framecnt_t
246 MidiRegion::_read_at (const SourceList& /*srcs*/, Evoral::EventSink<framepos_t>& dst, framepos_t position, framecnt_t dur, uint32_t chan_n,
247                       NoteMode mode, MidiStateTracker* tracker) const
248 {
249         frameoffset_t internal_offset = 0;
250         framecnt_t to_read         = 0;
251
252         /* precondition: caller has verified that we cover the desired section */
253
254         assert(chan_n == 0);
255
256         if (muted()) {
257                 return 0; /* read nothing */
258         }
259
260         if (position < _position) {
261                 /* we are starting the read from before the start of the region */
262                 internal_offset = 0;
263                 dur -= _position - position;
264         } else {
265                 /* we are starting the read from after the start of the region */
266                 internal_offset = position - _position;
267         }
268
269         if (internal_offset >= _length) {
270                 return 0; /* read nothing */
271         }
272
273         if ((to_read = min (dur, _length - internal_offset)) == 0) {
274                 return 0; /* read nothing */
275         }
276
277         boost::shared_ptr<MidiSource> src = midi_source(chan_n);
278
279         Glib::Threads::Mutex::Lock lm(src->mutex());
280
281         src->set_note_mode(lm, mode);
282
283         /*
284           cerr << "MR " << name () << " read @ " << position << " * " << to_read
285           << " _position = " << _position
286           << " _start = " << _start
287           << " intoffset = " << internal_offset
288           << endl;
289         */
290
291         /* This call reads events from a source and writes them to `dst' timed in session frames */
292
293         if (src->midi_read (
294                     lm, // source lock
295                         dst, // destination buffer
296                         _position - _start, // start position of the source in session frames
297                         _start + internal_offset, // where to start reading in the source
298                         to_read, // read duration in frames
299                         tracker,
300                         _filtered_parameters
301                     ) != to_read) {
302                 return 0; /* "read nothing" */
303         }
304
305         return to_read;
306 }
307
308 XMLNode&
309 MidiRegion::state ()
310 {
311         return Region::state ();
312 }
313
314 int
315 MidiRegion::set_state (const XMLNode& node, int version)
316 {
317         int ret = Region::set_state (node, version);
318
319         if (ret == 0) {
320                 update_length_beats ();
321         }
322
323         return ret;
324 }
325
326 void
327 MidiRegion::recompute_at_end ()
328 {
329         /* our length has changed
330          * so what? stuck notes are dealt with via a note state tracker
331          */
332 }
333
334 void
335 MidiRegion::recompute_at_start ()
336 {
337         /* as above, but the shift was from the front
338          * maybe bump currently active note's note-ons up so they sound here?
339          * that could be undesireable in certain situations though.. maybe
340          * remove the note entirely, including it's note off?  something needs to
341          * be done to keep the played MIDI sane to avoid messing up voices of
342          * polyhonic things etc........
343          */
344 }
345
346 int
347 MidiRegion::separate_by_channel (ARDOUR::Session&, vector< boost::shared_ptr<Region> >&) const
348 {
349         // TODO
350         return -1;
351 }
352
353 boost::shared_ptr<Evoral::Control>
354 MidiRegion::control (const Evoral::Parameter& id, bool create)
355 {
356         return model()->control(id, create);
357 }
358
359 boost::shared_ptr<const Evoral::Control>
360 MidiRegion::control (const Evoral::Parameter& id) const
361 {
362         return model()->control(id);
363 }
364
365 boost::shared_ptr<MidiModel>
366 MidiRegion::model()
367 {
368         return midi_source()->model();
369 }
370
371 boost::shared_ptr<const MidiModel>
372 MidiRegion::model() const
373 {
374         return midi_source()->model();
375 }
376
377 boost::shared_ptr<MidiSource>
378 MidiRegion::midi_source (uint32_t n) const
379 {
380         // Guaranteed to succeed (use a static cast?)
381         return boost::dynamic_pointer_cast<MidiSource>(source(n));
382 }
383
384 void
385 MidiRegion::model_changed ()
386 {
387         if (!model()) {
388                 return;
389         }
390
391         /* build list of filtered Parameters, being those whose automation state is not `Play' */
392
393         _filtered_parameters.clear ();
394
395         Automatable::Controls const & c = model()->controls();
396
397         for (Automatable::Controls::const_iterator i = c.begin(); i != c.end(); ++i) {
398                 boost::shared_ptr<AutomationControl> ac = boost::dynamic_pointer_cast<AutomationControl> (i->second);
399                 assert (ac);
400                 if (ac->alist()->automation_state() != Play) {
401                         _filtered_parameters.insert (ac->parameter ());
402                 }
403         }
404
405         /* watch for changes to controls' AutoState */
406         midi_source()->AutomationStateChanged.connect_same_thread (
407                 _model_connection, boost::bind (&MidiRegion::model_automation_state_changed, this, _1)
408                 );
409
410         model()->ContentsChanged.connect_same_thread (
411                 _model_contents_connection, boost::bind (&MidiRegion::model_contents_changed, this));
412 }
413
414 void
415 MidiRegion::model_contents_changed ()
416 {
417         {
418                 /* Invalidate source iterator to force reading new contents even if the
419                    calls to read progress linearly. */
420                 Glib::Threads::Mutex::Lock lm (midi_source(0)->mutex());
421                 midi_source(0)->invalidate (lm);
422         }
423         send_change (PropertyChange (Properties::midi_data));
424 }
425
426 void
427 MidiRegion::model_automation_state_changed (Evoral::Parameter const & p)
428 {
429         /* Update our filtered parameters list after a change to a parameter's AutoState */
430
431         boost::shared_ptr<AutomationControl> ac = model()->automation_control (p);
432         if (!ac || ac->alist()->automation_state() == Play) {
433                 /* It should be "impossible" for ac to be NULL, but if it is, don't
434                    filter the parameter so events aren't lost. */
435                 _filtered_parameters.erase (p);
436         } else {
437                 _filtered_parameters.insert (p);
438         }
439
440         /* the source will have an iterator into the model, and that iterator will have been set up
441            for a given set of filtered_parameters, so now that we've changed that list we must invalidate
442            the iterator.
443         */
444         Glib::Threads::Mutex::Lock lm (midi_source(0)->mutex());
445         midi_source(0)->invalidate (lm);
446 }
447
448 /** This is called when a trim drag has resulted in a -ve _start time for this region.
449  *  Fix it up by adding some empty space to the source.
450  */
451 void
452 MidiRegion::fix_negative_start ()
453 {
454         BeatsFramesConverter c (_session.tempo_map(), _position);
455
456         model()->insert_silence_at_start (c.from (-_start));
457         _start = 0;
458         _start_beats = Evoral::MusicalTime();
459 }
460
461 /** Transpose the notes in this region by a given number of semitones */
462 void
463 MidiRegion::transpose (int semitones)
464 {
465         BeatsFramesConverter c (_session.tempo_map(), _start);
466         model()->transpose (c.from (_start), c.from (_start + _length), semitones);
467 }
468
469 void
470 MidiRegion::set_start_internal (framecnt_t s)
471 {
472         Region::set_start_internal (s);
473         set_start_beats_from_start_frames ();
474 }