ardour
midi_source.cc
Go to the documentation of this file.
1 /*
2  Copyright (C) 2006 Paul Davis
3  Author: David Robillard
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 #include <sys/stat.h>
21 #include <unistd.h>
22 #include <fcntl.h>
23 #include <float.h>
24 #include <cerrno>
25 #include <ctime>
26 #include <cmath>
27 #include <iomanip>
28 #include <algorithm>
29 
30 #include <glibmm/fileutils.h>
31 #include <glibmm/miscutils.h>
32 
33 #include "pbd/xml++.h"
34 #include "pbd/pthread_utils.h"
35 #include "pbd/basename.h"
36 
37 #include "evoral/Control.hpp"
38 #include "evoral/EventSink.hpp"
39 
40 #include "ardour/debug.h"
41 #include "ardour/file_source.h"
43 #include "ardour/midi_model.h"
44 #include "ardour/midi_source.h"
46 #include "ardour/session.h"
48 #include "ardour/source_factory.h"
49 
50 #include "i18n.h"
51 
52 namespace ARDOUR { template <typename T> class MidiRingBuffer; }
53 
54 using namespace std;
55 using namespace ARDOUR;
56 using namespace PBD;
57 
58 PBD::Signal1<void,MidiSource*> MidiSource::MidiSourceCreated;
59 
60 MidiSource::MidiSource (Session& s, string name, Source::Flag flags)
61  : Source(s, DataType::MIDI, name, flags)
62  , _writing(false)
63  , _model_iter_valid(false)
64  , _length_beats(0.0)
65  , _last_read_end(0)
66  , _capture_length(0)
67  , _capture_loop_length(0)
68 {
69 }
70 
72  : Source(s, node)
73  , _writing(false)
74  , _model_iter_valid(false)
75  , _length_beats(0.0)
76  , _last_read_end(0)
77  , _capture_length(0)
78  , _capture_loop_length(0)
79 {
81  throw failed_constructor();
82  }
83 }
84 
86 {
87 }
88 
89 XMLNode&
91 {
92  XMLNode& node (Source::get_state());
93 
94  if (_captured_for.length()) {
95  node.add_property ("captured-for", _captured_for);
96  }
97 
98  for (InterpolationStyleMap::const_iterator i = _interpolation_style.begin(); i != _interpolation_style.end(); ++i) {
99  XMLNode* child = node.add_child (X_("InterpolationStyle"));
100  child->add_property (X_("parameter"), EventTypeMap::instance().to_symbol (i->first));
101  child->add_property (X_("style"), enum_2_string (i->second));
102  }
103 
104  for (AutomationStateMap::const_iterator i = _automation_state.begin(); i != _automation_state.end(); ++i) {
105  XMLNode* child = node.add_child (X_("AutomationState"));
106  child->add_property (X_("parameter"), EventTypeMap::instance().to_symbol (i->first));
107  child->add_property (X_("state"), enum_2_string (i->second));
108  }
109 
110  return node;
111 }
112 
113 int
114 MidiSource::set_state (const XMLNode& node, int /*version*/)
115 {
116  const XMLProperty* prop;
117  if ((prop = node.property ("captured-for")) != 0) {
118  _captured_for = prop->value();
119  }
120 
121  XMLNodeList children = node.children ();
122  for (XMLNodeConstIterator i = children.begin(); i != children.end(); ++i) {
123  if ((*i)->name() == X_("InterpolationStyle")) {
124  if ((prop = (*i)->property (X_("parameter"))) == 0) {
125  error << _("Missing parameter property on InterpolationStyle") << endmsg;
126  return -1;
127  }
129 
130  if ((prop = (*i)->property (X_("style"))) == 0) {
131  error << _("Missing style property on InterpolationStyle") << endmsg;
132  return -1;
133  }
135  string_2_enum (prop->value(), s));
136  set_interpolation_of (p, s);
137 
138  } else if ((*i)->name() == X_("AutomationState")) {
139  if ((prop = (*i)->property (X_("parameter"))) == 0) {
140  error << _("Missing parameter property on AutomationState") << endmsg;
141  return -1;
142  }
144 
145  if ((prop = (*i)->property (X_("state"))) == 0) {
146  error << _("Missing state property on AutomationState") << endmsg;
147  return -1;
148  }
149  AutoState s = static_cast<AutoState> (string_2_enum (prop->value(), s));
151  }
152  }
153 
154  return 0;
155 }
156 
157 bool
159 {
160  return !_length_beats;
161 }
162 
165 {
166  if (!_length_beats) {
167  return 0;
168  }
169 
170  BeatsFramesConverter converter(_session.tempo_map(), pos);
171  return converter.to(_length_beats);
172 }
173 
174 void
176 {
177  // You're not the boss of me!
178 }
179 
180 void
182 {
183  _model_iter_valid = false;
184  _model_iter.invalidate(notes);
185 }
186 
190  framepos_t source_start,
192  framecnt_t cnt,
193  MidiStateTracker* tracker,
194  MidiChannelFilter* filter,
195  const std::set<Evoral::Parameter>& filtered) const
196 {
197  BeatsFramesConverter converter(_session.tempo_map(), source_start);
198 
200  string_compose ("MidiSource::midi_read() %5 sstart %1 start %2 cnt %3 tracker %4\n",
201  source_start, start, cnt, tracker, name()));
202 
203  if (_model) {
204  // Find appropriate model iterator
206  const bool linear_read = _last_read_end != 0 && start == _last_read_end;
207  if (!linear_read || !_model_iter_valid) {
208  // Cached iterator is invalid, search for the first event past start
209  i = _model->begin(converter.from(start), false, filtered,
210  linear_read ? &_model->active_notes() : NULL);
211  _model_iter_valid = true;
212  if (!linear_read) {
213  _model->active_notes().clear();
214  }
215  }
216 
217  _last_read_end = start + cnt;
218 
219  // Copy events in [start, start + cnt) into dst
220  for (; i != _model->end(); ++i) {
221  const framecnt_t time_frames = converter.to(i->time());
222  if (time_frames < start + cnt) {
223  if (filter && filter->filter(i->buffer(), i->size())) {
225  string_compose ("%1: filter event @ %2 type %3 size %4\n",
226  _name, time_frames + source_start, i->event_type(), i->size()));
227  continue;
228  }
229 
230  // Offset by source start to convert event time to session time
231  dst.write (time_frames + source_start, i->event_type(), i->size(), i->buffer());
232 
234  string_compose ("%1: add event @ %2 type %3 size %4\n",
235  _name, time_frames + source_start, i->event_type(), i->size()));
236 
237  if (tracker) {
238  tracker->track (*i);
239  }
240  } else {
242  string_compose ("%1: reached end with event @ %2 vs. %3\n",
243  _name, time_frames, start+cnt));
244  break;
245  }
246  }
247  return cnt;
248  } else {
249  return read_unlocked (lm, dst, source_start, start, cnt, tracker, filter);
250  }
251 }
252 
256  framepos_t source_start,
257  framecnt_t cnt)
258 {
259  const framecnt_t ret = write_unlocked (lm, source, source_start, cnt);
260 
261  if (cnt == max_framecnt) {
262  _last_read_end = 0;
263  invalidate(lm);
264  } else {
265  _capture_length += cnt;
266  }
267 
268  return ret;
269 }
270 
271 void
273 {
274  if (_model) {
275  _model->set_note_mode (mode);
276  _model->start_write ();
277  }
278 
279  _writing = true;
280 }
281 
282 void
284  framecnt_t capture_length,
285  framecnt_t loop_length)
286 {
287  /* I'm not sure if this is the best way to approach this, but
288  _capture_length needs to be set up with the transport frame
289  when a record actually starts, as it is used by
290  SMFSource::write_unlocked to decide whether incoming notes
291  are within the correct time range.
292  mark_streaming_midi_write_started (perhaps a more logical
293  place to do this) is not called at exactly the time when
294  record starts, and I don't think it necessarily can be
295  because it is not RT-safe.
296  */
297 
298  set_timeline_position(position);
299  _capture_length = capture_length;
300  _capture_loop_length = loop_length;
301 
303  _length_beats = converter.from(capture_length);
304 }
305 
306 void
308 {
309  NoteMode note_mode = _model ? _model->note_mode() : Sustained;
310  mark_streaming_midi_write_started (lock, note_mode);
311 }
312 
313 void
316  Evoral::Beats end)
317 {
318  if (_model) {
319  _model->end_write (option, end);
320 
321  /* Make captured controls discrete to play back user input exactly. */
322  for (MidiModel::Controls::iterator i = _model->controls().begin(); i != _model->controls().end(); ++i) {
323  if (i->second->list()) {
324  i->second->list()->set_interpolation(Evoral::ControlList::Discrete);
325  _interpolation_style.insert(std::make_pair(i->second->parameter(), Evoral::ControlList::Discrete));
326  }
327  }
328  }
329 
330  invalidate(lock);
331  _writing = false;
332 }
333 
334 void
336 {
338 }
339 
340 int
342 {
343  Lock newsrc_lock (newsrc->mutex ());
344 
346  newsrc->copy_interpolation_from (this);
347  newsrc->copy_automation_state_from (this);
348 
349  if (_model) {
350  if (begin == Evoral::MinBeats && end == Evoral::MaxBeats) {
351  _model->write_to (newsrc, newsrc_lock);
352  } else {
353  _model->write_section_to (newsrc, newsrc_lock, begin, end);
354  }
355  } else {
356  error << string_compose (_("programming error: %1"), X_("no model for MidiSource during ::clone()"));
357  return -1;
358  }
359 
360  newsrc->flush_midi(newsrc_lock);
361 
362  /* force a reload of the model if the range is partial */
363 
364  if (begin != Evoral::MinBeats || end != Evoral::MaxBeats) {
365  newsrc->load_model (newsrc_lock, true);
366  } else {
367  newsrc->set_model (newsrc_lock, _model);
368  }
369 
370  /* this file is not removable (but since it is MIDI, it is mutable) */
371 
372  boost::dynamic_pointer_cast<FileSource> (newsrc)->prevent_deletion ();
373 
374  return 0;
375 }
376 
377 void
379 {
380  Lock lm (_lock);
381 
382  /* this writes a copy of the data to disk.
383  XXX do we need to do this every time?
384  */
385 
386  if (_model && _model->edited()) {
387  /* The model is edited, write its contents into the current source
388  file (overwiting previous contents). */
389 
390  /* Temporarily drop our reference to the model so that as the model
391  pushes its current state to us, we don't try to update it. */
393  _model.reset ();
394 
395  /* Flush model contents to disk. */
396  mm->sync_to_source (lm);
397 
398  /* Reacquire model. */
399  _model = mm;
400 
401  } else {
402  flush_midi(lm);
403  }
404 }
405 
406 void
408 {
409  if (_model) {
410  _model->set_note_mode(mode);
411  }
412 }
413 
414 void
416 {
417  _model.reset();
418  invalidate(lock);
419  ModelChanged (); /* EMIT SIGNAL */
420 }
421 
422 void
424 {
425  _model = m;
426  invalidate(lock);
427  ModelChanged (); /* EMIT SIGNAL */
428 }
429 
432 {
433  InterpolationStyleMap::const_iterator i = _interpolation_style.find (p);
434  if (i == _interpolation_style.end()) {
436  }
437 
438  return i->second;
439 }
440 
441 AutoState
443 {
444  AutomationStateMap::const_iterator i = _automation_state.find (p);
445  if (i == _automation_state.end()) {
446  /* default to `play', otherwise if MIDI is recorded /
447  imported with controllers etc. they are by default
448  not played back, which is a little surprising.
449  */
450  return Play;
451  }
452 
453  return i->second;
454 }
455 
459 void
461 {
462  if (interpolation_of (p) == s) {
463  return;
464  }
465 
466  if (EventTypeMap::instance().interpolation_of (p) == s) {
467  /* interpolation type is being set to the default, so we don't need a note in our map */
468  _interpolation_style.erase (p);
469  } else {
470  _interpolation_style[p] = s;
471  }
472 
473  InterpolationChanged (p, s); /* EMIT SIGNAL */
474 }
475 
476 void
478 {
479  if (automation_state_of (p) == s) {
480  return;
481  }
482 
483  if (s == Play) {
484  /* automation state is being set to the default, so we don't need a note in our map */
485  _automation_state.erase (p);
486  } else {
487  _automation_state[p] = s;
488  }
489 
490  AutomationStateChanged (p, s); /* EMIT SIGNAL */
491 }
492 
493 void
495 {
497 }
498 
499 void
501 {
503 }
504 
505 void
507 {
509 
510  /* XXX: should probably emit signals here */
511 }
512 
513 void
515 {
517 
518  /* XXX: should probably emit signals here */
519 }
ARDOUR::Session & _session
virtual uint32_t write(Time time, EventType type, uint32_t size, const uint8_t *buf)=0
virtual void mark_streaming_midi_write_started(const Lock &lock, NoteMode mode)
Definition: midi_source.cc:272
virtual framecnt_t midi_read(const Lock &lock, Evoral::EventSink< framepos_t > &dst, framepos_t source_start, framepos_t start, framecnt_t cnt, MidiStateTracker *tracker, MidiChannelFilter *filter, const std::set< Evoral::Parameter > &filtered) const
Definition: midi_source.cc:188
const std::string & value() const
Definition: xml++.h:159
void mark_write_starting_now(framecnt_t position, framecnt_t capture_length, framecnt_t loop_length)
Definition: midi_source.cc:283
virtual framecnt_t midi_write(const Lock &lock, MidiRingBuffer< framepos_t > &src, framepos_t source_start, framecnt_t cnt)
Definition: midi_source.cc:254
NoteMode
Definition: types.h:204
LIBEVORAL_API const Beats MaxBeats
Definition: types.cpp:26
Glib::Threads::Mutex::Lock Lock
Definition: source.h:54
XMLNode & get_state()
Definition: midi_source.cc:90
PBD::Signal2< void, Evoral::Parameter, AutoState > AutomationStateChanged
Definition: midi_source.h:187
#define enum_2_string(e)
Definition: enumwriter.h:97
PBD::Signal0< void > ModelChanged
Definition: midi_source.h:183
shared_ptr< T > dynamic_pointer_cast(shared_ptr< U > const &r)
Definition: shared_ptr.hpp:396
void set_model(const Glib::Threads::Mutex::Lock &lock, boost::shared_ptr< MidiModel >)
Definition: midi_source.cc:423
virtual void update_length(framecnt_t)
Definition: midi_source.cc:175
TempoMap & tempo_map()
Definition: session.h:596
std::string _captured_for
Definition: midi_source.h:210
framepos_t _capture_length
Definition: midi_source.h:222
virtual void mark_streaming_write_completed(const Lock &lock)
Definition: midi_source.cc:335
AutoState automation_state_of(Evoral::Parameter) const
Definition: midi_source.cc:442
void set_interpolation_of(Evoral::Parameter, Evoral::ControlList::InterpolationStyle)
Definition: midi_source.cc:460
void set_automation_state_of(Evoral::Parameter, AutoState)
Definition: midi_source.cc:477
void track(const MidiBuffer::const_iterator &from, const MidiBuffer::const_iterator &to)
Definition: Beats.hpp:239
LIBPBD_API Transmitter error
PBD::Signal2< void, Evoral::Parameter, Evoral::ControlList::InterpolationStyle > InterpolationChanged
Definition: midi_source.h:185
const XMLNodeList & children(const std::string &str=std::string()) const
Definition: xml++.cc:329
framepos_t _timeline_position
Definition: source.h:121
LIBEVORAL_API const Beats MinBeats
Definition: types.cpp:27
void drop_model(const Glib::Threads::Mutex::Lock &lock)
Definition: midi_source.cc:415
std::ostream & endmsg(std::ostream &ostr)
Definition: transmitter.h:71
LIBARDOUR_API PBD::PropertyDescriptor< framepos_t > start
Definition: region.cc:63
XMLNode * add_child(const char *)
Definition: xml++.cc:351
Evoral::ControlList::InterpolationStyle interpolation_of(const Evoral::Parameter &param)
virtual framecnt_t write_unlocked(const Lock &lock, MidiRingBuffer< framepos_t > &source, framepos_t position, framecnt_t cnt)=0
int write_to(const Lock &lock, boost::shared_ptr< MidiSource > newsrc, Evoral::Beats begin=Evoral::MinBeats, Evoral::Beats end=Evoral::MaxBeats)
Definition: midi_source.cc:341
std::list< XMLNode * > XMLNodeList
Definition: xml++.h:44
#define _(Text)
Definition: i18n.h:11
XMLNode & get_state()
Definition: source.cc:93
virtual void set_timeline_position(framepos_t pos)
Definition: source.cc:264
Definition: getopt.h:74
#define X_(Text)
Definition: i18n.h:13
int64_t framecnt_t
Definition: types.h:76
XMLProperty * property(const char *)
Definition: xml++.cc:413
virtual bool empty() const
Definition: midi_source.cc:158
#define string_2_enum(str, e)
Definition: enumwriter.h:98
void copy_interpolation_from(boost::shared_ptr< MidiSource >)
Definition: midi_source.cc:494
AutomationStateMap _automation_state
Definition: midi_source.h:237
virtual ~MidiSource()
Definition: midi_source.cc:85
Definition: amp.h:29
Evoral::Beats _length_beats
Definition: midi_source.h:218
#define DEBUG_TRACE(bits, str)
Definition: debug.h:55
virtual void flush_midi(const Lock &lock)=0
int64_t framepos_t
Definition: types.h:66
bool sync_to_source(const Glib::Threads::Mutex::Lock &source_lock)
Definition: midi_model.cc:1443
static EventTypeMap & instance()
Evoral::ControlList::InterpolationStyle interpolation_of(Evoral::Parameter) const
Definition: midi_source.cc:431
void filter(BufferSet &bufs)
Evoral::Parameter from_symbol(const std::string &str) const
static int loading_state_version
Definition: stateful.h:90
PBD::Property< std::string > _name
framepos_t _last_read_end
Definition: midi_source.h:219
T * get() const
Definition: shared_ptr.hpp:268
framepos_t _capture_loop_length
Definition: midi_source.h:225
XMLProperty * add_property(const char *name, const std::string &value)
Glib::Threads::Mutex & mutex()
Definition: source.h:105
virtual void mark_streaming_write_started(const Lock &lock)
Definition: midi_source.cc:307
const char * name
LIBARDOUR_API uint64_t MidiSourceIO
Definition: debug.cc:28
Definition: xml++.h:95
std::string name() const
LIBARDOUR_API PBD::PropertyDescriptor< framepos_t > position
Definition: region.cc:65
void copy_automation_state_from(boost::shared_ptr< MidiSource >)
Definition: midi_source.cc:500
Evoral::Sequence< Evoral::Beats >::const_iterator _model_iter
Definition: midi_source.h:215
Definition: debug.h:30
int set_state(const XMLNode &, int version)
Definition: midi_source.cc:114
virtual framecnt_t length(framepos_t pos) const
Definition: midi_source.cc:164
virtual void load_model(const Glib::Threads::Mutex::Lock &lock, bool force_reload=false)=0
virtual framecnt_t read_unlocked(const Lock &lock, Evoral::EventSink< framepos_t > &dst, framepos_t position, framepos_t start, framecnt_t cnt, MidiStateTracker *tracker, MidiChannelFilter *filter) const =0
static const framecnt_t max_framecnt
Definition: types.h:79
Glib::Threads::Mutex _lock
Definition: source.h:123
framepos_t to(Evoral::Beats beats) const
virtual void mark_midi_streaming_write_completed(const Lock &lock, Evoral::Sequence< Evoral::Beats >::StuckNoteOption stuck_option, Evoral::Beats when=Evoral::Beats())
Definition: midi_source.cc:314
MidiSource(Session &session, std::string name, Source::Flag flags=Source::Flag(0))
void set_note_mode(const Glib::Threads::Mutex::Lock &lock, NoteMode mode)
Definition: midi_source.cc:407
boost::shared_ptr< MidiModel > _model
Definition: midi_source.h:212
XMLNodeList::const_iterator XMLNodeConstIterator
Definition: xml++.h:49
InterpolationStyleMap _interpolation_style
Definition: midi_source.h:231
Definition: ardour.h:41
std::string string_compose(const std::string &fmt, const T1 &o1)
Definition: compose.h:208
virtual void session_saved()
Definition: midi_source.cc:378
void invalidate(const Glib::Threads::Mutex::Lock &lock, std::set< Evoral::Sequence< Evoral::Beats >::WeakNotePtr > *notes=NULL)
Definition: midi_source.cc:181
AutoState
Definition: types.h:145