Merged with trunk R1612.
[ardour.git] / libs / surfaces / mackie / mackie_control_protocol_poll.cc
1 #include "mackie_control_protocol.h"
2
3 #include "midi_byte_array.h"
4 #include "surface_port.h"
5
6 #include <pbd/pthread_utils.h>
7 #include <pbd/error.h>
8
9 #include <midi++/types.h>
10 #include <midi++/port.h>
11 #include <midi++/manager.h>
12 #include <midi++/port_request.h>
13 #include "i18n.h"
14
15 #include <unistd.h>
16 #include <fcntl.h>
17 #include <poll.h>
18 #include <errno.h>
19
20 #include <iostream>
21 #include <string>
22 #include <vector>
23
24 using namespace std;
25 using namespace Mackie;
26 using namespace PBD;
27
28 const char * MackieControlProtocol::default_port_name = "mcu";
29
30 bool MackieControlProtocol::probe()
31 {
32         return MIDI::Manager::instance()->port( default_port_name ) != 0;
33 }
34
35 void * MackieControlProtocol::monitor_work()
36 {
37         // What does ThreadCreatedWithRequestSize do?
38         PBD::ThreadCreated (pthread_self(), X_("Mackie"));
39
40         pthread_setcancelstate (PTHREAD_CANCEL_ENABLE, 0);
41         pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, 0);
42
43         // read from midi ports
44         while ( _polling )
45         {
46                 try
47                 {
48                         if ( poll_ports() )
49                         {
50                                 try { read_ports(); }
51                                 catch ( exception & e ) {
52                                         cout << "MackieControlProtocol::poll_ports caught exception: " << e.what() << endl;
53                                         _ports_changed = true;
54                                         update_ports();
55                                 }
56                         }
57                         // poll for automation data from the routes
58                         poll_automation();
59                 }
60                 catch ( exception & e )
61                 {
62                         cout << "caught exception in MackieControlProtocol::monitor_work " << e.what() << endl;
63                 }
64         }
65
66         // TODO ports and pfd and nfds should be in a separate class
67         delete[] pfd;
68         pfd = 0;
69         nfds = 0;
70
71         return (void*) 0;
72 }
73
74 void MackieControlProtocol::update_ports()
75 {
76         if ( _ports_changed )
77         {
78                 Glib::Mutex::Lock ul( update_mutex );
79                 // yes, this is a double-test locking paradigm, or whatever it's called
80                 // because we don't *always* need to acquire the lock for the first test
81                 if ( _ports_changed )
82                 {
83                         // create new pollfd structures
84                         if ( pfd != 0 ) delete[] pfd;
85                         // TODO This might be a memory leak. How does thread cancellation cleanup work?
86                         pfd = new pollfd[_ports.size()];
87                         nfds = 0;
88
89                         for( MackiePorts::iterator it = _ports.begin(); it != _ports.end(); ++it )
90                         {
91                                 //cout << "adding port " << (*it)->port().name() << " to pollfd" << endl;
92                                 pfd[nfds].fd = (*it)->port().selectable();
93                                 pfd[nfds].events = POLLIN|POLLHUP|POLLERR;
94                                 ++nfds;
95                         }
96                         _ports_changed = false;
97                 }
98                 update_cond.signal();
99         }
100 }
101
102 void MackieControlProtocol::read_ports()
103 {
104         /* now read any data on the ports */
105         Glib::Mutex::Lock lock( update_mutex );
106         for ( int p = 0; p < nfds; ++p )
107         {
108                 // this will cause handle_midi_any in the MackiePort to be triggered
109                 if ( pfd[p].revents & POLLIN > 0 )
110                 {
111                         // avoid deadlocking?
112                         // doesn't seem to make a difference
113                         //lock.release();
114                         _ports[p]->read();
115                         //lock.acquire();
116                 }
117         }
118 }
119
120 bool MackieControlProtocol::poll_ports()
121 {
122         int timeout = 10; // milliseconds
123         int no_ports_sleep = 1000; // milliseconds
124
125         Glib::Mutex::Lock lock( update_mutex );
126         // if there are no ports
127         if ( nfds < 1 )
128         {
129                 lock.release();
130                 //cout << "poll_ports no ports" << endl;
131                 usleep( no_ports_sleep * 1000 );
132                 return false;
133         }
134
135         int retval = poll( pfd, nfds, timeout );
136         if ( retval < 0 )
137         {
138                 // gdb at work, perhaps
139                 if ( errno != EINTR )
140                 {
141                         error << string_compose(_("Mackie MIDI thread poll failed (%1)"), strerror( errno ) ) << endmsg;
142                 }
143                 return false;
144         }
145         
146         return retval > 0;
147 }
148
149 void MackieControlProtocol::handle_port_inactive( SurfacePort * port )
150 {
151         // port gone away. So stop polling it ASAP
152         {
153                 // delete the port instance
154                 Glib::Mutex::Lock lock( update_mutex );
155                 MackiePorts::iterator it = find( _ports.begin(), _ports.end(), port );
156                 if ( it != _ports.end() )
157                 {
158                         delete *it;
159                         _ports.erase( it );
160                 }
161         }
162         _ports_changed = true;
163         update_ports();
164         
165         // TODO all the rebuilding of surfaces and so on
166 }
167
168 void MackieControlProtocol::handle_port_active( SurfacePort * port )
169 {
170         // no need to re-add port because it was already added
171         // during the init phase. So just update the local surface
172         // representation and send the representation to 
173         // all existing ports
174         
175         // TODO update bank size
176         
177         // TODO rebuild surface, to have new units
178         
179         // finally update session state to the surface
180         // TODO but this is also done in set_active, and
181         // in fact update_surface won't execute unless
182         // _active == true
183         //cout << "update_surface in handle_port_active" << endl;
184         update_surface();
185 }
186
187 void MackieControlProtocol::handle_port_init( Mackie::SurfacePort * sport )
188 {
189         //cout << "MackieControlProtocol::handle_port_init" << endl;
190         _ports_changed = true;
191         update_ports();
192 }