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