bcf4841a3d3552ef78de3069624aadb5d0b095a2
[ardour.git] / libs / ardour / ardour / osc.h
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 #ifndef ardour_osc_h
22 #define ardour_osc_h
23
24 #include <string>
25
26 #include <sys/time.h>
27 #include <pthread.h>
28
29 #include <lo/lo.h>
30
31 #include <sigc++/sigc++.h>
32
33 #include <ardour/types.h>
34 #include <ardour/basic_ui.h>
35
36 namespace ARDOUR {
37         class Session;
38         class Route;
39
40 class OSC : public BasicUI, public sigc::trackable
41 {
42   public:
43         OSC (uint32_t port);
44         virtual ~OSC();
45         
46         void set_session (ARDOUR::Session&);
47         int start ();
48         int stop ();
49
50   private:
51         uint32_t _port;
52         volatile bool _ok;
53         volatile bool _shutdown;
54         lo_server _osc_server;
55         lo_server _osc_unix_server;
56         std::string _osc_unix_socket_path;
57         pthread_t _osc_thread;
58         int _request_pipe[2];
59
60         static void * _osc_receiver(void * arg);
61         void osc_receiver();
62
63         bool init_osc_thread ();
64         void terminate_osc_thread ();
65         void poke_osc_thread ();
66
67         void register_callbacks ();
68
69         void session_going_away ();
70
71         std::string get_server_url ();
72         std::string get_unix_server_url ();
73
74 #define PATH_CALLBACK(name) \
75         static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \
76                 return static_cast<OSC*>(user_data)->cb_ ## name (path, types, argv, argc, data); \
77         } \
78         int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \
79                 name (); \
80                 return 0; \
81         }
82
83         PATH_CALLBACK(add_marker);
84         PATH_CALLBACK(loop_toggle);
85         PATH_CALLBACK(goto_start);
86         PATH_CALLBACK(goto_end);
87         PATH_CALLBACK(rewind);
88         PATH_CALLBACK(ffwd);
89         PATH_CALLBACK(transport_stop);
90         PATH_CALLBACK(transport_play);
91         PATH_CALLBACK(save_state);
92         PATH_CALLBACK(prev_marker);
93         PATH_CALLBACK(next_marker);
94         PATH_CALLBACK(undo);
95         PATH_CALLBACK(redo);
96         PATH_CALLBACK(toggle_punch_in);
97         PATH_CALLBACK(toggle_punch_out);
98         PATH_CALLBACK(rec_enable_toggle);
99         PATH_CALLBACK(toggle_all_rec_enables);
100
101 #define PATH_CALLBACK1(name,type) \
102         static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \
103                 return static_cast<OSC*>(user_data)->cb_ ## name (path, types, argv, argc, data); \
104         } \
105         int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \
106                 if (argc > 0) { \
107                         name (argv[0]->type); \
108                 }\
109                 return 0; \
110         }
111
112         PATH_CALLBACK1(set_transport_speed,f);
113 };
114
115 }
116
117 #endif // ardour_osc_h