Fix several MIDI timestamp related problems:
[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 <ardour/smf_source.h>
36 #include <ardour/session.h>
37 #include <ardour/midi_ring_buffer.h>
38 #include <ardour/midi_util.h>
39 #include <ardour/tempo.h>
40 #include <ardour/audioengine.h>
41
42 #include "i18n.h"
43
44 using namespace ARDOUR;
45
46 string SMFSource::_search_path;
47
48 /*sigc::signal<void,struct tm*, time_t> SMFSource::HeaderPositionOffsetChanged;
49 bool                                  SMFSource::header_position_negative;
50 uint64_t                              SMFSource::header_position_offset;
51 */
52
53 SMFSource::SMFSource (Session& s, std::string path, Flag flags)
54         : MidiSource (s, region_name_from_path(path, false))
55         , _channel(0)
56         , _flags (Flag(flags | Writable)) // FIXME: this needs to be writable for now
57         , _allow_remove_if_empty(true)
58         , _fd (0)
59         , _last_ev_time(0)
60         , _track_size(4) // 4 bytes for the ever-present EOT event
61         , _header_size(22)
62 {
63         /* constructor used for new internal-to-session files. file cannot exist */
64
65         if (init (path, false)) {
66                 throw failed_constructor ();
67         }
68         
69         if (open()) {
70                 throw failed_constructor ();
71         }
72
73         //cerr << "SMF Source path: " << path << endl;
74         
75         assert(_name.find("/") == string::npos);
76 }
77
78 SMFSource::SMFSource (Session& s, const XMLNode& node)
79         : MidiSource (s, node)
80         , _channel(0)
81         , _flags (Flag (Writable|CanRename))
82         , _allow_remove_if_empty(true)
83         , _fd (0)
84         , _last_ev_time(0)
85         , _track_size(4) // 4 bytes for the ever-present EOT event
86         , _header_size(22)
87 {
88         /* constructor used for existing internal-to-session files. file must exist */
89
90         if (set_state (node)) {
91                 throw failed_constructor ();
92         }
93         
94         if (init (_name, true)) {
95                 throw failed_constructor ();
96         }
97         
98         if (open()) {
99                 throw failed_constructor ();
100         }
101         
102         //cerr << "SMF Source name: " << _name << endl;
103         
104         assert(_name.find("/") == string::npos);
105 }
106
107 SMFSource::~SMFSource ()
108 {
109         if (removable()) {
110                 unlink (_path.c_str());
111         }
112 }
113
114 bool
115 SMFSource::removable () const
116 {
117         return (_flags & Removable) && ((_flags & RemoveAtDestroy) || 
118                                       ((_flags & RemovableIfEmpty) && is_empty()));
119 }
120
121 int
122 SMFSource::init (string pathstr, bool must_exist)
123 {
124         bool is_new = false;
125
126         if (!find (pathstr, must_exist, is_new)) {
127                 cerr << "cannot find " << pathstr << " with me = " << must_exist << endl;
128                 return -1;
129         }
130
131         if (is_new && must_exist) {
132                 return -1;
133         }
134
135         assert(_name.find("/") == string::npos);
136         return 0;
137 }
138
139 int
140 SMFSource::open()
141 {
142         //cerr << "Opening SMF file " << path() << " writeable: " << writable() << endl;
143
144         assert(writable()); // FIXME;
145
146         _fd = fopen(path().c_str(), "r+");
147
148         // File already exists
149         if (_fd) {
150                 fseek(_fd, _header_size - 4, 0);
151                 uint32_t track_size_be = 0;
152                 fread(&track_size_be, 4, 1, _fd);
153                 _track_size = GUINT32_FROM_BE(track_size_be);
154                 //cerr << "SMF - read track size " << _track_size << endl;
155
156         // We're making a new file
157         } else {
158                 _fd = fopen(path().c_str(), "w+");
159                 _track_size = 4;
160
161                 // Write a tentative header just to pad things out so writing happens in the right spot
162                 flush_header();
163                 write_footer();
164                 seek_to_end();
165         }
166
167         return (_fd == 0) ? -1 : 0;
168 }
169
170 void
171 SMFSource::seek_to_end()
172 {
173         fseek(_fd, -4, SEEK_END);
174 }
175
176 int
177 SMFSource::flush_header ()
178 {
179         // FIXME: write timeline position somehow?
180         
181         //cerr << "SMF Flushing header\n";
182
183         assert(_fd);
184
185         const uint16_t type     = GUINT16_TO_BE(0);     // SMF Type 0 (single track)
186         const uint16_t ntracks  = GUINT16_TO_BE(1);     // Number of tracks (always 1 for Type 0)
187         const uint16_t division = GUINT16_TO_BE(_ppqn); // Pulses per beat
188
189         char data[6];
190         memcpy(data, &type, 2);
191         memcpy(data+2, &ntracks, 2);
192         memcpy(data+4, &division, 2);
193
194         _fd = freopen(path().c_str(), "r+", _fd);
195         assert(_fd);
196         fseek(_fd, 0, 0);
197         write_chunk("MThd", 6, data);
198         //if (_track_size > 0) {
199                 write_chunk_header("MTrk", _track_size); 
200         //}
201
202         fflush(_fd);
203
204         return 0;
205 }
206
207 int
208 SMFSource::flush_footer()
209 {
210         seek_to_end();
211         write_footer();
212         seek_to_end();
213
214         return 0;
215 }
216
217 void
218 SMFSource::write_footer()
219 {
220         //cerr << "SMF " << name() << " writing EOT at byte " << ftell(_fd) << endl;
221         
222         write_var_len(0);
223         char eot[3] = { 0xFF, 0x2F, 0x00 }; // end-of-track meta-event
224         fwrite(eot, 1, 3, _fd);
225         fflush(_fd);
226 }
227
228 /** Returns the offset of the first event in the file with a time past @a start,
229  * relative to the start of the source.
230  *
231  * Returns -1 if not found.
232  */
233 /*
234 long
235 SMFSource::find_first_event_after(nframes_t start)
236 {
237         // FIXME: obviously this is slooow
238         
239         fseek(_fd, _header_size, 0);
240
241         while ( ! feof(_fd) ) {
242                 const uint32_t delta_time = read_var_len();
243
244                 if (delta_time > start)
245                         return delta_time;
246         }
247
248         return -1;
249 }
250 */
251
252 /** Read an event from the current position in file.
253  *
254  * File position MUST be at the beginning of a delta time, or this will die very messily.
255  * ev.buffer must be of size ev.size, and large enough for the event.  The returned event
256  * will have it's time field set to it's delta time, in SMF tempo-based ticks, using the
257  * rate given by ppqn() (it is the caller's responsibility to calculate a real time).
258  *
259  * \a size should be the capacity of \a buf.  If it is not large enough, \a buf will
260  * be freed and a new buffer allocated in its place, the size of which will be placed
261  * in size.
262  *
263  * Returns event length (including status byte) on success, 0 if event was
264  * skipped (eg a meta event), or -1 on EOF (or end of track).
265  */
266 int
267 SMFSource::read_event(uint32_t* delta_t, uint32_t* size, Byte** buf) const
268 {
269         if (feof(_fd)) {
270                 return -1;
271         }
272
273         assert(delta_t);
274         assert(size);
275         assert(buf);
276
277         *delta_t = read_var_len();
278         assert(!feof(_fd));
279
280         const int status = fgetc(_fd);
281         assert(status != EOF); // FIXME die gracefully
282
283         //printf("Status @ %X = %X\n", (unsigned)ftell(_fd) - 1, status);
284
285         if (status == 0xFF) {
286                 assert(!feof(_fd));
287                 const int type = fgetc(_fd);
288                 if ((unsigned char)type == 0x2F) {
289                         //cerr << _name << " hit EOT" << endl;
290                         return -1;
291                 } else {
292                         *size = 0;
293                         return 0;
294                 }
295         }
296         
297         const int event_size = midi_event_size((unsigned char)status) + 1;
298         if (event_size <= 0) {
299                 *size = 0;
300                 return 0;
301         }
302         
303         // Make sure we have enough scratch buffer
304         if (*size < (unsigned)event_size)
305                 *buf = (Byte*)realloc(*buf, event_size);
306         
307         *size = event_size;
308
309         /*if (ev.buffer == NULL)
310                 ev.buffer = (Byte*)malloc(sizeof(Byte) * ev.size);*/
311
312         (*buf)[0] = (unsigned char)status;
313         if (event_size > 1)
314                 fread((*buf) + 1, 1, *size - 1, _fd);
315
316         /*printf("%s read event: delta = %u, size = %u, data = ", _name.c_str(), *delta_t, *size);
317         for (size_t i=0; i < *size; ++i) {
318                 printf("%X ", (*buf)[i]);
319         }
320         printf("\n");*/
321         
322         return (int)*size;
323 }
324
325 /** All stamps in audio frames */
326 nframes_t
327 SMFSource::read_unlocked (MidiRingBuffer& dst, nframes_t start, nframes_t cnt, nframes_t stamp_offset) const
328 {
329         //cerr << "SMF - read " << start << ", count=" << cnt << ", offset=" << stamp_offset << endl;
330
331         // 64 bits ought to be enough for anybody
332         uint64_t time = 0; // in SMF ticks, 1 tick per _ppqn
333
334         _read_data_count = 0;
335
336         // Output parameters for read_event (which will allocate scratch in buffer as needed)
337         uint32_t ev_delta_t = 0;
338         uint32_t ev_size = 0;
339         Byte*    ev_buffer = 0;
340
341         size_t scratch_size = 0; // keep track of scratch to minimize reallocs
342
343         // FIXME: don't seek to start and search every read (brutal!)
344         fseek(_fd, _header_size, 0);
345         
346         // FIXME: assumes tempo never changes after start
347         const double frames_per_beat = _session.tempo_map().tempo_at(_timeline_position).frames_per_beat(
348                         _session.engine().frame_rate());
349         
350         const uint64_t start_ticks = (uint64_t)((start / frames_per_beat) * _ppqn);
351
352         while (!feof(_fd)) {
353                 int ret = read_event(&ev_delta_t, &ev_size, &ev_buffer);
354                 if (ret == -1) { // EOF
355                         //cerr << "SMF - EOF\n";
356                         break;
357                 }
358
359                 if (ret == 0) { // meta-event (skipped)
360                         //cerr << "SMF - META\n";
361                         time += ev_delta_t; // just accumulate delta time and ignore event
362                         continue;
363                 }
364
365                 time += ev_delta_t; // accumulate delta time
366
367                 if (time >= start_ticks) {
368                         const nframes_t ev_frame_time = (nframes_t)(
369                                         ((time / (double)_ppqn) * frames_per_beat)) + stamp_offset;
370
371                         if (ev_frame_time <= start + cnt)
372                                 dst.write(ev_frame_time, ev_size, ev_buffer);
373                         else
374                                 break;
375                 }
376
377                 _read_data_count += ev_size;
378
379                 if (ev_size > scratch_size)
380                         scratch_size = ev_size;
381                 else
382                         ev_size = scratch_size; // minimize realloc in read_event
383         }
384         
385         return cnt;
386 }
387
388 /** All stamps in audio frames */
389 nframes_t
390 SMFSource::write_unlocked (MidiRingBuffer& src, nframes_t cnt)
391 {
392         _write_data_count = 0;
393                 
394         double time;
395         size_t size;
396
397         size_t buf_capacity = 4;
398         Byte* buf = (Byte*)malloc(buf_capacity);
399         
400         if (_model && ! _model->writing())
401                 _model->start_write();
402
403         while (true) {
404                 bool ret = src.full_peek(sizeof(double), (Byte*)&time);
405                 if (!ret || time - _timeline_position > _length + cnt)
406                         break;
407
408                 ret = src.read_prefix(&time, &size);
409                 if (!ret)
410                         break;
411
412                 if (size > buf_capacity) {
413                         buf_capacity = size;
414                         buf = (Byte*)realloc(buf, size);
415                 }
416
417                 ret = src.read_contents(size, buf);
418                 if (!ret) {
419                         cerr << "ERROR: Read time/size but not buffer, corrupt MIDI ring buffer" << endl;
420                         break;
421                 }
422                 
423                 assert(time >= _timeline_position);
424                 time -= _timeline_position;
425
426                 const MidiEvent ev(time, size, buf);
427                 append_event_unlocked(ev);
428
429                 if (_model)
430                         _model->append(ev);
431         }
432
433         fflush(_fd);
434         free(buf);
435
436         const nframes_t oldlen = _length;
437         update_length(oldlen, cnt);
438
439         ViewDataRangeReady (_timeline_position + oldlen, cnt); /* EMIT SIGNAL */
440         
441         return cnt;
442 }
443                 
444
445 void
446 SMFSource::append_event_unlocked(const MidiEvent& ev)
447 {
448         /*printf("SMF - writing event, time = %lf, size = %u, data = ", ev.time(), ev.size());
449         for (size_t i=0; i < ev.size(); ++i) {
450                 printf("%X ", ev.buffer()[i]);
451         }
452         printf("\n");*/
453
454         assert(ev.time() >= 0);
455
456         assert(ev.time() >= _last_ev_time);
457         
458         // FIXME: assumes tempo never changes after start
459         const double frames_per_beat = _session.tempo_map().tempo_at
460                         (_timeline_position).frames_per_beat(_session.engine().frame_rate());
461         
462         const uint32_t delta_time = (uint32_t)((ev.time() - _last_ev_time) / frames_per_beat * _ppqn);
463
464         const size_t stamp_size = write_var_len(delta_time);
465         fwrite(ev.buffer(), 1, ev.size(), _fd);
466
467         _track_size += stamp_size + ev.size();
468         _write_data_count += ev.size();
469
470         _last_ev_time = ev.time();
471 }
472
473
474 XMLNode&
475 SMFSource::get_state ()
476 {
477         XMLNode& root (MidiSource::get_state());
478         char buf[16];
479         snprintf (buf, sizeof (buf), "0x%x", (int)_flags);
480         root.add_property ("flags", buf);
481         return root;
482 }
483
484 int
485 SMFSource::set_state (const XMLNode& node)
486 {
487         const XMLProperty* prop;
488
489         if (MidiSource::set_state (node)) {
490                 return -1;
491         }
492
493         if ((prop = node.property (X_("flags"))) != 0) {
494
495                 int ival;
496                 sscanf (prop->value().c_str(), "0x%x", &ival);
497                 _flags = Flag (ival);
498
499         } else {
500
501                 _flags = Flag (0);
502
503         }
504
505         assert(_name.find("/") == string::npos);
506
507         return 0;
508 }
509
510 void
511 SMFSource::mark_for_remove ()
512 {
513         if (!writable()) {
514                 return;
515         }
516         _flags = Flag (_flags | RemoveAtDestroy);
517 }
518
519 void
520 SMFSource::mark_streaming_midi_write_started (NoteMode mode, nframes_t start_frame)
521 {
522         MidiSource::mark_streaming_midi_write_started (mode, start_frame);
523         _last_ev_time = 0;
524 }
525
526 void
527 SMFSource::mark_streaming_write_completed ()
528 {
529         MidiSource::mark_streaming_write_completed();
530
531         if (!writable()) {
532                 return;
533         }
534         
535         flush_header();
536         flush_footer();
537
538 #if 0
539         Glib::Mutex::Lock lm (_lock);
540
541
542         next_peak_clear_should_notify = true;
543
544         if (_peaks_built || pending_peak_builds.empty()) {
545                 _peaks_built = true;
546                  PeaksReady (); /* EMIT SIGNAL */
547         }
548 #endif
549 }
550
551 void
552 SMFSource::mark_take (string id)
553 {
554         if (writable()) {
555                 _take_id = id;
556         }
557 }
558
559 int
560 SMFSource::move_to_trash (const string trash_dir_name)
561 {
562         string newpath;
563
564         if (!writable()) {
565                 return -1;
566         }
567
568         /* don't move the file across filesystems, just
569            stick it in the 'trash_dir_name' directory
570            on whichever filesystem it was already on.
571         */
572
573         newpath = Glib::path_get_dirname (_path);
574         newpath = Glib::path_get_dirname (newpath);
575
576         newpath += '/';
577         newpath += trash_dir_name;
578         newpath += '/';
579         newpath += Glib::path_get_basename (_path);
580
581         if (access (newpath.c_str(), F_OK) == 0) {
582
583                 /* the new path already exists, try versioning */
584                 
585                 char buf[PATH_MAX+1];
586                 int version = 1;
587                 string newpath_v;
588
589                 snprintf (buf, sizeof (buf), "%s.%d", newpath.c_str(), version);
590                 newpath_v = buf;
591
592                 while (access (newpath_v.c_str(), F_OK) == 0 && version < 999) {
593                         snprintf (buf, sizeof (buf), "%s.%d", newpath.c_str(), ++version);
594                         newpath_v = buf;
595                 }
596                 
597                 if (version == 999) {
598                         PBD::error << string_compose (_("there are already 1000 files with names like %1; versioning discontinued"),
599                                           newpath)
600                               << endmsg;
601                 } else {
602                         newpath = newpath_v;
603                 }
604
605         } else {
606
607                 /* it doesn't exist, or we can't read it or something */
608
609         }
610
611         if (::rename (_path.c_str(), newpath.c_str()) != 0) {
612                 PBD::error << string_compose (_("cannot rename midi file source from %1 to %2 (%3)"),
613                                   _path, newpath, strerror (errno))
614                       << endmsg;
615                 return -1;
616         }
617 #if 0
618         if (::unlink (peakpath.c_str()) != 0) {
619                 PBD::error << string_compose (_("cannot remove peakfile %1 for %2 (%3)"),
620                                   peakpath, _path, strerror (errno))
621                       << endmsg;
622                 /* try to back out */
623                 rename (newpath.c_str(), _path.c_str());
624                 return -1;
625         }
626             
627         _path = newpath;
628         peakpath = "";
629 #endif  
630         /* file can not be removed twice, since the operation is not idempotent */
631
632         _flags = Flag (_flags & ~(RemoveAtDestroy|Removable|RemovableIfEmpty));
633
634         return 0;
635 }
636
637 // FIXME: Merge this with audiofilesource somehow (make a generic filesource?)
638 bool
639 SMFSource::find (string pathstr, bool must_exist, bool& isnew)
640 {
641         string::size_type pos;
642         bool ret = false;
643
644         isnew = false;
645
646         /* clean up PATH:CHANNEL notation so that we are looking for the correct path */
647
648         if ((pos = pathstr.find_last_of (':')) == string::npos) {
649                 pathstr = pathstr;
650         } else {
651                 pathstr = pathstr.substr (0, pos);
652         }
653
654         if (pathstr[0] != '/') {
655
656                 /* non-absolute pathname: find pathstr in search path */
657
658                 vector<string> dirs;
659                 int cnt;
660                 string fullpath;
661                 string keeppath;
662
663                 if (_search_path.length() == 0) {
664                         PBD::error << _("FileSource: search path not set") << endmsg;
665                         goto out;
666                 }
667
668                 split (_search_path, dirs, ':');
669
670                 cnt = 0;
671                 
672                 for (vector<string>::iterator i = dirs.begin(); i != dirs.end(); ++i) {
673
674                         fullpath = *i;
675                         if (fullpath[fullpath.length()-1] != '/') {
676                                 fullpath += '/';
677                         }
678                         fullpath += pathstr;
679                         
680                         if (access (fullpath.c_str(), R_OK) == 0) {
681                                 keeppath = fullpath;
682                                 ++cnt;
683                         } 
684                 }
685
686                 if (cnt > 1) {
687
688                         PBD::error << string_compose (_("FileSource: \"%1\" is ambigous when searching %2\n\t"), pathstr, _search_path) << endmsg;
689                         goto out;
690
691                 } else if (cnt == 0) {
692
693                         if (must_exist) {
694                                 PBD::error << string_compose(_("Filesource: cannot find required file (%1): while searching %2"), pathstr, _search_path) << endmsg;
695                                 goto out;
696                         } else {
697                                 isnew = true;
698                         }
699                 }
700                 
701                 _name = pathstr;
702                 _path = keeppath;
703                 ret = true;
704
705         } else {
706                 
707                 /* external files and/or very very old style sessions include full paths */
708                 
709                 _path = pathstr;
710                 _name = pathstr.substr (pathstr.find_last_of ('/') + 1);
711                 
712                 if (access (_path.c_str(), R_OK) != 0) {
713
714                         /* file does not exist or we cannot read it */
715
716                         if (must_exist) {
717                                 PBD::error << string_compose(_("Filesource: cannot find required file (%1): %2"), _path, strerror (errno)) << endmsg;
718                                 goto out;
719                         }
720                         
721                         if (errno != ENOENT) {
722                                 PBD::error << string_compose(_("Filesource: cannot check for existing file (%1): %2"), _path, strerror (errno)) << endmsg;
723                                 goto out;
724                         }
725                         
726                         /* a new file */
727
728                         isnew = true;
729                         ret = true;
730
731                 } else {
732                         
733                         /* already exists */
734
735                         ret = true;
736                 }
737         }
738         
739   out:
740         return ret;
741 }
742
743 void
744 SMFSource::set_search_path (string p)
745 {
746         _search_path = p;
747 }
748
749
750 void
751 SMFSource::set_allow_remove_if_empty (bool yn)
752 {
753         if (writable()) {
754                 _allow_remove_if_empty = yn;
755         }
756 }
757
758 int
759 SMFSource::set_source_name (string newname, bool destructive)
760 {
761         //Glib::Mutex::Lock lm (_lock); FIXME
762         string oldpath = _path;
763         string newpath = Session::change_midi_path_by_name (oldpath, _name, newname, destructive);
764
765         if (newpath.empty()) {
766                 PBD::error << string_compose (_("programming error: %1"), "cannot generate a changed midi path") << endmsg;
767                 return -1;
768         }
769
770         if (rename (oldpath.c_str(), newpath.c_str()) != 0) {
771                 PBD::error << string_compose (_("cannot rename midi file for %1 to %2"), _name, newpath) << endmsg;
772                 return -1;
773         }
774
775         _name = Glib::path_get_basename (newpath);
776         _path = newpath;
777
778         return 0;//rename_peakfile (peak_path (_path));
779 }
780
781 bool
782 SMFSource::is_empty () const
783 {
784         bool ret = (_track_size > 4);
785
786         //cerr << name() << " IS EMPTY: " << ret << endl;
787
788         return ret;
789 }
790
791
792 void
793 SMFSource::write_chunk_header(const char id[4], uint32_t length)
794 {
795         const uint32_t length_be = GUINT32_TO_BE(length);
796
797         fwrite(id, 1, 4, _fd);
798         fwrite(&length_be, 4, 1, _fd);
799 }
800
801 void
802 SMFSource::write_chunk(const char id[4], uint32_t length, void* data)
803 {
804         write_chunk_header(id, length);
805         
806         fwrite(data, 1, length, _fd);
807 }
808
809 /** Returns the size (in bytes) of the value written. */
810 size_t
811 SMFSource::write_var_len(uint32_t value)
812 {
813         size_t ret = 0;
814
815         uint32_t buffer = value & 0x7F;
816
817         while ( (value >>= 7) ) {
818                 buffer <<= 8;
819                 buffer |= ((value & 0x7F) | 0x80);
820         }
821
822         while (true) {
823                 //printf("Writing var len byte %X\n", (unsigned char)buffer);
824                 ++ret;
825                 fputc(buffer, _fd);
826                 if (buffer & 0x80)
827                         buffer >>= 8;
828                 else
829                         break;
830         }
831
832         return ret;
833 }
834
835 uint32_t
836 SMFSource::read_var_len() const
837 {
838         assert(!feof(_fd));
839
840         uint32_t value;
841         unsigned char c;
842
843         if ( (value = getc(_fd)) & 0x80 ) {
844                 value &= 0x7F;
845                 do {
846                         assert(!feof(_fd));
847                         value = (value << 7) + ((c = getc(_fd)) & 0x7F);
848                 } while (c & 0x80);
849         }
850
851         return value;
852 }
853
854 void
855 SMFSource::load_model(bool lock, bool force_reload)
856 {
857         if (_writing)
858                 return;
859
860         if (lock)
861                 Glib::Mutex::Lock lm (_lock);
862
863         if (_model && !force_reload && !_model->empty()) {
864                 //cerr << _name << " NOT reloading model " << _model.get() << " (" << _model->n_notes()
865                 //      << " notes)" << endl;
866                 return;
867         } else {
868                 cerr << _name << " loading model" << endl;
869         }
870
871         if (! _model) {
872                 _model = boost::shared_ptr<MidiModel>(new MidiModel(_session));
873                 cerr << _name << " loaded new model " << _model.get() << endl;
874         } else {
875                 cerr << _name << " reloading model " << _model.get()
876                         << " (" << _model->n_notes() << " notes)" <<endl;
877                 _model->clear();
878         }
879
880         _model->start_write();
881
882         fseek(_fd, _header_size, 0);
883
884         uint64_t time = 0; /* in SMF ticks */
885         MidiEvent ev;
886         
887         size_t scratch_size = 0; // keep track of scratch and minimize reallocs
888         
889         // FIXME: assumes tempo never changes after start
890         const double frames_per_beat = _session.tempo_map().tempo_at(_timeline_position).frames_per_beat(
891                         _session.engine().frame_rate());
892         
893         uint32_t delta_t = 0;
894         int ret;
895         while ((ret = read_event(&delta_t, &ev.size(), &ev.buffer())) >= 0) {
896                 
897                 time += delta_t;
898                 
899                 if (ret > 0) { // didn't skip (meta) event
900                         // make ev.time absolute time in frames
901                         ev.time() = (double)time * frames_per_beat / (double)_ppqn;
902
903                         _model->append(ev);
904                 }
905
906                 if (ev.size() > scratch_size)
907                         scratch_size = ev.size();
908                 else
909                         ev.size() = scratch_size;
910         }
911         
912         _model->end_write(false);
913
914         free(ev.buffer());
915 }
916
917
918 void
919 SMFSource::destroy_model()
920 {
921         //cerr << _name << " destroying model " << _model.get() << endl;
922         _model.reset();
923 }
924