lots of details relating to MIDI file management; try to ignore ALSA sequencer MIDI...
[ardour2.git] / libs / ardour / midi_source.cc
blob36cd36795ab66c7fd5e4d9a39a04bcce2e6fc1fe
1 /*
2 Copyright (C) 2006 Paul Davis
3 Written by Dave Robillard, 2006
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.
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.
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.
20 #include <sys/stat.h>
21 #include <unistd.h>
22 #include <fcntl.h>
23 #include <poll.h>
24 #include <float.h>
25 #include <cerrno>
26 #include <ctime>
27 #include <cmath>
28 #include <iomanip>
29 #include <algorithm>
31 #include <glibmm/fileutils.h>
33 #include "pbd/xml++.h"
34 #include "pbd/pthread_utils.h"
35 #include "pbd/basename.h"
37 #include "ardour/audioengine.h"
38 #include "ardour/debug.h"
39 #include "ardour/midi_model.h"
40 #include "ardour/midi_ring_buffer.h"
41 #include "ardour/midi_state_tracker.h"
42 #include "ardour/midi_source.h"
43 #include "ardour/session.h"
44 #include "ardour/session_directory.h"
45 #include "ardour/source_factory.h"
46 #include "ardour/tempo.h"
48 #include "i18n.h"
50 using namespace std;
51 using namespace ARDOUR;
52 using namespace PBD;
54 PBD::Signal1<void,MidiSource*> MidiSource::MidiSourceCreated;
56 MidiSource::MidiSource (Session& s, string name, Source::Flag flags)
57 : Source(s, DataType::MIDI, name, flags)
58 , _read_data_count(0)
59 , _write_data_count(0)
60 , _writing(false)
61 , _model_iter_valid(false)
62 , _length_beats(0.0)
63 , _last_read_end(0)
64 , _last_write_end(0)
68 MidiSource::MidiSource (Session& s, const XMLNode& node)
69 : Source(s, node)
70 , _read_data_count(0)
71 , _write_data_count(0)
72 , _writing(false)
73 , _model_iter_valid(false)
74 , _length_beats(0.0)
75 , _last_read_end(0)
76 , _last_write_end(0)
78 _read_data_count = 0;
79 _write_data_count = 0;
81 if (set_state (node, Stateful::loading_state_version)) {
82 throw failed_constructor();
87 MidiSource::~MidiSource ()
91 XMLNode&
92 MidiSource::get_state ()
94 XMLNode& node (Source::get_state());
96 if (_captured_for.length()) {
97 node.add_property ("captured-for", _captured_for);
100 return node;
104 MidiSource::set_state (const XMLNode& node, int /*version*/)
106 const XMLProperty* prop;
108 if ((prop = node.property ("captured-for")) != 0) {
109 _captured_for = prop->value();
112 return 0;
115 bool
116 MidiSource::empty () const
118 return _length_beats == 0;
121 framecnt_t
122 MidiSource::length (framepos_t pos) const
124 if (_length_beats == 0) {
125 return 0;
128 BeatsFramesConverter converter(_session.tempo_map(), pos);
129 return converter.to(_length_beats);
132 void
133 MidiSource::update_length (sframes_t /*pos*/, sframes_t /*cnt*/)
135 // You're not the boss of me!
138 void
139 MidiSource::invalidate ()
141 _model_iter_valid = false;
142 _model_iter.invalidate();
145 /** @param filtered A set of parameters whose MIDI messages will not be returned */
146 nframes_t
147 MidiSource::midi_read (Evoral::EventSink<nframes_t>& dst, sframes_t source_start,
148 sframes_t start, nframes_t cnt,
149 sframes_t stamp_offset, sframes_t negative_stamp_offset,
150 MidiStateTracker* tracker,
151 std::set<Evoral::Parameter> const & filtered) const
153 Glib::Mutex::Lock lm (_lock);
155 BeatsFramesConverter converter(_session.tempo_map(), source_start);
157 if (_model) {
158 Evoral::Sequence<double>::const_iterator& i = _model_iter;
160 // If the cached iterator is invalid, search for the first event past start
161 if (_last_read_end == 0 || start != _last_read_end || !_model_iter_valid) {
162 DEBUG_TRACE (DEBUG::MidiSourceIO, string_compose ("*** %1 search for relevant iterator for %1 / %2\n", _name, source_start, start));
163 for (i = _model->begin(0, filtered); i != _model->end(); ++i) {
164 if (converter.to(i->time()) >= start) {
165 break;
168 _model_iter_valid = true;
169 } else {
170 DEBUG_TRACE (DEBUG::MidiSourceIO, string_compose ("*** %1 use cached iterator for %1 / %2\n", _name, source_start, start));
173 _last_read_end = start + cnt;
175 // Read events up to end
176 for (; i != _model->end(); ++i) {
177 const sframes_t time_frames = converter.to(i->time());
178 if (time_frames < start + cnt) {
179 dst.write(time_frames + stamp_offset - negative_stamp_offset,
180 i->event_type(), i->size(), i->buffer());
181 if (tracker) {
182 Evoral::MIDIEvent<Evoral::MusicalTime>& ev (*(Evoral::MIDIEvent<Evoral::MusicalTime>*) (&(*i)));
183 if (ev.is_note_on()) {
184 DEBUG_TRACE (DEBUG::MidiSourceIO, string_compose ("\t%1 add note on %2 @ %3\n", _name, ev.note(), time_frames));
185 tracker->add (ev.note(), ev.channel());
186 } else if (ev.is_note_off()) {
187 DEBUG_TRACE (DEBUG::MidiSourceIO, string_compose ("\t%1 add note off %2 @ %3\n", _name, ev.note(), time_frames));
188 tracker->remove (ev.note(), ev.channel());
191 } else {
192 break;
195 return cnt;
196 } else {
197 return read_unlocked (dst, source_start, start, cnt, stamp_offset, negative_stamp_offset, tracker);
201 nframes_t
202 MidiSource::midi_write (MidiRingBuffer<nframes_t>& source, sframes_t source_start, nframes_t duration)
204 Glib::Mutex::Lock lm (_lock);
205 const nframes_t ret = write_unlocked (source, source_start, duration);
206 _last_write_end += duration;
207 return ret;
210 void
211 MidiSource::mark_streaming_midi_write_started (NoteMode mode, sframes_t start_frame)
213 set_timeline_position(start_frame);
215 if (_model) {
216 _model->set_note_mode(mode);
217 _model->start_write();
220 _last_write_end = start_frame;
221 _writing = true;
224 void
225 MidiSource::mark_streaming_write_started ()
227 NoteMode note_mode = _model ? _model->note_mode() : Sustained;
228 mark_streaming_midi_write_started(note_mode, _session.transport_frame());
231 void
232 MidiSource::mark_streaming_write_completed ()
234 if (_model) {
235 _model->end_write(false);
238 _writing = false;
241 boost::shared_ptr<MidiSource>
242 MidiSource::clone (Evoral::MusicalTime begin, Evoral::MusicalTime end)
244 string newname = PBD::basename_nosuffix(_name.val());
245 string newpath;
247 /* get a new name for the MIDI file we're going to write to
250 do {
252 newname = bump_name_once (newname, '-');
253 /* XXX build path safely */
254 newpath = _session.session_directory().midi_path().to_string() +"/"+ newname + ".mid";
256 } while (Glib::file_test (newpath, Glib::FILE_TEST_EXISTS));
258 boost::shared_ptr<MidiSource> newsrc = boost::dynamic_pointer_cast<MidiSource>(
259 SourceFactory::createWritable(DataType::MIDI, _session,
260 newpath, false, _session.frame_rate()));
262 newsrc->set_timeline_position(_timeline_position);
264 if (_model) {
265 if (begin == Evoral::MinMusicalTime && end == Evoral::MaxMusicalTime) {
266 _model->write_to (newsrc);
267 } else {
268 _model->write_section_to (newsrc, begin, end);
270 } else {
271 error << string_compose (_("programming error: %1"), X_("no model for MidiSource during ::clone()"));
272 return boost::shared_ptr<MidiSource>();
275 newsrc->flush_midi();
277 /* force a reload of the model if the range is partial */
279 if (begin != Evoral::MinMusicalTime || end != Evoral::MaxMusicalTime) {
280 newsrc->load_model (true, true);
281 } else {
282 newsrc->set_model (_model);
285 return newsrc;
288 void
289 MidiSource::session_saved()
291 /* this writes a copy of the data to disk.
292 XXX do we need to do this every time?
295 flush_midi();
296 cerr << name() << " @ " << this << " length at save = " << _length_beats << endl;
298 #if 0 // old style: clone the source if necessary on every session save
299 // and switch to the new source
301 if (_model && _model->edited()) {
302 cerr << "Model exists and is edited\n";
304 boost::shared_ptr<MidiSource> newsrc = clone ();
306 if (newsrc) {
307 _model->set_midi_source (newsrc.get());
308 Switched (newsrc); /* EMIT SIGNAL */
311 #endif
314 void
315 MidiSource::set_note_mode(NoteMode mode)
317 if (_model) {
318 _model->set_note_mode(mode);
322 void
323 MidiSource::drop_model ()
325 cerr << name() << " drop model\n";
326 _model.reset();
327 ModelChanged (); /* EMIT SIGNAL */
330 void
331 MidiSource::set_model (boost::shared_ptr<MidiModel> m)
333 _model = m;
334 ModelChanged (); /* EMIT SIGNAL */