2b4f8a82554b78495c7f0b9b0b80b253e6d7d25b
[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())
48 {
49         _read_data_count = 0;
50         _write_data_count = 0;
51 }
52
53 MidiSource::MidiSource (Session& s, const XMLNode& node) 
54         : Source (s, node)
55         , _model(new MidiModel())
56 {
57         _read_data_count = 0;
58         _write_data_count = 0;
59
60         if (set_state (node)) {
61                 throw failed_constructor();
62         }
63 }
64
65 MidiSource::~MidiSource ()
66 {
67         delete _model;
68 }
69
70 XMLNode&
71 MidiSource::get_state ()
72 {
73         XMLNode& node (Source::get_state());
74
75         if (_captured_for.length()) {
76                 node.add_property ("captured-for", _captured_for);
77         }
78
79         return node;
80 }
81
82 int
83 MidiSource::set_state (const XMLNode& node)
84 {
85         const XMLProperty* prop;
86
87         Source::set_state (node);
88
89         if ((prop = node.property ("captured-for")) != 0) {
90                 _captured_for = prop->value();
91         }
92
93         return 0;
94 }
95
96 nframes_t
97 MidiSource::read (MidiRingBuffer& dst, nframes_t start, nframes_t cnt, nframes_t stamp_offset) const
98 {
99         Glib::Mutex::Lock lm (_lock);
100         return read_unlocked (dst, start, cnt, stamp_offset);
101 }
102
103 nframes_t
104 MidiSource::write (MidiRingBuffer& dst, nframes_t cnt)
105 {
106         Glib::Mutex::Lock lm (_lock);
107         return write_unlocked (dst, cnt);
108 }
109
110 bool
111 MidiSource::file_changed (string path)
112 {
113         struct stat stat_file;
114
115         int e1 = stat (path.c_str(), &stat_file);
116         
117         return ( !e1 );
118 }
119