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