major design changes: use glib event loop for MIDI thread/UI; rework design of BaseUI...
[ardour.git] / libs / pbd / pbd / abstract_ui.h
1 /*
2     Copyright (C) 1998-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
20 #ifndef __pbd_abstract_ui_h__
21 #define __pbd_abstract_ui_h__
22
23 #include <map>
24 #include <string>
25 #include <pthread.h>
26
27 #include <sigc++/sigc++.h>
28
29 #include <glibmm/thread.h>
30
31 #include "pbd/receiver.h"
32 #include "pbd/ringbufferNPT.h"
33 #include "pbd/base_ui.h"
34
35 class Touchable;
36
37 template<typename RequestObject>
38 class AbstractUI : public BaseUI
39 {
40   public:
41         AbstractUI (const std::string& name);
42         virtual ~AbstractUI() {}
43
44         void register_thread (std::string, pthread_t, std::string, uint32_t num_requests);
45         void call_slot (sigc::slot<void> el_slot);
46
47   protected:
48         typedef RingBufferNPT<RequestObject> RequestBuffer;
49         typedef typename RequestBuffer::rw_vector RequestBufferVector;
50         typedef typename std::map<pthread_t,RequestBuffer*>::iterator RequestBufferMapIterator;
51         typedef std::map<pthread_t,RequestBuffer*> RequestBufferMap;
52
53         Glib::Mutex request_buffer_map_lock;
54         RequestBufferMap request_buffers;
55         Glib::Private<RequestBuffer> per_thread_request_buffer;
56
57         Glib::Mutex               request_list_lock;
58         std::list<RequestObject*> request_list;
59         
60         RequestObject* get_request (RequestType);
61         void handle_ui_requests ();
62         void send_request (RequestObject *);
63
64         virtual void do_request (RequestObject *) = 0;
65 };
66
67 #endif /* __pbd_abstract_ui_h__ */
68
69