fix crash when copy'ing latent plugins
[ardour.git] / libs / ardour / midi_ui.cc
1 /*
2   Copyright (C) 2009 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 <cstdlib>
20
21 #include <sigc++/signal.h>
22
23 #include "pbd/pthread_utils.h"
24
25 #include "ardour/async_midi_port.h"
26 #include "ardour/debug.h"
27 #include "ardour/audioengine.h"
28 #include "ardour/midi_port.h"
29 #include "ardour/midiport_manager.h"
30 #include "ardour/midi_ui.h"
31 #include "ardour/session.h"
32 #include "ardour/session_event.h"
33 #include "ardour/types.h"
34
35 using namespace std;
36 using namespace ARDOUR;
37 using namespace PBD;
38 using namespace Glib;
39
40 #include "pbd/i18n.h"
41
42 MidiControlUI* MidiControlUI::_instance = 0;
43
44 #include "pbd/abstract_ui.cc"  /* instantiate the template */
45
46 MidiControlUI::MidiControlUI (Session& s)
47         : AbstractUI<MidiUIRequest> (X_("midiUI"))
48         , _session (s)
49 {
50         _instance = this;
51 }
52
53 MidiControlUI::~MidiControlUI ()
54 {
55         /* stop the thread */
56         quit ();
57         /* drop all ports as GIO::Sources */
58         clear_ports ();
59         /* we no longer exist */
60         _instance = 0;
61 }
62
63 void*
64 MidiControlUI::request_factory (uint32_t num_requests)
65 {
66         /* AbstractUI<T>::request_buffer_factory() is a template method only
67            instantiated in this source module. To provide something visible for
68            use when registering the factory, we have this static method that is
69            template-free.
70         */
71         return request_buffer_factory (num_requests);
72 }
73
74 void
75 MidiControlUI::do_request (MidiUIRequest* req)
76 {
77         if (req->type == Quit) {
78                 BaseUI::quit ();
79         } else if (req->type == CallSlot) {
80                 req->the_slot ();
81         }
82 }
83
84 bool
85 MidiControlUI::midi_input_handler (IOCondition ioc, boost::weak_ptr<AsyncMIDIPort> wport)
86 {
87         boost::shared_ptr<AsyncMIDIPort> port = wport.lock ();
88         if (!port) {
89                 return false;
90         }
91
92         DEBUG_TRACE (DEBUG::MidiIO, string_compose ("something happend on  %1\n", boost::shared_ptr<ARDOUR::Port> (port)->name()));
93
94         if (ioc & ~IO_IN) {
95                 return false;
96         }
97
98         if (ioc & IO_IN) {
99
100                 port->clear ();
101                 DEBUG_TRACE (DEBUG::MidiIO, string_compose ("data available on %1\n", boost::shared_ptr<ARDOUR::Port>(port)->name()));
102                 framepos_t now = _session.engine().sample_time();
103                 port->parse (now);
104         }
105
106         return true;
107 }
108
109 void
110 MidiControlUI::clear_ports ()
111 {
112 }
113
114 void
115 MidiControlUI::reset_ports ()
116 {
117         vector<boost::shared_ptr<AsyncMIDIPort> > ports;
118         boost::shared_ptr<AsyncMIDIPort> p;
119
120         if ((p = boost::dynamic_pointer_cast<AsyncMIDIPort> (_session.midi_input_port()))) {
121                 ports.push_back (p);
122         }
123
124
125         if ((p = boost::dynamic_pointer_cast<AsyncMIDIPort> (_session.mmc_input_port()))) {
126                 ports.push_back (p);
127         }
128
129         if ((p = boost::dynamic_pointer_cast<AsyncMIDIPort> (_session.scene_input_port()))) {
130                 ports.push_back (p);
131         }
132
133         if (ports.empty()) {
134                 return;
135         }
136
137         for (vector<boost::shared_ptr<AsyncMIDIPort> >::const_iterator pi = ports.begin(); pi != ports.end(); ++pi) {
138                 (*pi)->xthread().set_receive_handler (sigc::bind (
139                                         sigc::mem_fun (this, &MidiControlUI::midi_input_handler), boost::weak_ptr<AsyncMIDIPort>(*pi)));
140                 (*pi)->xthread().attach (_main_loop->get_context());
141         }
142 }
143
144 void
145 MidiControlUI::thread_init ()
146 {
147         struct sched_param rtparam;
148
149         pthread_set_name (X_("midiUI"));
150
151         PBD::notify_event_loops_about_thread_creation (pthread_self(), X_("midiUI"), 2048);
152         SessionEvent::create_per_thread_pool (X_("midiUI"), 128);
153
154         memset (&rtparam, 0, sizeof (rtparam));
155         rtparam.sched_priority = 9; /* XXX should be relative to audio (JACK) thread */
156
157         if (pthread_setschedparam (pthread_self(), SCHED_FIFO, &rtparam) != 0) {
158                 // do we care? not particularly.
159         }
160
161         reset_ports ();
162 }
163