Interpret tempo time based on read position (not source timeline position which is...
[ardour.git] / libs / ardour / midi_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 #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>
30
31 #include <pbd/xml++.h>
32 #include <pbd/pthread_utils.h>
33 #include <pbd/basename.h>
34
35 #include <ardour/audioengine.h>
36 #include <ardour/midi_model.h>
37 #include <ardour/midi_ring_buffer.h>
38 #include <ardour/midi_source.h>
39 #include <ardour/session.h>
40 #include <ardour/session_directory.h>
41 #include <ardour/source_factory.h>
42 #include <ardour/tempo.h>
43
44 #include "i18n.h"
45
46 using namespace std;
47 using namespace ARDOUR;
48 using namespace PBD;
49
50 sigc::signal<void,MidiSource *> MidiSource::MidiSourceCreated;
51
52 MidiSource::MidiSource (Session& s, string name, Source::Flag flags)
53         : Source (s, DataType::MIDI, name, flags)
54         , _read_data_count(0)
55         , _write_data_count(0)
56         , _writing (false)
57         , _last_read_end(0)
58 {
59 }
60
61 MidiSource::MidiSource (Session& s, const XMLNode& node) 
62         : Source (s, node)
63         , _read_data_count(0)
64         , _write_data_count(0)
65         , _writing (false)
66         , _last_read_end(0)
67 {
68         _read_data_count = 0;
69         _write_data_count = 0;
70
71         if (set_state (node)) {
72                 throw failed_constructor();
73         }
74 }
75
76 MidiSource::~MidiSource ()
77 {
78 }
79
80 XMLNode&
81 MidiSource::get_state ()
82 {
83         XMLNode& node (Source::get_state());
84
85         if (_captured_for.length()) {
86                 node.add_property ("captured-for", _captured_for);
87         }
88
89         return node;
90 }
91
92 int
93 MidiSource::set_state (const XMLNode& node)
94 {
95         const XMLProperty* prop;
96
97         if ((prop = node.property ("captured-for")) != 0) {
98                 _captured_for = prop->value();
99         }
100
101         return 0;
102 }
103
104 void
105 MidiSource::invalidate ()
106 {
107         _model_iter.invalidate();
108 }
109
110 nframes_t
111 MidiSource::midi_read (MidiRingBuffer<nframes_t>& dst, nframes_t position,
112                 nframes_t start, nframes_t cnt,
113                 nframes_t stamp_offset, nframes_t negative_stamp_offset) const
114 {
115         Glib::Mutex::Lock lm (_lock);
116
117         BeatsFramesConverter converter(_session, position);
118
119         if (_model) {
120 #define BEATS_TO_FRAMES(t) (converter.to(t) + stamp_offset - negative_stamp_offset)
121
122                 Evoral::Sequence<double>::const_iterator& i = _model_iter;
123                 
124                 if (_last_read_end == 0 || start != _last_read_end || !i.valid()) {
125                         cerr << "MidiSource::midi_read seeking to frame " << start << endl;
126                         for (i = _model->begin(); i != _model->end(); ++i) {
127                                 if (BEATS_TO_FRAMES(i->time()) >= start) {
128                                         break;
129                                 }
130                         }
131                 }
132                 
133                 _last_read_end = start + cnt;
134
135                 for (; i != _model->end(); ++i) {
136                         const nframes_t time_frames = BEATS_TO_FRAMES(i->time());
137                         if (time_frames < start + cnt) {
138                                 dst.write(time_frames, i->event_type(), i->size(), i->buffer());
139                         } else {
140                                 break;
141                         }
142                 }
143                 return cnt;
144         } else {
145                 return read_unlocked (dst, position, start, cnt, stamp_offset, negative_stamp_offset);
146         }
147 }
148
149 nframes_t
150 MidiSource::midi_write (MidiRingBuffer<nframes_t>& dst, nframes_t position, nframes_t cnt)
151 {
152         Glib::Mutex::Lock lm (_lock);
153         return write_unlocked (dst, position, cnt);
154 }
155
156 bool
157 MidiSource::file_changed (string path)
158 {
159         struct stat stat_file;
160
161         int e1 = stat (path.c_str(), &stat_file);
162         
163         return !e1;
164 }
165
166 void
167 MidiSource::mark_streaming_midi_write_started (NoteMode mode, nframes_t start_frame)
168 {
169         set_timeline_position(start_frame);
170
171         if (_model) {
172                 _model->set_note_mode(mode);
173                 _model->start_write();
174         }
175         
176         _writing = true;
177 }
178
179 void
180 MidiSource::mark_streaming_write_started ()
181 {
182         if (_model) {
183                 _model->start_write();
184         }
185
186         _writing = true;
187 }
188
189 void
190 MidiSource::mark_streaming_write_completed ()
191 {
192         if (_model) {
193                 _model->end_write(false); // FIXME: param?
194         }
195
196         _writing = false;
197 }
198
199 void
200 MidiSource::session_saved()
201 {
202         flush_midi();
203
204         if (_model && _model->edited()) {
205                 string newname;
206                 const string basename = PBD::basename_nosuffix(_name);
207                 string::size_type last_dash = basename.find_last_of("-");
208                 if (last_dash == string::npos || last_dash == basename.find_first_of("-")) {
209                         newname = basename + "-1";
210                 } else {
211                         stringstream ss(basename.substr(last_dash+1));
212                         unsigned write_count = 0;
213                         ss >> write_count;
214                         cerr << "WRITE COUNT: " << write_count << endl;
215                         ++write_count; // start at 1
216                         ss.clear();
217                         ss << basename.substr(0, last_dash) << "-" << write_count;
218                         newname = ss.str();
219                 }
220
221                 string newpath = _session.session_directory().midi_path().to_string() +"/"+ newname + ".mid";
222
223                 boost::shared_ptr<MidiSource> newsrc = boost::dynamic_pointer_cast<MidiSource>(
224                                 SourceFactory::createWritable(DataType::MIDI, _session,
225                                                 newpath, true, false, _session.frame_rate()));
226
227                 newsrc->set_timeline_position(_timeline_position);
228                 _model->write_to(newsrc);
229
230                 // cyclic dependency here, ugly :(
231                 newsrc->set_model(_model);
232                 _model->set_midi_source(newsrc.get());
233                 
234                 newsrc->flush_midi();
235
236                 Switched.emit(newsrc);
237         }
238 }
239
240 void
241 MidiSource::set_note_mode(NoteMode mode)
242 {
243         if (_model) {
244                 _model->set_note_mode(mode);
245         }
246 }
247