e8dfab24bf2d4b46acae0f1fcc2109f45bb3da5d
[ardour.git] / libs / ardour / smf_source.cc
1 /*
2     Copyright (C) 2006 Paul Davis
3         Written by Dave Robillard, 2006
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 #include <vector>
22
23 #include <sys/time.h>
24 #include <sys/stat.h>
25 #include <unistd.h>
26 #include <errno.h>
27
28 #include "pbd/mountpoint.h"
29 #include "pbd/pathscanner.h"
30 #include "pbd/stl_delete.h"
31 #include "pbd/strsplit.h"
32
33 #include <glibmm/miscutils.h>
34
35 #include "evoral/Control.hpp"
36
37 #include "ardour/audioengine.h"
38 #include "ardour/event_type_map.h"
39 #include "ardour/midi_model.h"
40 #include "ardour/midi_ring_buffer.h"
41 #include "ardour/midi_state_tracker.h"
42 #include "ardour/session.h"
43 #include "ardour/smf_source.h"
44 #include "ardour/debug.h"
45
46 #include "i18n.h"
47
48 using namespace ARDOUR;
49 using namespace Glib;
50 using namespace PBD;
51
52 /** Constructor used for new internal-to-session files.  File cannot exist. */
53 SMFSource::SMFSource (Session& s, const string& path, Source::Flag flags)
54         : Source(s, DataType::MIDI, path, flags)
55         , MidiSource(s, path, flags)
56         , FileSource(s, DataType::MIDI, path, string(), flags)
57         , Evoral::SMF()
58         , _last_ev_time_beats(0.0)
59         , _last_ev_time_frames(0)
60         , _smf_last_read_end (0)
61         , _smf_last_read_time (0)
62 {
63         /* note that origin remains empty */
64
65         if (init(_path, false)) {
66                 throw failed_constructor ();
67         }
68         
69         /* file is not opened until write */
70 }
71
72 /** Constructor used for existing internal-to-session files. */
73 SMFSource::SMFSource (Session& s, const XMLNode& node, bool must_exist)
74         : Source(s, node)
75         , MidiSource(s, node)
76         , FileSource(s, node, must_exist)
77         , _last_ev_time_beats(0.0)
78         , _last_ev_time_frames(0)
79         , _smf_last_read_end (0)
80         , _smf_last_read_time (0)
81 {
82         if (set_state(node, Stateful::loading_state_version)) {
83                 throw failed_constructor ();
84         }
85
86         if (init(_path, true)) {
87                 throw failed_constructor ();
88         }
89
90         if (open(_path)) {
91                 throw failed_constructor ();
92         }
93
94         _open = true;
95 }
96
97 SMFSource::~SMFSource ()
98 {
99         if (removable()) {
100                 unlink (_path.c_str());
101         }
102 }
103
104 int
105 SMFSource::open_for_write ()
106 {
107         if (create (_path)) {
108                 return -1;
109         } 
110         _open = true;
111         return 0;
112 }
113
114 /** All stamps in audio frames */
115 framecnt_t
116 SMFSource::read_unlocked (Evoral::EventSink<framepos_t>& destination, framepos_t const source_start,
117                           framepos_t start, framecnt_t duration,
118                           MidiStateTracker* tracker) const
119 {
120         int      ret  = 0;
121         uint64_t time = 0; // in SMF ticks, 1 tick per _ppqn
122
123         if (writable() && !_open) {
124                 /* nothing to read since nothing has ben written */
125                 return duration;
126         }
127
128         DEBUG_TRACE (DEBUG::MidiSourceIO, string_compose ("SMF read_unlocked: start %1 duration %2\n", start, duration));
129
130         _read_data_count = 0;
131
132         // Output parameters for read_event (which will allocate scratch in buffer as needed)
133         uint32_t ev_delta_t = 0;
134         uint32_t ev_type    = 0;
135         uint32_t ev_size    = 0;
136         uint8_t* ev_buffer  = 0;
137
138         size_t scratch_size = 0; // keep track of scratch to minimize reallocs
139
140         BeatsFramesConverter converter(_session.tempo_map(), source_start);
141
142         const uint64_t start_ticks = (uint64_t)(converter.from(start) * ppqn());
143         DEBUG_TRACE (DEBUG::MidiSourceIO, string_compose ("SMF read_unlocked: start in ticks %1\n", start_ticks));
144
145         if (_smf_last_read_end == 0 || start != _smf_last_read_end) {
146                 DEBUG_TRACE (DEBUG::MidiSourceIO, string_compose ("SMF read_unlocked: seek to %1\n", start));
147                 Evoral::SMF::seek_to_start();
148                 while (time < start_ticks) {
149                         gint ignored;
150
151                         ret = read_event(&ev_delta_t, &ev_size, &ev_buffer, &ignored);
152                         if (ret == -1) { // EOF
153                                 _smf_last_read_end = start + duration;
154                                 return duration;
155                         }
156                         time += ev_delta_t; // accumulate delta time
157                 }
158         } else {
159                 DEBUG_TRACE (DEBUG::MidiSourceIO, string_compose ("SMF read_unlocked: set time to %1\n", _smf_last_read_time));
160                 time = _smf_last_read_time;
161         }
162
163         _smf_last_read_end = start + duration;
164
165         while (true) {
166                 gint ignored; /* XXX don't ignore note id's ??*/
167
168                 ret = read_event(&ev_delta_t, &ev_size, &ev_buffer, &ignored);
169                 if (ret == -1) { // EOF
170                         break;
171                 }
172
173                 time += ev_delta_t; // accumulate delta time
174                 _smf_last_read_time = time;
175
176                 if (ret == 0) { // meta-event (skipped, just accumulate time)
177                         continue;
178                 }
179
180                 ev_type = EventTypeMap::instance().midi_event_type(ev_buffer[0]);
181
182                 DEBUG_TRACE (DEBUG::MidiSourceIO, string_compose ("SMF read_unlocked delta %1, time %2, buf[0] %3, type %4\n",
183                                                                   ev_delta_t, time, ev_buffer[0], ev_type));
184
185                 assert(time >= start_ticks);
186
187                 /* Note that we add on the source start time (in session frames) here so that ev_frame_time
188                    is in session frames.
189                 */
190                 const framepos_t ev_frame_time = converter.to(time / (double)ppqn()) + source_start;
191
192                 if (ev_frame_time < start + duration) {
193                         destination.write (ev_frame_time, ev_type, ev_size, ev_buffer);
194
195                         if (tracker) {
196                                 if (ev_buffer[0] & MIDI_CMD_NOTE_ON) {
197                                         tracker->add (ev_buffer[1], ev_buffer[0] & 0xf);
198                                 } else if (ev_buffer[0] & MIDI_CMD_NOTE_OFF) {
199                                         tracker->remove (ev_buffer[1], ev_buffer[0] & 0xf);
200                                 }
201                         }
202                 } else {
203                         break;
204                 }
205
206                 _read_data_count += ev_size;
207
208                 if (ev_size > scratch_size) {
209                         scratch_size = ev_size;
210                 }
211                 ev_size = scratch_size; // ensure read_event only allocates if necessary
212         }
213
214         return duration;
215 }
216
217 /** Write data to this source from a MidiRingBuffer.
218  *  @param source Buffer to read from.
219  *  @param position This source's start position in session frames.
220  */
221 framecnt_t
222 SMFSource::write_unlocked (MidiRingBuffer<framepos_t>& source, framepos_t position, framecnt_t duration)
223 {
224         if (!_writing) {
225                 mark_streaming_write_started ();
226         }
227
228         _write_data_count = 0;
229
230         framepos_t        time;
231         Evoral::EventType type;
232         uint32_t          size;
233
234         size_t   buf_capacity = 4;
235         uint8_t* buf          = (uint8_t*)malloc(buf_capacity);
236
237         if (_model && ! _model->writing()) {
238                 _model->start_write();
239         }
240
241         Evoral::MIDIEvent<framepos_t> ev;
242
243         while (true) {
244                 bool ret = source.peek ((uint8_t*)&time, sizeof (time));
245                 if (!ret || time > _last_write_end + duration) {
246                         break;
247                 }
248
249                 ret = source.read_prefix(&time, &type, &size);
250                 if (!ret) {
251                         cerr << "ERROR: Unable to read event prefix, corrupt MIDI ring buffer" << endl;
252                         break;
253                 }
254
255                 if (size > buf_capacity) {
256                         buf_capacity = size;
257                         buf = (uint8_t*)realloc(buf, size);
258                 }
259
260                 ret = source.read_contents(size, buf);
261                 if (!ret) {
262                         cerr << "ERROR: Read time/size but not buffer, corrupt MIDI ring buffer" << endl;
263                         break;
264                 }
265
266                 /* convert from session time to time relative to the source start */
267                 assert(time >= position);
268                 time -= position;
269
270                 ev.set(buf, size, time);
271                 ev.set_event_type(EventTypeMap::instance().midi_event_type(ev.buffer()[0]));
272                 ev.set_id (Evoral::next_event_id());
273
274                 if (!(ev.is_channel_event() || ev.is_smf_meta_event() || ev.is_sysex())) {
275                         /*cerr << "SMFSource: WARNING: caller tried to write non SMF-Event of type "
276                                         << std::hex << int(ev.buffer()[0]) << endl;*/
277                         continue;
278                 }
279
280                 append_event_unlocked_frames(ev, position);
281         }
282
283         Evoral::SMF::flush();
284         free(buf);
285
286         return duration;
287 }
288
289
290 /** Append an event with a timestamp in beats (double) */
291 void
292 SMFSource::append_event_unlocked_beats (const Evoral::Event<double>& ev)
293 {
294         assert(_writing);
295         if (ev.size() == 0)  {
296                 return;
297         }
298         
299         /* printf("SMFSource: %s - append_event_unlocked_beats ID = %d time = %lf, size = %u, data = ",
300                name().c_str(), ev.id(), ev.time(), ev.size());
301            for (size_t i = 0; i < ev.size(); ++i) printf("%X ", ev.buffer()[i]); printf("\n");*/
302
303         assert(ev.time() >= 0);
304         if (ev.time() < _last_ev_time_beats) {
305                 cerr << "SMFSource: Warning: Skipping event with non-monotonic time" << endl;
306                 return;
307         }
308
309         Evoral::event_id_t event_id;
310
311         if (ev.id() < 0) {
312                 event_id  = Evoral::next_event_id();
313         } else {
314                 event_id = ev.id();
315         }
316
317         if (_model) {
318                 _model->append (ev, event_id);
319         }
320
321         _length_beats = max(_length_beats, ev.time());
322
323         const double delta_time_beats   = ev.time() - _last_ev_time_beats;
324         const uint32_t delta_time_ticks = (uint32_t)lrint(delta_time_beats * (double)ppqn());
325
326         Evoral::SMF::append_event_delta(delta_time_ticks, ev.size(), ev.buffer(), event_id);
327         _last_ev_time_beats = ev.time();
328
329         _write_data_count += ev.size();
330
331 }
332
333 /** Append an event with a timestamp in frames (framepos_t) */
334 void
335 SMFSource::append_event_unlocked_frames (const Evoral::Event<framepos_t>& ev, framepos_t position)
336 {
337         assert(_writing);
338         if (ev.size() == 0)  {
339                 return;
340         }
341
342         /* printf("SMFSource: %s - append_event_unlocked_frames ID = %d time = %u, size = %u, data = ",
343                name().c_str(), ev.id(), ev.time(), ev.size());
344            for (size_t i=0; i < ev.size(); ++i) printf("%X ", ev.buffer()[i]); printf("\n");*/
345
346         if (ev.time() < _last_ev_time_frames) {
347                 cerr << "SMFSource: Warning: Skipping event with non-monotonic time" << endl;
348                 return;
349         }
350
351         BeatsFramesConverter converter(_session.tempo_map(), position);
352         const double ev_time_beats = converter.from(ev.time());
353         Evoral::event_id_t event_id;
354
355         if (ev.id() < 0) {
356                 event_id  = Evoral::next_event_id();
357         } else {
358                 event_id = ev.id();
359         }
360
361         if (_model) {
362                 const Evoral::Event<double> beat_ev (ev.event_type(), 
363                                                      ev_time_beats, 
364                                                      ev.size(), 
365                                                      (uint8_t*)ev.buffer());
366                 _model->append (beat_ev, event_id);
367         } 
368
369         _length_beats = max(_length_beats, ev_time_beats);
370
371         const framepos_t delta_time_frames = ev.time() - _last_ev_time_frames;
372         const double     delta_time_beats  = converter.from(delta_time_frames);
373         const uint32_t   delta_time_ticks  = (uint32_t)(lrint(delta_time_beats * (double)ppqn()));
374
375         Evoral::SMF::append_event_delta(delta_time_ticks, ev.size(), ev.buffer(), event_id);
376         _last_ev_time_frames = ev.time();
377
378         _write_data_count += ev.size();
379
380 }
381
382 XMLNode&
383 SMFSource::get_state ()
384 {
385         XMLNode& node = MidiSource::get_state();
386         node.add_property (X_("origin"), _origin);
387         return node;
388 }
389
390 int
391 SMFSource::set_state (const XMLNode& node, int version)
392 {
393         if (Source::set_state (node, version)) {
394                 return -1;
395         }
396
397         if (MidiSource::set_state (node, version)) {
398                 return -1;
399         }
400
401         if (FileSource::set_state (node, version)) {
402                 return -1;
403         }
404
405         return 0;
406 }
407
408 void
409 SMFSource::mark_streaming_midi_write_started (NoteMode mode)
410 {
411         /* CALLER MUST HOLD LOCK */
412
413         if (!_open && open_for_write()) {
414                 error << string_compose (_("cannot open MIDI file %1 for write"), _path) << endmsg;
415                 /* XXX should probably throw or return something */
416                 return; 
417         }
418
419         MidiSource::mark_streaming_midi_write_started (mode);
420         Evoral::SMF::begin_write ();
421         _last_ev_time_beats = 0.0;
422         _last_ev_time_frames = 0;
423 }
424
425 void
426 SMFSource::mark_streaming_write_completed ()
427 {
428         Glib::Mutex::Lock lm (_lock);
429         MidiSource::mark_streaming_write_completed();
430
431         if (!writable()) {
432                 return;
433         }
434
435         if (_model) {
436                 _model->set_edited(false);
437         }
438         
439         Evoral::SMF::end_write ();
440
441         /* data in the file now, not removable */
442
443         mark_nonremovable (); 
444 }
445
446 bool
447 SMFSource::safe_midi_file_extension (const string& file)
448 {
449         return (file.rfind(".mid") != string::npos);
450 }
451
452 void
453 SMFSource::load_model (bool lock, bool force_reload)
454 {
455         if (_writing) {
456                 return;
457         }
458
459         boost::shared_ptr<Glib::Mutex::Lock> lm;
460         if (lock)
461                 lm = boost::shared_ptr<Glib::Mutex::Lock>(new Glib::Mutex::Lock(_lock));
462
463         if (_model && !force_reload) {
464                 return;
465         }
466
467         if (!_model) {
468                 _model = boost::shared_ptr<MidiModel> (new MidiModel (shared_from_this ()));
469         } else {
470                 _model->clear();
471         }
472
473         if (writable() && !_open) {
474                 return;
475         }
476
477         _model->start_write();
478         Evoral::SMF::seek_to_start();
479
480         uint64_t time = 0; /* in SMF ticks */
481         Evoral::Event<double> ev;
482
483         size_t scratch_size = 0; // keep track of scratch and minimize reallocs
484
485         uint32_t delta_t = 0;
486         uint32_t size    = 0;
487         uint8_t* buf     = NULL;
488         int ret;
489         gint event_id;
490         bool have_event_id = false;
491
492         while ((ret = read_event (&delta_t, &size, &buf, &event_id)) >= 0) {
493
494                 time += delta_t;
495                 
496                 if (ret == 0) {
497
498                         /* meta-event : did we get an event ID ?
499                          */
500
501                         if (event_id >= 0) {
502                                 have_event_id = true;
503                         }
504
505                         continue;
506                 } 
507                         
508                 if (ret > 0) { 
509
510                         /* not a meta-event */
511
512                         ev.set (buf, size, time / (double)ppqn());
513                         ev.set_event_type(EventTypeMap::instance().midi_event_type(buf[0]));
514
515                         if (!have_event_id) {
516                                 event_id = Evoral::next_event_id();   
517                         }
518 #ifndef NDEBUG
519                         std::string ss;
520                         
521                         for (uint32_t xx = 0; xx < size; ++xx) {
522                                 char b[8];
523                                 snprintf (b, sizeof (b), "0x%x ", buf[xx]);
524                                 ss += b;
525                         }
526
527                         DEBUG_TRACE (DEBUG::MidiSourceIO, string_compose ("SMF %6 load model delta %1, time %2, size %3 buf %4, type %5\n",
528                                                                           delta_t, time, size, ss , ev.event_type(), name()));
529 #endif
530                         
531                         _model->append (ev, event_id);
532
533                         if (ev.size() > scratch_size) {
534                                 scratch_size = ev.size();
535                         }
536                         
537                         ev.size() = scratch_size; // ensure read_event only allocates if necessary
538                         
539                         _length_beats = max(_length_beats, ev.time());
540                 }
541
542                 /* event ID's must immediately precede the event they are for
543                  */
544                    
545                 have_event_id = false;
546         }
547
548         _model->end_write(false);
549         _model->set_edited(false);
550
551         _model_iter = _model->begin();
552
553         free(buf);
554 }
555
556 void
557 SMFSource::destroy_model ()
558 {
559         //cerr << _name << " destroying model " << _model.get() << endl;
560         _model.reset();
561 }
562
563 void
564 SMFSource::flush_midi ()
565 {
566         if (!writable() || (writable() && !_open)) {
567                 return;
568         }
569
570         Evoral::SMF::end_write();
571         /* data in the file means its no longer removable */
572         mark_nonremovable (); 
573 }
574
575 void
576 SMFSource::set_path (const string& p)
577 {
578         FileSource::set_path (p);
579         SMF::set_path (_path);
580 }