Optimize automation-event process splitting
[ardour.git] / libs / ardour / ardour / automation_watch.h
1 /*
2     Copyright (C) 2012 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 #ifndef __ardour_automation_watch_h__
20 #define __ardour_automation_watch_h__
21
22 #include <set>
23 #include <boost/shared_ptr.hpp>
24 #include <glibmm/threads.h>
25 #include <sigc++/signal.h>
26
27 #include "pbd/signals.h"
28
29 #include "ardour/session_handle.h"
30 #include "ardour/types.h"
31
32 namespace ARDOUR {
33
34 class AutomationControl;
35
36 class LIBARDOUR_API AutomationWatch : public sigc::trackable, public ARDOUR::SessionHandlePtr
37 {
38 public:
39         static AutomationWatch& instance();
40
41         void add_automation_watch (boost::shared_ptr<ARDOUR::AutomationControl>);
42         void remove_automation_watch (boost::shared_ptr<ARDOUR::AutomationControl>);
43         void transport_stop_automation_watches (ARDOUR::samplepos_t);
44         void set_session (ARDOUR::Session*);
45
46         gint timer ();
47
48 private:
49         typedef std::set<boost::shared_ptr<ARDOUR::AutomationControl> > AutomationWatches;
50         typedef std::map<boost::shared_ptr<ARDOUR::AutomationControl>, PBD::ScopedConnection> AutomationConnection;
51
52         AutomationWatch ();
53         ~AutomationWatch();
54
55         static AutomationWatch* _instance;
56         Glib::Threads::Thread*  _thread;
57         samplepos_t              _last_time;
58         bool                    _run_thread;
59         AutomationWatches        automation_watches;
60         AutomationConnection     automation_connections;
61         Glib::Threads::Mutex     automation_watch_lock;
62         PBD::ScopedConnection    transport_connection;
63
64         void transport_state_change ();
65         void remove_weak_automation_watch (boost::weak_ptr<ARDOUR::AutomationControl>);
66         void thread ();
67 };
68
69 } /* namespace */
70
71 #endif // __ardour_automation_watch_h__