Playback from MIDI model, playback of clicked-in events.
[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
34 #include <ardour/midi_source.h>
35 #include <ardour/midi_ring_buffer.h>
36
37 #include "i18n.h"
38
39 using namespace std;
40 using namespace ARDOUR;
41 using namespace PBD;
42
43 sigc::signal<void,MidiSource *> MidiSource::MidiSourceCreated;
44
45 MidiSource::MidiSource (Session& s, string name)
46         : Source (s, name, DataType::MIDI)
47         , _model(new MidiModel(s))
48         , _model_loaded (false)
49 {
50         _read_data_count = 0;
51         _write_data_count = 0;
52 }
53
54 MidiSource::MidiSource (Session& s, const XMLNode& node) 
55         : Source (s, node)
56         , _model(new MidiModel(s))
57         , _model_loaded (false)
58 {
59         _read_data_count = 0;
60         _write_data_count = 0;
61
62         if (set_state (node)) {
63                 throw failed_constructor();
64         }
65 }
66
67 MidiSource::~MidiSource ()
68 {
69         delete _model;
70 }
71
72 XMLNode&
73 MidiSource::get_state ()
74 {
75         XMLNode& node (Source::get_state());
76
77         if (_captured_for.length()) {
78                 node.add_property ("captured-for", _captured_for);
79         }
80
81         return node;
82 }
83
84 int
85 MidiSource::set_state (const XMLNode& node)
86 {
87         const XMLProperty* prop;
88
89         Source::set_state (node);
90
91         if ((prop = node.property ("captured-for")) != 0) {
92                 _captured_for = prop->value();
93         }
94
95         return 0;
96 }
97
98 nframes_t
99 MidiSource::read (MidiRingBuffer& dst, nframes_t start, nframes_t cnt, nframes_t stamp_offset) const
100 {
101         Glib::Mutex::Lock lm (_lock);
102         if (_model_loaded && _model) {
103                 /*const size_t n_events = */_model->read(dst, start, cnt, stamp_offset);
104                 //cout << "Read " << n_events << " events from model." << endl;
105                 return cnt;
106         } else {
107                 return read_unlocked (dst, start, cnt, stamp_offset);
108         }
109 }
110
111 nframes_t
112 MidiSource::write (MidiRingBuffer& dst, nframes_t cnt)
113 {
114         Glib::Mutex::Lock lm (_lock);
115         return write_unlocked (dst, cnt);
116 }
117
118 bool
119 MidiSource::file_changed (string path)
120 {
121         struct stat stat_file;
122
123         int e1 = stat (path.c_str(), &stat_file);
124         
125         return ( !e1 );
126 }
127
128 void
129 MidiSource::mark_streaming_midi_write_started (NoteMode mode)
130 {
131         if (_model) {
132                 _model->set_note_mode(mode);
133                 _model->start_write();
134         }
135 }
136
137 void
138 MidiSource::mark_streaming_write_started ()
139 {
140         if (_model)
141                 _model->start_write();
142 }
143
144 void
145 MidiSource::mark_streaming_write_completed ()
146 {
147         if (_model)
148                 _model->end_write(false); // FIXME: param?
149 }
150