allow zero-length SMF files on disk again; fix some gcc 4.X optimization-on compile...
[ardour.git] / libs / ardour / midi_port.cc
1 /*
2     Copyright (C) 2006 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include <cassert>
20 #include <iostream>
21
22 #include "ardour/midi_port.h"
23 #include "ardour/data_type.h"
24
25 using namespace ARDOUR;
26 using namespace std;
27
28 MidiPort::MidiPort (const std::string& name, Flags flags)
29         : Port (name, DataType::MIDI, flags)
30         , _has_been_mixed_down (false)
31         , _resolve_in_process (false)
32 {
33         _buffer = new MidiBuffer (raw_buffer_size(0));
34 }
35
36 MidiPort::~MidiPort()
37 {
38         delete _buffer;
39 }
40
41 void
42 MidiPort::cycle_start (nframes_t nframes)
43 {
44         _buffer->clear ();
45         assert (_buffer->size () == 0);
46
47         if (sends_output ()) {
48                 jack_midi_clear_buffer (jack_port_get_buffer (_jack_port, nframes));
49         }
50 }
51
52 MidiBuffer &
53 MidiPort::get_midi_buffer (nframes_t nframes, nframes_t offset)
54 {
55         if (_has_been_mixed_down) {
56                 return *_buffer;
57         }
58
59         if (receives_input ()) {
60
61                 void* jack_buffer = jack_port_get_buffer (_jack_port, nframes);
62                 const nframes_t event_count = jack_midi_get_event_count(jack_buffer);
63
64                 assert (event_count < _buffer->capacity());
65
66                 /* suck all relevant MIDI events from the JACK MIDI port buffer
67                    into our MidiBuffer
68                 */
69
70                 nframes_t off = offset + _port_offset;
71
72                 for (nframes_t i = 0; i < event_count; ++i) {
73
74                         jack_midi_event_t ev;
75
76                         jack_midi_event_get (&ev, jack_buffer, i);
77
78 #if 0
79                         if (ev.buffer[0] == 0xfe) {
80                                 /* throw away active sensing */
81                                 continue;
82                         }
83 #endif                       
84                         if (ev.time > off && ev.time < off+nframes) {
85                                 _buffer->push_back (ev);
86                         }
87                 }
88
89                 if (nframes) {
90                         _has_been_mixed_down = true;
91                 }
92
93         } else {
94                 _buffer->silence (nframes);
95         }
96
97         if (nframes) {
98                 _has_been_mixed_down = true;
99         }
100
101         return *_buffer;
102 }
103
104
105 void
106 MidiPort::cycle_end (nframes_t /*nframes*/)
107 {
108         _has_been_mixed_down = false;
109 }
110
111 void
112 MidiPort::cycle_split ()
113 {
114         _has_been_mixed_down = false;
115 }
116
117 void
118 MidiPort::flush_buffers (nframes_t nframes, nframes64_t time, nframes_t offset)
119 {
120         if (sends_output ()) {
121
122                 void* jack_buffer = jack_port_get_buffer (_jack_port, nframes);
123
124                 // Feed the data through the MidiStateTracker
125                 bool did_loop;
126
127                 _midi_state_tracker.track (_buffer->begin(), _buffer->end(), did_loop);
128
129                 if (did_loop || _resolve_in_process) {
130                         /* add necessary note offs */
131                         _midi_state_tracker.resolve_notes (*_buffer, time);
132                 }
133
134                 _resolve_in_process = false;
135
136                 for (MidiBuffer::iterator i = _buffer->begin(); i != _buffer->end(); ++i) {
137                         const Evoral::Event<nframes_t>& ev = *i;
138
139                         // event times are in frames, relative to cycle start
140
141                         // XXX split cycle start or cycle start?
142
143                         assert(ev.time() < (nframes+offset+_port_offset));
144
145                         if (ev.time() >= offset + _port_offset) {
146                                 if (jack_midi_event_write (jack_buffer, (jack_nframes_t) ev.time(), ev.buffer(), ev.size()) != 0) {
147                                         cerr << "write failed, drop flushed note off on the floor, time " << ev.time() << " > " << offset << " + " << _port_offset 
148                                              << endl;                   
149                                 }
150                         } else {
151                                 cerr << "drop flushed note off on the floor, time " << ev.time() << " > " << offset << " + " << _port_offset 
152                                      << endl;
153                         }
154                 }
155         }
156 }
157
158 void
159 MidiPort::transport_stopped ()
160 {
161         _resolve_in_process = true;
162 }
163
164 size_t
165 MidiPort::raw_buffer_size (nframes_t nframes) const
166 {
167         return jack_midi_max_event_size(jack_port_get_buffer(_jack_port, nframes));
168 }
169