* minor cleanup
[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/jack_midi_port.h>
24 #include <ardour/data_type.h>
25
26 using namespace ARDOUR;
27 using namespace std;
28
29 MidiPort::MidiPort (const std::string& name, Flags flags, bool external, nframes_t capacity)
30         : Port (name, flags)
31         , BaseMidiPort (name, flags)
32         , PortFacade (name, flags)
33         , _has_been_mixed_down (false)
34 {
35         // FIXME: size kludge (see BufferSet::ensure_buffers)
36         // Jack needs to tell us this
37         _buffer = new MidiBuffer (capacity * 8);
38
39         if (external) {
40                 /* external ports use the same buffer for the jack port (_ext_port)
41                  * and internal ports (this) */
42                 _ext_port = new JackMidiPort (name, flags, _buffer);
43                 Port::set_name (_ext_port->name());
44         } else {
45                 /* internal ports just have a single buffer, no jack port */
46                 _ext_port = 0;
47                 set_name (name);
48         }
49
50         reset ();
51 }
52
53 MidiPort::~MidiPort()
54 {
55         if (_ext_port) {
56                 delete _ext_port;
57                 _ext_port = 0;
58         }
59 }
60
61 void
62 MidiPort::reset()
63 {
64         BaseMidiPort::reset();
65
66         if (_ext_port) {
67                 _ext_port->reset ();
68         }
69 }
70
71 void
72 MidiPort::cycle_start (nframes_t nframes, nframes_t offset)
73 {
74         if (_ext_port) {
75                 _ext_port->cycle_start (nframes, offset);
76         }
77 }
78
79 MidiBuffer &
80 MidiPort::get_midi_buffer( nframes_t nframes, nframes_t offset ) {
81         
82         if (_has_been_mixed_down)
83             return *_buffer;
84
85         if (_flags & IsInput) {
86                         
87                 if (_ext_port) {
88                 
89                         BaseMidiPort* mprt = dynamic_cast<BaseMidiPort*>(_ext_port);
90                         assert(mprt);
91                         assert(&mprt->get_midi_buffer(nframes,offset) == _buffer);
92
93                         if (!_connections.empty()) {
94                                 (*_mixdown) (_connections, _buffer, nframes, offset, false);
95                         }
96
97                 } else {
98                 
99                         if (_connections.empty()) {
100                                 _buffer->silence (nframes, offset);
101                         } else {
102                                 (*_mixdown) (_connections, _buffer, nframes, offset, true);
103                         }
104                 }
105
106         } else {
107                 _buffer->silence (nframes, offset);
108         }
109         if (nframes)
110                 _has_been_mixed_down = true;
111
112         return *_buffer;
113 }
114
115         
116 void
117 MidiPort::cycle_end (nframes_t nframes, nframes_t offset)
118 {
119         if (_ext_port) {
120                 _ext_port->cycle_end (nframes, offset);
121         }
122         _has_been_mixed_down = false;
123 }
124
125 void
126 MidiPort::flush_buffers (nframes_t nframes, nframes_t offset)
127 {
128         if (_ext_port) {
129                 _ext_port->flush_buffers (nframes, offset);
130         }
131 }