use shared_ptr<> for all region handling
[ardour.git] / libs / ardour / osc.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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  *  
18  * $Id$
19  */
20
21 #include <iostream>
22 #include <cstdio>
23 #include <cstdlib>
24 #include <cerrno>
25 #include <algorithm>
26
27 #include <sys/poll.h>
28 #include <unistd.h>
29 #include <fcntl.h>
30
31 #include <ardour/osc.h>
32 #include <ardour/session.h>
33 #include <ardour/route.h>
34 #include <ardour/audio_track.h>
35
36 #include "i18n.h"
37
38 using namespace ARDOUR;
39 using namespace sigc;
40 using namespace std;
41
42 static void error_callback(int num, const char *m, const char *path)
43 {
44 #ifdef DEBUG
45         fprintf(stderr, "liblo server error %d in path %s: %s\n", num, path, m);
46 #endif
47 }
48
49 OSC::OSC (uint32_t port)
50         : _port(port)
51 {
52         _shutdown = false;
53         _osc_server = 0;
54         _osc_unix_server = 0;
55         _osc_thread = 0;
56 }
57
58 int
59 OSC::start ()
60 {
61         char tmpstr[255];
62         
63         for (int j=0; j < 20; ++j) {
64                 snprintf(tmpstr, sizeof(tmpstr), "%d", _port);
65                 
66                 if ((_osc_server = lo_server_new (tmpstr, error_callback))) {
67                         break;
68                 }
69 #ifdef DEBUG            
70                 cerr << "can't get osc at port: " << _port << endl;
71 #endif
72                 _port++;
73                 continue;
74         }
75         
76 #ifdef ARDOUR_OSC_UNIX_SERVER
77         
78         // APPEARS sluggish for now
79         
80         // attempt to create unix socket server too
81         
82         snprintf(tmpstr, sizeof(tmpstr), "/tmp/sooperlooper_XXXXXX");
83         int fd = mkstemp(tmpstr);
84         
85         if (fd >= 0 ) {
86                 unlink (tmpstr);
87                 close (fd);
88                 
89                 _osc_unix_server = lo_server_new (tmpstr, error_callback);
90                 
91                 if (_osc_unix_server) {
92                         _osc_unix_socket_path = tmpstr;
93                 }
94         }
95 #endif
96         
97         cerr << "OSC @ " << get_server_url () << endl;
98         
99         register_callbacks();
100         
101         // lo_server_thread_add_method(_sthread, NULL, NULL, OSC::_dummy_handler, this);
102                 
103         if (!init_osc_thread()) {
104                 return -1;
105         }
106         return 0;
107 }
108
109 int
110 OSC::stop ()
111 {       
112         lo_server_free (_osc_server);
113         
114         if (!_osc_unix_socket_path.empty()) {
115                 // unlink it
116                 unlink(_osc_unix_socket_path.c_str());
117         }
118         
119         // stop server thread
120         terminate_osc_thread();
121
122         return 0;
123 }
124
125 OSC::~OSC()
126 {
127         stop ();
128 }
129
130 void
131 OSC::register_callbacks()
132 {
133         lo_server srvs[2];
134         lo_server serv;
135
136         srvs[0] = _osc_server;
137         srvs[1] = _osc_unix_server;
138         
139         for (size_t i = 0; i < 2; ++i) {
140
141                 if (!srvs[i]) {
142                         continue;
143                 }
144
145                 serv = srvs[i];
146
147 #define REGISTER_CALLBACK(serv,path,types, function) lo_server_add_method (serv, path, types, OSC::_ ## function, this)
148                 
149                 REGISTER_CALLBACK (serv, "/ardour/add_marker", "", add_marker);
150                 REGISTER_CALLBACK (serv, "/ardour/loop_toggle", "", loop_toggle);
151                 REGISTER_CALLBACK (serv, "/ardour/goto_start", "", goto_start);
152                 REGISTER_CALLBACK (serv, "/ardour/goto_end", "", goto_end);
153                 REGISTER_CALLBACK (serv, "/ardour/rewind", "", rewind);
154                 REGISTER_CALLBACK (serv, "/ardour/ffwd", "", ffwd);
155                 REGISTER_CALLBACK (serv, "/ardour/transport_stop", "", transport_stop);
156                 REGISTER_CALLBACK (serv, "/ardour/transport_play", "", transport_play);
157                 REGISTER_CALLBACK (serv, "/ardour/set_transport_speed", "f", set_transport_speed);
158                 REGISTER_CALLBACK (serv, "/ardour/save_state", "", save_state);
159                 REGISTER_CALLBACK (serv, "/ardour/prev_marker", "", prev_marker);
160                 REGISTER_CALLBACK (serv, "/ardour/next_marker", "", next_marker);
161                 REGISTER_CALLBACK (serv, "/ardour/undo", "", undo);
162                 REGISTER_CALLBACK (serv, "/ardour/redo", "", redo);
163                 REGISTER_CALLBACK (serv, "/ardour/toggle_punch_in", "", toggle_punch_in);
164                 REGISTER_CALLBACK (serv, "/ardour/toggle_punch_out", "", toggle_punch_out);
165                 REGISTER_CALLBACK (serv, "/ardour/rec_enable_toggle", "", rec_enable_toggle);
166                 REGISTER_CALLBACK (serv, "/ardour/toggle_all_rec_enables", "", toggle_all_rec_enables);
167
168 #if 0
169                 REGISTER_CALLBACK (serv, "/ardour/*/#current_value", "", current_value);
170                 REGISTER_CALLBACK (serv, "/ardour/set", "", set);
171 #endif
172
173 #if 0
174                 // un/register_update args= s:ctrl s:returl s:retpath
175                 lo_server_add_method(serv, "/register_update", "sss", OSC::global_register_update_handler, this);
176                 lo_server_add_method(serv, "/unregister_update", "sss", OSC::global_unregister_update_handler, this);
177                 lo_server_add_method(serv, "/register_auto_update", "siss", OSC::global_register_auto_update_handler, this);
178                 lo_server_add_method(serv, "/unregister_auto_update", "sss", OSC::_global_unregister_auto_update_handler, this);
179 #endif
180         }
181 }
182
183 bool
184 OSC::init_osc_thread ()
185 {
186         // create new thread to run server
187         if (pipe (_request_pipe)) {
188                 cerr << "Cannot create osc request signal pipe" <<  strerror (errno) << endl;
189                 return false;
190         }
191
192         if (fcntl (_request_pipe[0], F_SETFL, O_NONBLOCK)) {
193                 cerr << "osc: cannot set O_NONBLOCK on signal read pipe " << strerror (errno) << endl;
194                 return false;
195         }
196
197         if (fcntl (_request_pipe[1], F_SETFL, O_NONBLOCK)) {
198                 cerr << "osc: cannot set O_NONBLOCK on signal write pipe " << strerror (errno) << endl;
199                 return false;
200         }
201         
202         pthread_create (&_osc_thread, NULL, &OSC::_osc_receiver, this);
203         if (!_osc_thread) {
204                 return false;
205         }
206
207         //pthread_detach (_osc_thread);
208         return true;
209 }
210
211 void
212 OSC::terminate_osc_thread ()
213 {
214         void* status;
215
216         _shutdown = true;
217         
218         poke_osc_thread ();
219
220         pthread_join (_osc_thread, &status);
221 }
222
223 void
224 OSC::poke_osc_thread ()
225 {
226         char c;
227
228         if (write (_request_pipe[1], &c, 1) != 1) {
229                 cerr << "cannot send signal to osc thread! " <<  strerror (errno) << endl;
230         }
231 }
232
233 std::string
234 OSC::get_server_url()
235 {
236         string url;
237         char * urlstr;
238
239         if (_osc_server) {
240                 urlstr = lo_server_get_url (_osc_server);
241                 url = urlstr;
242                 free (urlstr);
243         }
244         
245         return url;
246 }
247
248 std::string
249 OSC::get_unix_server_url()
250 {
251         string url;
252         char * urlstr;
253
254         if (_osc_unix_server) {
255                 urlstr = lo_server_get_url (_osc_unix_server);
256                 url = urlstr;
257                 free (urlstr);
258         }
259         
260         return url;
261 }
262
263
264 /* server thread */
265
266 void *
267 OSC::_osc_receiver(void * arg)
268 {
269         static_cast<OSC*> (arg)->osc_receiver();
270         return 0;
271 }
272
273 void
274 OSC::osc_receiver()
275 {
276         struct pollfd pfd[3];
277         int fds[3];
278         lo_server srvs[3];
279         int nfds = 0;
280         int timeout = -1;
281         int ret;
282         
283         fds[0] = _request_pipe[0];
284         nfds++;
285         
286         if (_osc_server && lo_server_get_socket_fd(_osc_server) >= 0) {
287                 fds[nfds] = lo_server_get_socket_fd(_osc_server);
288                 srvs[nfds] = _osc_server;
289                 nfds++;
290         }
291
292         if (_osc_unix_server && lo_server_get_socket_fd(_osc_unix_server) >= 0) {
293                 fds[nfds] = lo_server_get_socket_fd(_osc_unix_server);
294                 srvs[nfds] = _osc_unix_server;
295                 nfds++;
296         }
297         
298         
299         while (!_shutdown) {
300
301                 for (int i=0; i < nfds; ++i) {
302                         pfd[i].fd = fds[i];
303                         pfd[i].events = POLLIN|POLLPRI|POLLHUP|POLLERR;
304                         pfd[i].revents = 0;
305                 }
306                 
307         again:
308                 //cerr << "poll on " << nfds << " for " << timeout << endl;
309                 if ((ret = poll (pfd, nfds, timeout)) < 0) {
310                         if (errno == EINTR) {
311                                 /* gdb at work, perhaps */
312                                 goto again;
313                         }
314                         
315                         cerr << "OSC thread poll failed: " <<  strerror (errno) << endl;
316                         
317                         break;
318                 }
319
320                 //cerr << "poll returned " << ret << "  pfd[0].revents = " << pfd[0].revents << "  pfd[1].revents = " << pfd[1].revents << endl;
321                 
322                 if (_shutdown) {
323                         break;
324                 }
325                 
326                 if ((pfd[0].revents & ~POLLIN)) {
327                         cerr << "OSC: error polling extra port" << endl;
328                         break;
329                 }
330                 
331                 for (int i=1; i < nfds; ++i) {
332                         if (pfd[i].revents & POLLIN)
333                         {
334                                 // this invokes callbacks
335                                 //cerr << "invoking recv on " << pfd[i].fd << endl;
336                                 lo_server_recv(srvs[i]);
337                         }
338                 }
339
340         }
341
342         //cerr << "SL engine shutdown" << endl;
343         
344         if (_osc_server) {
345                 int fd = lo_server_get_socket_fd(_osc_server);
346                 if (fd >=0) {
347                                 // hack around
348                         close(fd);
349                 }
350                 lo_server_free (_osc_server);
351                 _osc_server = 0;
352         }
353
354         if (_osc_unix_server) {
355                 cerr << "freeing unix server" << endl;
356                 lo_server_free (_osc_unix_server);
357                 _osc_unix_server = 0;
358         }
359         
360         close(_request_pipe[0]);
361         close(_request_pipe[1]);
362 }
363
364 void
365 OSC::set_session (Session& s)
366 {
367         session = &s;
368         session->GoingAway.connect (mem_fun (*this, &OSC::session_going_away));
369 }
370
371 void
372 OSC::session_going_away ()
373 {
374         session = 0;
375 }
376
377 /* path callbacks */
378
379 int 
380 OSC::current_value (const char *path, const char *types, lo_arg **argv, int argc, void *data, void* user_data) 
381
382 #if 0
383         const char* returl;
384
385         if (argc < 3 || types == 0 || strlen (types) < 3 || types[0] != 's' || types[1] != 's' || types[2] != s) {
386                 return 1;
387         }
388
389         const char *returl = argv[1]->s;
390         lo_address addr = find_or_cache_addr (returl);
391
392         const char *retpath = argv[2]->s;
393
394         
395         if (strcmp (argv[0]->s, "transport_frame")) {
396
397                 if (session) {
398                         lo_send (addr, retpath, "i", session->transport_frame());
399                 }
400
401         } else if (strcmp (argv[0]->s, "transport_speed")) {
402
403                 if (session) {
404                         lo_send (addr, retpath, "i", session->transport_frame());
405                 }
406
407         } else if (strcmp (argv[0]->s, "transport_locked")) {
408
409                 if (session) {
410                         lo_send (addr, retpath, "i", session->transport_frame());
411                 }
412
413         } else if (strcmp (argv[0]->s, "punch_in") {
414
415                 if (session) {
416                         lo_send (addr, retpath, "i", session->transport_frame());
417                 }
418
419         } else if (strcmp (argv[0]->s, "punch_out") {
420
421                 if (session) {
422                         lo_send (addr, retpath, "i", session->transport_frame());
423                 }
424
425         } else if (strcmp (argv[0]->s, "rec_enable") {
426
427                 if (session) {
428                         lo_send (addr, retpath, "i", session->transport_frame());
429                 }
430
431         } else {
432
433                 /* error */
434         }
435 #endif
436         return 0;
437 }