Get MidiRegionView's hands on MidiModel for editing operations to come.
[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 }
70
71 XMLNode&
72 MidiSource::get_state ()
73 {
74         XMLNode& node (Source::get_state());
75
76         if (_captured_for.length()) {
77                 node.add_property ("captured-for", _captured_for);
78         }
79
80         return node;
81 }
82
83 int
84 MidiSource::set_state (const XMLNode& node)
85 {
86         const XMLProperty* prop;
87
88         Source::set_state (node);
89
90         if ((prop = node.property ("captured-for")) != 0) {
91                 _captured_for = prop->value();
92         }
93
94         return 0;
95 }
96
97 nframes_t
98 MidiSource::read (MidiRingBuffer& dst, nframes_t start, nframes_t cnt, nframes_t stamp_offset) const
99 {
100         Glib::Mutex::Lock lm (_lock);
101         if (_model_loaded && _model) {
102                 /*const size_t n_events = */_model->read(dst, start, cnt, stamp_offset);
103                 //cout << "Read " << n_events << " events from model." << endl;
104                 return cnt;
105         } else {
106                 return read_unlocked (dst, start, cnt, stamp_offset);
107         }
108 }
109
110 nframes_t
111 MidiSource::write (MidiRingBuffer& dst, nframes_t cnt)
112 {
113         Glib::Mutex::Lock lm (_lock);
114         return write_unlocked (dst, cnt);
115 }
116
117 bool
118 MidiSource::file_changed (string path)
119 {
120         struct stat stat_file;
121
122         int e1 = stat (path.c_str(), &stat_file);
123         
124         return ( !e1 );
125 }
126
127 void
128 MidiSource::mark_streaming_midi_write_started (NoteMode mode)
129 {
130         if (_model) {
131                 _model->set_note_mode(mode);
132                 _model->start_write();
133         }
134 }
135
136 void
137 MidiSource::mark_streaming_write_started ()
138 {
139         if (_model)
140                 _model->start_write();
141 }
142
143 void
144 MidiSource::mark_streaming_write_completed ()
145 {
146         if (_model)
147                 _model->end_write(false); // FIXME: param?
148 }
149