Move region naming stuff from Session into RegionFactory, cleaning up some vestiges...
[ardour.git] / libs / ardour / midi_diskstream.cc
1 /*
2     Copyright (C) 2000-2003 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include <fstream>
20 #include <cstdio>
21 #include <unistd.h>
22 #include <cmath>
23 #include <cerrno>
24 #include <string>
25 #include <climits>
26 #include <fcntl.h>
27 #include <cstdlib>
28 #include <ctime>
29 #include <sys/stat.h>
30 #include <sys/mman.h>
31
32 #include "pbd/error.h"
33 #include "pbd/basename.h"
34 #include <glibmm/thread.h>
35 #include "pbd/xml++.h"
36 #include "pbd/memento_command.h"
37 #include "pbd/enumwriter.h"
38 #include "pbd/stateful_diff_command.h"
39
40 #include "ardour/ardour.h"
41 #include "ardour/audioengine.h"
42 #include "ardour/butler.h"
43 #include "ardour/configuration.h"
44 #include "ardour/cycle_timer.h"
45 #include "ardour/debug.h"
46 #include "ardour/io.h"
47 #include "ardour/midi_diskstream.h"
48 #include "ardour/midi_playlist.h"
49 #include "ardour/midi_port.h"
50 #include "ardour/midi_region.h"
51 #include "ardour/playlist_factory.h"
52 #include "ardour/region_factory.h"
53 #include "ardour/send.h"
54 #include "ardour/session.h"
55 #include "ardour/smf_source.h"
56 #include "ardour/utils.h"
57 #include "ardour/session_playlists.h"
58
59 #include "midi++/types.h"
60
61 #include "i18n.h"
62 #include <locale.h>
63
64 using namespace std;
65 using namespace ARDOUR;
66 using namespace PBD;
67
68 nframes_t MidiDiskstream::midi_readahead = 4096;
69
70 MidiDiskstream::MidiDiskstream (Session &sess, const string &name, Diskstream::Flag flag)
71         : Diskstream(sess, name, flag)
72         , _playback_buf(0)
73         , _capture_buf(0)
74         , _source_port(0)
75         , _last_flush_frame(0)
76         , _note_mode(Sustained)
77         , _frames_written_to_ringbuffer(0)
78         , _frames_read_from_ringbuffer(0)
79 {
80         /* prevent any write sources from being created */
81
82         in_set_state = true;
83
84         init(flag);
85         use_new_playlist ();
86
87         in_set_state = false;
88
89         assert(!destructive());
90 }
91
92 MidiDiskstream::MidiDiskstream (Session& sess, const XMLNode& node)
93         : Diskstream(sess, node)
94         , _playback_buf(0)
95         , _capture_buf(0)
96         , _source_port(0)
97         , _last_flush_frame(0)
98         , _note_mode(Sustained)
99         , _frames_written_to_ringbuffer(0)
100         , _frames_read_from_ringbuffer(0)
101 {
102         in_set_state = true;
103         init (Recordable);
104
105         if (set_state (node, Stateful::loading_state_version)) {
106                 in_set_state = false;
107                 throw failed_constructor();
108         }
109
110         in_set_state = false;
111
112         if (destructive()) {
113                 use_destructive_playlist ();
114         }
115 }
116
117 void
118 MidiDiskstream::init (Diskstream::Flag f)
119 {
120         Diskstream::init(f);
121
122         /* there are no channels at this point, so these
123            two calls just get speed_buffer_size and wrap_buffer
124            size setup without duplicating their code.
125         */
126
127         set_block_size (_session.get_block_size());
128         allocate_temporary_buffers ();
129
130         const size_t size = _session.butler()->midi_diskstream_buffer_size();
131         _playback_buf = new MidiRingBuffer<nframes_t>(size);
132         _capture_buf = new MidiRingBuffer<nframes_t>(size);
133
134         _n_channels = ChanCount(DataType::MIDI, 1);
135
136         assert(recordable());
137 }
138
139 MidiDiskstream::~MidiDiskstream ()
140 {
141         Glib::Mutex::Lock lm (state_lock);
142 }
143
144
145 void
146 MidiDiskstream::non_realtime_locate (nframes_t position)
147 {
148         if (_write_source) {
149                 _write_source->set_timeline_position (position);
150         }
151         seek(position, false);
152 }
153
154
155 void
156 MidiDiskstream::non_realtime_input_change ()
157 {
158         {
159                 Glib::Mutex::Lock lm (state_lock);
160
161                 if (input_change_pending == NoChange) {
162                         return;
163                 }
164
165                 if (input_change_pending & ConfigurationChanged) {
166                         if (_io->n_ports().n_midi() != _n_channels.n_midi()) {
167                                 error << "Can not feed IO " << _io->n_ports()
168                                         << " with diskstream " << _n_channels << endl;
169                         }
170                 }
171
172                 get_input_sources ();
173                 set_capture_offset ();
174
175                 if (first_input_change) {
176                         set_align_style (_persistent_alignment_style);
177                         first_input_change = false;
178                 } else {
179                         set_align_style_from_io ();
180                 }
181
182                 input_change_pending = NoChange;
183
184                 /* implicit unlock */
185         }
186
187         /* reset capture files */
188
189         reset_write_sources (false);
190
191         /* now refill channel buffers */
192
193         if (speed() != 1.0f || speed() != -1.0f) {
194                 seek ((nframes_t) (_session.transport_frame() * (double) speed()));
195         }
196         else {
197                 seek (_session.transport_frame());
198         }
199
200         _last_flush_frame = _session.transport_frame();
201 }
202
203 void
204 MidiDiskstream::get_input_sources ()
205 {
206         uint32_t ni = _io->n_ports().n_midi();
207
208         if (ni == 0) {
209                 return;
210         }
211
212         // This is all we do for now at least
213         assert(ni == 1);
214
215         _source_port = _io->midi(0);
216
217         // do... stuff?
218 }
219
220 int
221 MidiDiskstream::find_and_use_playlist (const string& name)
222 {
223         boost::shared_ptr<MidiPlaylist> playlist;
224
225         if ((playlist = boost::dynamic_pointer_cast<MidiPlaylist> (_session.playlists->by_name (name))) == 0) {
226                 playlist = boost::dynamic_pointer_cast<MidiPlaylist> (PlaylistFactory::create (DataType::MIDI, _session, name));
227         }
228
229         if (!playlist) {
230                 error << string_compose(_("MidiDiskstream: Playlist \"%1\" isn't an midi playlist"), name) << endmsg;
231                 return -1;
232         }
233
234         return use_playlist (playlist);
235 }
236
237 int
238 MidiDiskstream::use_playlist (boost::shared_ptr<Playlist> playlist)
239 {
240         assert(boost::dynamic_pointer_cast<MidiPlaylist>(playlist));
241
242         Diskstream::use_playlist(playlist);
243
244         return 0;
245 }
246
247 int
248 MidiDiskstream::use_new_playlist ()
249 {
250         string newname;
251         boost::shared_ptr<MidiPlaylist> playlist;
252
253         if (!in_set_state && destructive()) {
254                 return 0;
255         }
256
257         if (_playlist) {
258                 newname = Playlist::bump_name (_playlist->name(), _session);
259         } else {
260                 newname = Playlist::bump_name (_name, _session);
261         }
262
263         if ((playlist = boost::dynamic_pointer_cast<MidiPlaylist> (PlaylistFactory::create (
264                         DataType::MIDI, _session, newname, hidden()))) != 0) {
265
266                 playlist->set_orig_diskstream_id (id());
267                 return use_playlist (playlist);
268
269         } else {
270                 return -1;
271         }
272 }
273
274 int
275 MidiDiskstream::use_copy_playlist ()
276 {
277         assert(midi_playlist());
278
279         if (destructive()) {
280                 return 0;
281         }
282
283         if (_playlist == 0) {
284                 error << string_compose(_("MidiDiskstream %1: there is no existing playlist to make a copy of!"), _name) << endmsg;
285                 return -1;
286         }
287
288         string newname;
289         boost::shared_ptr<MidiPlaylist> playlist;
290
291         newname = Playlist::bump_name (_playlist->name(), _session);
292
293         if ((playlist  = boost::dynamic_pointer_cast<MidiPlaylist>(PlaylistFactory::create (midi_playlist(), newname))) != 0) {
294                 playlist->set_orig_diskstream_id (id());
295                 return use_playlist (playlist);
296         } else {
297                 return -1;
298         }
299 }
300
301 /** Overloaded from parent to die horribly
302  */
303 int
304 MidiDiskstream::set_destructive (bool yn)
305 {
306         assert( ! destructive());
307         assert( ! yn);
308         return -1;
309 }
310
311 void
312 MidiDiskstream::set_note_mode (NoteMode m)
313 {
314         _note_mode = m;
315         midi_playlist()->set_note_mode(m);
316         if (_write_source && _write_source->model())
317                 _write_source->model()->set_note_mode(m);
318 }
319
320 #if 0
321 static void
322 trace_midi (ostream& o, MIDI::byte *msg, size_t len)
323 {
324         using namespace MIDI;
325         eventType type;
326         const char trace_prefix = ':';
327
328         type = (eventType) (msg[0]&0xF0);
329
330         switch (type) {
331         case off:
332                 o << trace_prefix
333                    << "Channel "
334                    << (msg[0]&0xF)+1
335                    << " NoteOff NoteNum "
336                    << (int) msg[1]
337                    << " Vel "
338                    << (int) msg[2]
339                    << endl;
340                 break;
341
342         case on:
343                 o << trace_prefix
344                    << "Channel "
345                    << (msg[0]&0xF)+1
346                    << " NoteOn NoteNum "
347                    << (int) msg[1]
348                    << " Vel "
349                    << (int) msg[2]
350                    << endl;
351                 break;
352
353         case polypress:
354                 o << trace_prefix
355                    << "Channel "
356                    << (msg[0]&0xF)+1
357                    << " PolyPressure"
358                    << (int) msg[1]
359                    << endl;
360                 break;
361
362         case MIDI::controller:
363                 o << trace_prefix
364                    << "Channel "
365                    << (msg[0]&0xF)+1
366                    << " Controller "
367                    << (int) msg[1]
368                    << " Value "
369                    << (int) msg[2]
370                    << endl;
371                 break;
372
373         case program:
374                 o << trace_prefix
375                    << "Channel "
376                    << (msg[0]&0xF)+1
377                    <<  " Program PropertyChange ProgNum "
378                    << (int) msg[1]
379                    << endl;
380                 break;
381
382         case chanpress:
383                 o << trace_prefix
384                    << "Channel "
385                    << (msg[0]&0xF)+1
386                    << " Channel Pressure "
387                    << (int) msg[1]
388                    << endl;
389                 break;
390
391         case MIDI::pitchbend:
392                 o << trace_prefix
393                    << "Channel "
394                    << (msg[0]&0xF)+1
395                    << " Pitch Bend "
396                    << ((msg[2]<<7)|msg[1])
397                    << endl;
398                 break;
399
400         case MIDI::sysex:
401                 if (len == 1) {
402                         switch (msg[0]) {
403                         case 0xf8:
404                                 o << trace_prefix
405                                    << "Clock"
406                                    << endl;
407                                 break;
408                         case 0xfa:
409                                 o << trace_prefix
410                                    << "Start"
411                                    << endl;
412                                 break;
413                         case 0xfb:
414                                 o << trace_prefix
415                                    << "Continue"
416                                    << endl;
417                                 break;
418                         case 0xfc:
419                                 o << trace_prefix
420                                    << "Stop"
421                                    << endl;
422                                 break;
423                         case 0xfe:
424                                 o << trace_prefix
425                                    << "Active Sense"
426                                    << endl;
427                                 break;
428                         case 0xff:
429                                 o << trace_prefix
430                                    << "System Reset"
431                                    << endl;
432                                 break;
433                         default:
434                                 o << trace_prefix
435                                    << "System Exclusive (1 byte : " << hex << (int) *msg << dec << ')'
436                                    << endl;
437                                 break;
438                         }
439                 } else {
440                         o << trace_prefix
441                            << "System Exclusive (" << len << ") = [ " << hex;
442                         for (unsigned int i = 0; i < len; ++i) {
443                                 o << (int) msg[i] << ' ';
444                         }
445                         o << dec << ']' << endl;
446
447                 }
448                 break;
449
450         case MIDI::song:
451                 o << trace_prefix << "Song" << endl;
452                 break;
453
454         case MIDI::tune:
455                 o << trace_prefix << "Tune" << endl;
456                 break;
457
458         case MIDI::eox:
459                 o << trace_prefix << "End-of-System Exclusive" << endl;
460                 break;
461
462         case MIDI::timing:
463                 o << trace_prefix << "Timing" << endl;
464                 break;
465
466         case MIDI::start:
467                 o << trace_prefix << "Start" << endl;
468                 break;
469
470         case MIDI::stop:
471                 o << trace_prefix << "Stop" << endl;
472                 break;
473
474         case MIDI::contineu:
475                 o << trace_prefix << "Continue" << endl;
476                 break;
477
478         case active:
479                 o << trace_prefix << "Active Sense" << endl;
480                 break;
481
482         default:
483                 o << trace_prefix << "Unrecognized MIDI message" << endl;
484                 break;
485         }
486 }
487 #endif
488
489 int
490 MidiDiskstream::process (nframes_t transport_frame, nframes_t nframes, bool can_record, bool rec_monitors_input, bool& need_butler)
491 {
492         int       ret = -1;
493         nframes_t rec_offset = 0;
494         nframes_t rec_nframes = 0;
495         bool      nominally_recording;
496         bool      re = record_enabled ();
497
498         playback_distance = 0;
499
500         check_record_status (transport_frame, nframes, can_record);
501
502         nominally_recording = (can_record && re);
503
504         if (nframes == 0) {
505                 return 0;
506         }
507
508         Glib::Mutex::Lock sm (state_lock, Glib::TRY_LOCK);
509
510         if (!sm.locked()) {
511                 return 1;
512         }
513
514         adjust_capture_position = 0;
515
516         if (nominally_recording || (_session.get_record_enabled() && _session.config.get_punch_in())) {
517                 OverlapType ot = coverage (first_recordable_frame, last_recordable_frame, transport_frame, transport_frame + nframes);
518
519                 calculate_record_range(ot, transport_frame, nframes, rec_nframes, rec_offset);
520
521                 if (rec_nframes && !was_recording) {
522                         capture_captured = 0;
523                         was_recording = true;
524                 }
525         }
526
527
528         if (can_record && !_last_capture_regions.empty()) {
529                 _last_capture_regions.clear ();
530         }
531
532         if (nominally_recording || rec_nframes) {
533
534                 // Pump entire port buffer into the ring buffer (FIXME: split cycles?)
535                 MidiBuffer& buf = _source_port->get_midi_buffer(nframes);
536                 for (MidiBuffer::iterator i = buf.begin(); i != buf.end(); ++i) {
537                         const Evoral::MIDIEvent<MidiBuffer::TimeType> ev(*i, false);
538                         assert(ev.buffer());
539                         _capture_buf->write(ev.time() + transport_frame, ev.type(), ev.size(), ev.buffer());
540                 }
541
542         } else {
543
544                 if (was_recording) {
545                         finish_capture (rec_monitors_input);
546                 }
547
548         }
549
550         if (rec_nframes) {
551
552                 /* data will be written to disk */
553
554                 if (rec_nframes == nframes && rec_offset == 0) {
555                         playback_distance = nframes;
556                 }
557
558                 adjust_capture_position = rec_nframes;
559
560         } else if (nominally_recording) {
561
562                 /* XXXX do this for MIDI !!!
563                    can't do actual capture yet - waiting for latency effects to finish before we start
564                    */
565
566                 playback_distance = nframes;
567
568         }
569
570         ret = 0;
571
572         if (commit (nframes)) {
573                 need_butler = true;
574         }
575
576         return ret;
577 }
578
579 bool
580 MidiDiskstream::commit (nframes_t nframes)
581 {
582         bool need_butler = false;
583
584         if (_actual_speed < 0.0) {
585                 playback_sample -= playback_distance;
586         } else {
587                 playback_sample += playback_distance;
588         }
589
590         if (adjust_capture_position != 0) {
591                 capture_captured += adjust_capture_position;
592                 adjust_capture_position = 0;
593         }
594
595         uint32_t frames_read = g_atomic_int_get(&_frames_read_from_ringbuffer);
596         uint32_t frames_written = g_atomic_int_get(&_frames_written_to_ringbuffer);
597         if ((frames_written - frames_read) + nframes < midi_readahead) {
598                 need_butler = true;
599         }
600
601         /*cerr << "MDS written: " << frames_written << " - read: " << frames_read <<
602                 " = " << frames_written - frames_read
603                 << " + " << nframes << " < " << midi_readahead << " = " << need_butler << ")" << endl;*/
604
605         return need_butler;
606 }
607
608 void
609 MidiDiskstream::set_pending_overwrite (bool yn)
610 {
611         /* called from audio thread, so we can use the read ptr and playback sample as we wish */
612
613         pending_overwrite = yn;
614
615         overwrite_frame = playback_sample;
616 }
617
618 int
619 MidiDiskstream::overwrite_existing_buffers ()
620 {
621         //read(overwrite_frame, disk_io_chunk_frames, false);
622         overwrite_queued = false;
623         pending_overwrite = false;
624
625         return 0;
626 }
627
628 int
629 MidiDiskstream::seek (nframes_t frame, bool complete_refill)
630 {
631         Glib::Mutex::Lock lm (state_lock);
632         int ret = -1;
633
634         _playback_buf->reset();
635         _capture_buf->reset();
636         g_atomic_int_set(&_frames_read_from_ringbuffer, 0);
637         g_atomic_int_set(&_frames_written_to_ringbuffer, 0);
638
639         playback_sample = frame;
640         file_frame = frame;
641
642         if (complete_refill) {
643                 while ((ret = do_refill_with_alloc ()) > 0) ;
644         } else {
645                 ret = do_refill_with_alloc ();
646         }
647
648         return ret;
649 }
650
651 int
652 MidiDiskstream::can_internal_playback_seek (nframes_t distance)
653 {
654         uint32_t frames_read    = g_atomic_int_get(&_frames_read_from_ringbuffer);
655         uint32_t frames_written = g_atomic_int_get(&_frames_written_to_ringbuffer);
656         return ((frames_written - frames_read) < distance);
657 }
658
659 int
660 MidiDiskstream::internal_playback_seek (nframes_t distance)
661 {
662         first_recordable_frame += distance;
663         playback_sample += distance;
664
665         return 0;
666 }
667
668 /** @a start is set to the new frame position (TIME) read up to */
669 int
670 MidiDiskstream::read (nframes_t& start, nframes_t dur, bool reversed)
671 {
672         nframes_t this_read = 0;
673         bool reloop = false;
674         nframes_t loop_end = 0;
675         nframes_t loop_start = 0;
676         Location *loc = 0;
677
678         if (!reversed) {
679
680                 nframes_t loop_length = 0;
681
682                 /* Make the use of a Location atomic for this read operation.
683
684                    Note: Locations don't get deleted, so all we care about
685                    when I say "atomic" is that we are always pointing to
686                    the same one and using a start/length values obtained
687                    just once.
688                 */
689
690                 if ((loc = loop_location) != 0) {
691                         loop_start = loc->start();
692                         loop_end = loc->end();
693                         loop_length = loop_end - loop_start;
694                 }
695
696                 /* if we are looping, ensure that the first frame we read is at the correct
697                    position within the loop.
698                 */
699
700                 if (loc && (start >= loop_end)) {
701                         //cerr << "start adjusted from " << start;
702                         start = loop_start + ((start - loop_start) % loop_length);
703                         //cerr << "to " << start << endl;
704                 }
705                 //cerr << "start is " << start << "  loopstart: " << loop_start << "  loopend: " << loop_end << endl;
706         }
707
708         while (dur) {
709
710                 /* take any loop into account. we can't read past the end of the loop. */
711
712                 if (loc && (loop_end - start < dur)) {
713                         this_read = loop_end - start;
714                         //cerr << "reloop true: thisread: " << this_read << "  dur: " << dur << endl;
715                         reloop = true;
716                 } else {
717                         reloop = false;
718                         this_read = dur;
719                 }
720
721                 if (this_read == 0) {
722                         break;
723                 }
724
725                 this_read = min(dur,this_read);
726
727                 if (midi_playlist()->read (*_playback_buf, start, this_read) != this_read) {
728                         error << string_compose(
729                                         _("MidiDiskstream %1: cannot read %2 from playlist at frame %3"),
730                                         _id, this_read, start) << endmsg;
731                         return -1;
732                 }
733
734                 g_atomic_int_add(&_frames_written_to_ringbuffer, this_read);
735
736                 _read_data_count = _playlist->read_data_count();
737
738                 if (reversed) {
739
740                         // Swap note ons with note offs here.  etc?
741                         // Fully reversing MIDI requires look-ahead (well, behind) to find previous
742                         // CC values etc.  hard.
743
744                 } else {
745
746                         /* if we read to the end of the loop, go back to the beginning */
747
748                         if (reloop) {
749                                 // Synthesize LoopEvent here, because the next events
750                                 // written will have non-monotonic timestamps.
751                                 _playback_buf->write(loop_end - 1, LoopEventType, 0, 0);
752                                 cout << "Pushing LoopEvent ts=" << loop_end-1
753                                      << " start+this_read " << start+this_read << endl;
754
755                                 start = loop_start;
756                         } else {
757                                 start += this_read;
758                         }
759                 }
760
761                 dur -= this_read;
762                 //offset += this_read;
763         }
764
765         return 0;
766 }
767
768 int
769 MidiDiskstream::do_refill_with_alloc ()
770 {
771         return do_refill();
772 }
773
774 int
775 MidiDiskstream::do_refill ()
776 {
777         int     ret         = 0;
778         size_t  write_space = _playback_buf->write_space();
779         bool    reversed    = (_visible_speed * _session.transport_speed()) < 0.0f;
780
781         if (write_space == 0) {
782                 return 0;
783         }
784
785         if (reversed) {
786                 return 0;
787         }
788
789         /* at end: nothing to do */
790         if (file_frame == max_frames) {
791                 return 0;
792         }
793
794         // At this point we...
795         assert(_playback_buf->write_space() > 0); // ... have something to write to, and
796         assert(file_frame <= max_frames); // ... something to write
797
798         // now calculate how much time is in the ringbuffer.
799         // and lets write as much as we need to get this to be midi_readahead;
800         uint32_t frames_read = g_atomic_int_get(&_frames_read_from_ringbuffer);
801         uint32_t frames_written = g_atomic_int_get(&_frames_written_to_ringbuffer);
802         if ((frames_written - frames_read) >= midi_readahead) {
803                 //cout << "MDS Nothing to do. all fine" << endl;
804                 return 0;
805         }
806
807         nframes_t to_read = midi_readahead - (frames_written - frames_read);
808
809         //cout << "MDS read for midi_readahead " << to_read << "  rb_contains: "
810         //      << frames_written - frames_read << endl;
811
812         to_read = min(to_read, (max_frames - file_frame));
813
814         if (read (file_frame, to_read, reversed)) {
815                 ret = -1;
816         }
817
818         return ret;
819 }
820
821 /** Flush pending data to disk.
822  *
823  * Important note: this function will write *AT MOST* disk_io_chunk_frames
824  * of data to disk. it will never write more than that.  If it writes that
825  * much and there is more than that waiting to be written, it will return 1,
826  * otherwise 0 on success or -1 on failure.
827  *
828  * If there is less than disk_io_chunk_frames to be written, no data will be
829  * written at all unless @a force_flush is true.
830  */
831 int
832 MidiDiskstream::do_flush (RunContext /*context*/, bool force_flush)
833 {
834         uint32_t to_write;
835         int32_t ret = 0;
836         nframes_t total;
837
838         _write_data_count = 0;
839
840         total = _session.transport_frame() - _last_flush_frame;
841
842         if (_last_flush_frame > _session.transport_frame()
843                         || _last_flush_frame < capture_start_frame) {
844                 _last_flush_frame = _session.transport_frame();
845         }
846
847         if (total == 0 || _capture_buf->read_space() == 0
848                         || (!force_flush && (total < disk_io_chunk_frames && was_recording))) {
849                 goto out;
850         }
851
852         /* if there are 2+ chunks of disk i/o possible for
853            this track, let the caller know so that it can arrange
854            for us to be called again, ASAP.
855
856            if we are forcing a flush, then if there is* any* extra
857            work, let the caller know.
858
859            if we are no longer recording and there is any extra work,
860            let the caller know too.
861            */
862
863         if (total >= 2 * disk_io_chunk_frames || ((force_flush || !was_recording) && total > disk_io_chunk_frames)) {
864                 ret = 1;
865         }
866
867         to_write = disk_io_chunk_frames;
868
869         assert(!destructive());
870
871         if (record_enabled()
872                         && (   (_session.transport_frame() - _last_flush_frame > disk_io_chunk_frames)
873                                 || force_flush)) {
874                 if ((!_write_source) || _write_source->midi_write (*_capture_buf, capture_start_frame, to_write) != to_write) {
875                         error << string_compose(_("MidiDiskstream %1: cannot write to disk"), _id) << endmsg;
876                         return -1;
877                 } else {
878                         _last_flush_frame = _session.transport_frame();
879                 }
880         }
881
882 out:
883         return ret;
884 }
885
886 void
887 MidiDiskstream::transport_stopped (struct tm& /*when*/, time_t /*twhen*/, bool abort_capture)
888 {
889         bool more_work = true;
890         int err = 0;
891         boost::shared_ptr<MidiRegion> region;
892         MidiRegion::SourceList srcs;
893         MidiRegion::SourceList::iterator src;
894         vector<CaptureInfo*>::iterator ci;
895         bool mark_write_completed = false;
896
897         finish_capture (true);
898
899         /* butler is already stopped, but there may be work to do
900            to flush remaining data to disk.
901            */
902
903         while (more_work && !err) {
904                 switch (do_flush (TransportContext, true)) {
905                         case 0:
906                                 more_work = false;
907                                 break;
908                         case 1:
909                                 break;
910                         case -1:
911                                 error << string_compose(_("MidiDiskstream \"%1\": cannot flush captured data to disk!"), _name) << endmsg;
912                                 err++;
913                 }
914         }
915
916         /* XXX is there anything we can do if err != 0 ? */
917         Glib::Mutex::Lock lm (capture_info_lock);
918
919         if (capture_info.empty()) {
920                 return;
921         }
922
923         if (abort_capture) {
924
925                 if (_write_source) {
926
927                         _write_source->mark_for_remove ();
928                         _write_source->drop_references ();
929                         _write_source.reset();
930                 }
931
932                 /* new source set up in "out" below */
933
934         } else {
935
936                 assert(_write_source);
937
938                 nframes_t total_capture = 0;
939                 for (ci = capture_info.begin(); ci != capture_info.end(); ++ci) {
940                         total_capture += (*ci)->frames;
941                 }
942
943                 /* figure out the name for this take */
944
945                 srcs.push_back (_write_source);
946                 _write_source->set_timeline_position (capture_info.front()->start);
947                 _write_source->set_captured_for (_name);
948
949                 string whole_file_region_name;
950                 whole_file_region_name = region_name_from_path (_write_source->name(), true);
951
952                 /* Register a new region with the Session that
953                    describes the entire source. Do this first
954                    so that any sub-regions will obviously be
955                    children of this one (later!)
956                    */
957
958                 try {
959                         PropertyList plist;
960
961                         plist.add (Properties::name, whole_file_region_name);
962                         plist.add (Properties::whole_file, true);
963                         plist.add (Properties::automatic, true);
964                         plist.add (Properties::start, 0);
965                         plist.add (Properties::length, total_capture);
966                         plist.add (Properties::layer, 0);
967
968                         boost::shared_ptr<Region> rx (RegionFactory::create (srcs, plist));
969
970                         region = boost::dynamic_pointer_cast<MidiRegion> (rx);
971                         region->special_set_position (capture_info.front()->start);
972                 }
973
974
975                 catch (failed_constructor& err) {
976                         error << string_compose(_("%1: could not create region for complete midi file"), _name) << endmsg;
977                         /* XXX what now? */
978                 }
979
980                 _last_capture_regions.push_back (region);
981
982                 // cerr << _name << ": there are " << capture_info.size() << " capture_info records\n";
983
984                 _playlist->clear_history ();
985                 _playlist->freeze ();
986
987                 uint32_t buffer_position = 0;
988                 for (buffer_position = 0, ci = capture_info.begin(); ci != capture_info.end(); ++ci) {
989
990                         string region_name;
991
992                         RegionFactory::region_name (region_name, _write_source->name(), false);
993
994                         // cerr << _name << ": based on ci of " << (*ci)->start << " for " << (*ci)->frames << " add a region\n";
995
996                         try {
997                                 PropertyList plist;
998                                 
999                                 plist.add (Properties::start, buffer_position);
1000                                 plist.add (Properties::length, (*ci)->frames);
1001                                 plist.add (Properties::name, region_name);
1002                                 
1003                                 boost::shared_ptr<Region> rx (RegionFactory::create (srcs, plist));
1004                                 region = boost::dynamic_pointer_cast<MidiRegion> (rx);
1005                         }
1006
1007                         catch (failed_constructor& err) {
1008                                 error << _("MidiDiskstream: could not create region for captured midi!") << endmsg;
1009                                 continue; /* XXX is this OK? */
1010                         }
1011
1012                         region->DropReferences.connect_same_thread (*this, boost::bind (&Diskstream::remove_region_from_last_capture, this, boost::weak_ptr<Region>(region)));
1013
1014                         _last_capture_regions.push_back (region);
1015
1016                         // cerr << "add new region, buffer position = " << buffer_position << " @ " << (*ci)->start << endl;
1017
1018                         i_am_the_modifier++;
1019                         _playlist->add_region (region, (*ci)->start);
1020                         i_am_the_modifier--;
1021
1022                         buffer_position += (*ci)->frames;
1023                 }
1024
1025                 _playlist->thaw ();
1026                 _session.add_command (new StatefulDiffCommand(_playlist));
1027
1028         }
1029
1030         mark_write_completed = true;
1031
1032         reset_write_sources (mark_write_completed);
1033
1034         for (ci = capture_info.begin(); ci != capture_info.end(); ++ci) {
1035                 delete *ci;
1036         }
1037
1038         if (_playlist) {
1039                 midi_playlist()->clear_note_trackers ();
1040         }
1041
1042         capture_info.clear ();
1043         capture_start_frame = 0;
1044 }
1045
1046 void
1047 MidiDiskstream::transport_looped (nframes_t transport_frame)
1048 {
1049         if (was_recording) {
1050
1051                 // adjust the capture length knowing that the data will be recorded to disk
1052                 // only necessary after the first loop where we're recording
1053                 if (capture_info.size() == 0) {
1054                         capture_captured += _capture_offset;
1055
1056                         if (_alignment_style == ExistingMaterial) {
1057                                 capture_captured += _session.worst_output_latency();
1058                         } else {
1059                                 capture_captured += _roll_delay;
1060                         }
1061                 }
1062
1063                 finish_capture (true);
1064
1065                 // the next region will start recording via the normal mechanism
1066                 // we'll set the start position to the current transport pos
1067                 // no latency adjustment or capture offset needs to be made, as that already happened the first time
1068                 capture_start_frame = transport_frame;
1069                 first_recordable_frame = transport_frame; // mild lie
1070                 last_recordable_frame = max_frames;
1071                 was_recording = true;
1072         }
1073 }
1074
1075 void
1076 MidiDiskstream::finish_capture (bool /*rec_monitors_input*/)
1077 {
1078         was_recording = false;
1079
1080         if (capture_captured == 0) {
1081                 return;
1082         }
1083
1084         // Why must we destroy?
1085         assert(!destructive());
1086
1087         CaptureInfo* ci = new CaptureInfo;
1088
1089         ci->start  = capture_start_frame;
1090         ci->frames = capture_captured;
1091
1092         /* XXX theoretical race condition here. Need atomic exchange ?
1093            However, the circumstances when this is called right
1094            now (either on record-disable or transport_stopped)
1095            mean that no actual race exists. I think ...
1096            We now have a capture_info_lock, but it is only to be used
1097            to synchronize in the transport_stop and the capture info
1098            accessors, so that invalidation will not occur (both non-realtime).
1099         */
1100
1101         // cerr << "Finish capture, add new CI, " << ci->start << '+' << ci->frames << endl;
1102
1103         capture_info.push_back (ci);
1104         capture_captured = 0;
1105 }
1106
1107 void
1108 MidiDiskstream::set_record_enabled (bool yn)
1109 {
1110         if (!recordable() || !_session.record_enabling_legal()) {
1111                 return;
1112         }
1113
1114         assert(!destructive());
1115
1116         /* yes, i know that this not proof against race conditions, but its
1117            good enough. i think.
1118         */
1119
1120         if (record_enabled() != yn) {
1121                 if (yn) {
1122                         engage_record_enable ();
1123                 } else {
1124                         disengage_record_enable ();
1125                 }
1126         }
1127 }
1128
1129 void
1130 MidiDiskstream::engage_record_enable ()
1131 {
1132     bool rolling = _session.transport_speed() != 0.0f;
1133
1134         g_atomic_int_set (&_record_enabled, 1);
1135
1136         if (_source_port && Config->get_monitoring_model() == HardwareMonitoring) {
1137                 _source_port->request_monitor_input (!(_session.config.get_auto_input() && rolling));
1138         }
1139
1140         // FIXME: Why is this necessary?  Isn't needed for AudioDiskstream...
1141         if (!_write_source)
1142                 use_new_write_source();
1143
1144         _write_source->mark_streaming_midi_write_started (_note_mode, _session.transport_frame());
1145
1146         RecordEnableChanged (); /* EMIT SIGNAL */
1147 }
1148
1149 void
1150 MidiDiskstream::disengage_record_enable ()
1151 {
1152         g_atomic_int_set (&_record_enabled, 0);
1153         if (_source_port && Config->get_monitoring_model() == HardwareMonitoring) {
1154                 if (_source_port) {
1155                         _source_port->request_monitor_input (false);
1156                 }
1157         }
1158
1159         RecordEnableChanged (); /* EMIT SIGNAL */
1160 }
1161
1162 XMLNode&
1163 MidiDiskstream::get_state ()
1164 {
1165         XMLNode* node = new XMLNode ("MidiDiskstream");
1166         char buf[64];
1167         LocaleGuard lg (X_("POSIX"));
1168
1169         snprintf (buf, sizeof(buf), "0x%x", _flags);
1170         node->add_property ("flags", buf);
1171
1172         node->add_property("channel-mode", enum_2_string(get_channel_mode()));
1173
1174         snprintf (buf, sizeof(buf), "0x%x", get_channel_mask());
1175         node->add_property("channel-mask", buf);
1176
1177         node->add_property ("playlist", _playlist->name());
1178
1179         snprintf (buf, sizeof(buf), "%f", _visible_speed);
1180         node->add_property ("speed", buf);
1181
1182         node->add_property("name", _name);
1183         id().print(buf, sizeof(buf));
1184         node->add_property("id", buf);
1185
1186         if (_write_source && _session.get_record_enabled()) {
1187
1188                 XMLNode* cs_child = new XMLNode (X_("CapturingSources"));
1189                 XMLNode* cs_grandchild;
1190
1191                 cs_grandchild = new XMLNode (X_("file"));
1192                 cs_grandchild->add_property (X_("path"), _write_source->path());
1193                 cs_child->add_child_nocopy (*cs_grandchild);
1194
1195                 /* store the location where capture will start */
1196
1197                 Location* pi;
1198
1199                 if (_session.config.get_punch_in() && ((pi = _session.locations()->auto_punch_location()) != 0)) {
1200                         snprintf (buf, sizeof (buf), "%" PRId64, pi->start());
1201                 } else {
1202                         snprintf (buf, sizeof (buf), "%" PRId64, _session.transport_frame());
1203                 }
1204
1205                 cs_child->add_property (X_("at"), buf);
1206                 node->add_child_nocopy (*cs_child);
1207         }
1208
1209         if (_extra_xml) {
1210                 node->add_child_copy (*_extra_xml);
1211         }
1212
1213         return* node;
1214 }
1215
1216 int
1217 MidiDiskstream::set_state (const XMLNode& node, int /*version*/)
1218 {
1219         const XMLProperty* prop;
1220         XMLNodeList nlist = node.children();
1221         XMLNodeIterator niter;
1222         XMLNode* capture_pending_node = 0;
1223         LocaleGuard lg (X_("POSIX"));
1224
1225         in_set_state = true;
1226
1227         for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
1228                 /*if ((*niter)->name() == IO::state_node_name) {
1229                         deprecated_io_node = new XMLNode (**niter);
1230                 }*/
1231                 assert ((*niter)->name() != IO::state_node_name);
1232
1233                 if ((*niter)->name() == X_("CapturingSources")) {
1234                         capture_pending_node = *niter;
1235                 }
1236         }
1237
1238         /* prevent write sources from being created */
1239
1240         in_set_state = true;
1241
1242         if ((prop = node.property ("name")) != 0) {
1243                 _name = prop->value();
1244         }
1245
1246         if ((prop = node.property ("id")) != 0) {
1247                 _id = prop->value ();
1248         }
1249
1250         if ((prop = node.property ("flags")) != 0) {
1251                 _flags = Flag (string_2_enum (prop->value(), _flags));
1252         }
1253
1254         ChannelMode channel_mode = AllChannels;
1255         if ((prop = node.property ("channel-mode")) != 0) {
1256                 channel_mode = ChannelMode (string_2_enum(prop->value(), channel_mode));
1257         }
1258
1259         unsigned int channel_mask = 0xFFFF;
1260         if ((prop = node.property ("channel-mask")) != 0) {
1261                 sscanf (prop->value().c_str(), "0x%x", &channel_mask);
1262                 if (channel_mask & (~0xFFFF)) {
1263                         warning << _("MidiDiskstream: XML property channel-mask out of range") << endmsg;
1264                 }
1265         }
1266
1267         set_channel_mode(channel_mode, channel_mask);
1268
1269         if ((prop = node.property ("playlist")) == 0) {
1270                 return -1;
1271         }
1272
1273         {
1274                 bool had_playlist = (_playlist != 0);
1275
1276                 if (find_and_use_playlist (prop->value())) {
1277                         return -1;
1278                 }
1279
1280                 if (!had_playlist) {
1281                         _playlist->set_orig_diskstream_id (_id);
1282                 }
1283
1284                 if (capture_pending_node) {
1285                         use_pending_capture_data (*capture_pending_node);
1286                 }
1287
1288         }
1289
1290         if ((prop = node.property ("speed")) != 0) {
1291                 double sp = atof (prop->value().c_str());
1292
1293                 if (realtime_set_speed (sp, false)) {
1294                         non_realtime_set_speed ();
1295                 }
1296         }
1297
1298         in_set_state = false;
1299
1300         /* make sure this is clear before we do anything else */
1301
1302         // FIXME?
1303         //_capturing_source = 0;
1304
1305         /* write sources are handled when we handle the input set
1306            up of the IO that owns this DS (::non_realtime_input_change())
1307         */
1308
1309         in_set_state = false;
1310
1311         return 0;
1312 }
1313
1314 int
1315 MidiDiskstream::use_new_write_source (uint32_t n)
1316 {
1317         if (!recordable()) {
1318                 return 1;
1319         }
1320
1321         assert(n == 0);
1322
1323         if (_write_source) {
1324
1325                 if (_write_source->is_empty ()) {
1326                         _write_source->mark_for_remove ();
1327                         _write_source.reset();
1328                 } else {
1329                         _write_source.reset();
1330                 }
1331         }
1332
1333         try {
1334                 _write_source = boost::dynamic_pointer_cast<SMFSource>(_session.create_midi_source_for_session (*this));
1335                 if (!_write_source) {
1336                         throw failed_constructor();
1337                 }
1338         }
1339
1340         catch (failed_constructor &err) {
1341                 error << string_compose (_("%1:%2 new capture file not initialized correctly"), _name, n) << endmsg;
1342                 _write_source.reset();
1343                 return -1;
1344         }
1345
1346         _write_source->set_allow_remove_if_empty (true);
1347         _write_source->mark_streaming_midi_write_started (_note_mode, _session.transport_frame());
1348
1349         return 0;
1350 }
1351
1352 void
1353 MidiDiskstream::reset_write_sources (bool mark_write_complete, bool /*force*/)
1354 {
1355         if (!_session.writable() || !recordable()) {
1356                 return;
1357         }
1358
1359         if (_write_source && mark_write_complete) {
1360                 _write_source->mark_streaming_write_completed ();
1361         }
1362
1363         use_new_write_source (0);
1364 }
1365
1366 int
1367 MidiDiskstream::rename_write_sources ()
1368 {
1369         if (_write_source != 0) {
1370                 _write_source->set_source_name (_name.val(), destructive());
1371                 /* XXX what to do if this fails ? */
1372         }
1373         return 0;
1374 }
1375
1376 void
1377 MidiDiskstream::set_block_size (nframes_t /*nframes*/)
1378 {
1379 }
1380
1381 void
1382 MidiDiskstream::allocate_temporary_buffers ()
1383 {
1384 }
1385
1386 void
1387 MidiDiskstream::monitor_input (bool yn)
1388 {
1389         if (_source_port)
1390                 _source_port->ensure_monitor_input (yn);
1391 }
1392
1393 void
1394 MidiDiskstream::set_align_style_from_io ()
1395 {
1396         bool have_physical = false;
1397
1398         if (_io == 0) {
1399                 return;
1400         }
1401
1402         get_input_sources ();
1403
1404         if (_source_port && _source_port->flags() & JackPortIsPhysical) {
1405                 have_physical = true;
1406         }
1407
1408         if (have_physical) {
1409                 set_align_style (ExistingMaterial);
1410         } else {
1411                 set_align_style (CaptureTime);
1412         }
1413 }
1414
1415
1416 float
1417 MidiDiskstream::playback_buffer_load () const
1418 {
1419         return (float) ((double) _playback_buf->read_space()/
1420                         (double) _playback_buf->capacity());
1421 }
1422
1423 float
1424 MidiDiskstream::capture_buffer_load () const
1425 {
1426         return (float) ((double) _capture_buf->write_space()/
1427                         (double) _capture_buf->capacity());
1428 }
1429
1430 int
1431 MidiDiskstream::use_pending_capture_data (XMLNode& /*node*/)
1432 {
1433         return 0;
1434 }
1435
1436 /** Writes playback events in the given range to \a dst, translating time stamps
1437  * so that an event at \a start has time = 0
1438  */
1439 void
1440 MidiDiskstream::get_playback (MidiBuffer& dst, nframes_t start, nframes_t end)
1441 {
1442         dst.clear();
1443         assert(dst.size() == 0);
1444
1445         // Reverse.  ... We just don't do reverse, ok?  Back off.
1446         if (end <= start) {
1447                 return;
1448         }
1449
1450         // Translates stamps to be relative to start
1451
1452
1453 #ifndef NDEBUG
1454         const size_t events_read = _playback_buf->read(dst, start, end);
1455         DEBUG_TRACE (DEBUG::MidiDiskstreamIO, string_compose ("%1 MDS events read %2 range %3 .. %4 rspace %5 wspace %6\n", _name, events_read, start, end,
1456                                                               _playback_buf->read_space(), _playback_buf->write_space()));
1457 #else
1458         _playback_buf->read(dst, start, end);
1459 #endif
1460
1461         gint32 frames_read = end - start;
1462         g_atomic_int_add(&_frames_read_from_ringbuffer, frames_read);
1463 }
1464