Don't write undo records for automation that moves with regions when nothing changes...
[ardour.git] / libs / evoral / evoral / ControlList.hpp
1 /* This file is part of Evoral.
2  * Copyright (C) 2008 Dave Robillard <http://drobilla.net>
3  * Copyright (C) 2000-2008 Paul Davis
4  *
5  * Evoral is free software; you can redistribute it and/or modify it under the
6  * terms of the GNU General Public License as published by the Free Software
7  * Foundation; either version 2 of the License, or (at your option) any later
8  * version.
9  *
10  * Evoral is distributed in the hope that it will be useful, but WITHOUT ANY
11  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #ifndef EVORAL_CONTROL_LIST_HPP
20 #define EVORAL_CONTROL_LIST_HPP
21
22 #include <cassert>
23 #include <list>
24 #include <boost/pool/pool.hpp>
25 #include <boost/pool/pool_alloc.hpp>
26 #include <glibmm/thread.h>
27 #include "pbd/signals.h"
28 #include "evoral/types.hpp"
29 #include "evoral/Parameter.hpp"
30
31 namespace Evoral {
32
33 class Curve;
34
35 /** A single event (time-stamped value) for a control
36  */
37 struct ControlEvent {
38     ControlEvent (double w, double v)
39             : when (w), value (v), coeff (0)
40         {}
41
42     ControlEvent (const ControlEvent& other)
43             : when (other.when), value (other.value), coeff (0)
44         {
45                 if (other.coeff) {
46                         create_coeffs();
47                         for (size_t i = 0; i < 4; ++i)
48                                 coeff[i] = other.coeff[i];
49                 }
50         }
51
52         ~ControlEvent() { if (coeff) delete[] coeff; }
53
54         void create_coeffs() {
55                 if (!coeff)
56                         coeff = new double[4];
57
58                 coeff[0] = coeff[1] = coeff[2] = coeff[3] = 0.0;
59         }
60
61     double  when;
62     double  value;
63     double* coeff; ///< double[4] allocated by Curve as needed
64 };
65
66
67 /** Pool allocator for control lists that does not use a lock
68  * and allocates 8k blocks of new pointers at a time
69  */
70 typedef boost::fast_pool_allocator<
71                 ControlEvent*,
72                 boost::default_user_allocator_new_delete,
73                 boost::details::pool::null_mutex,
74                 8192>
75         ControlEventAllocator;
76
77
78 /** A list (sequence) of time-stamped values for a control
79  */
80 class ControlList
81 {
82 public:
83         typedef std::list<ControlEvent*,ControlEventAllocator> EventList;
84         typedef EventList::iterator iterator;
85         typedef EventList::reverse_iterator reverse_iterator;
86         typedef EventList::const_iterator const_iterator;
87
88         ControlList (const Parameter& id);
89         ControlList (const ControlList&);
90         ControlList (const ControlList&, double start, double end);
91         virtual ~ControlList();
92
93         virtual boost::shared_ptr<ControlList> create(Parameter id);
94
95         ControlList& operator= (const ControlList&);
96         bool operator== (const ControlList&);
97
98         virtual void freeze();
99         virtual void thaw ();
100         bool frozen() const { return _frozen; }
101
102         const Parameter& parameter() const                 { return _parameter; }
103         void             set_parameter(const Parameter& p) { _parameter = p; }
104
105         EventList::size_type size() const { return _events.size(); }
106         bool empty() const { return _events.empty(); }
107
108         void reset_default (double val) {
109                 _default_value = val;
110         }
111
112         void clear ();
113         void x_scale (double factor);
114         bool extend_to (double);
115         void slide (iterator before, double distance);
116
117         void rt_add (double when, double value);
118         void add (double when, double value);
119         void fast_simple_add (double when, double value);
120         void merge_nascent (double when);
121
122         void reset_range (double start, double end);
123         void erase_range (double start, double end);
124         void erase (iterator);
125         void erase (iterator, iterator);
126         bool move_ranges (std::list< RangeMove<double> > const &);
127         void modify (iterator, double, double);
128
129         boost::shared_ptr<ControlList> cut (double, double);
130         boost::shared_ptr<ControlList> copy (double, double);
131         void clear (double, double);
132
133         bool paste (ControlList&, double position, float times);
134
135         void set_yrange (double min, double max) {
136                 _min_yval = min;
137                 _max_yval = max;
138         }
139
140         double get_max_y() const { return _max_yval; }
141         double get_min_y() const { return _min_yval; }
142
143         void truncate_end (double length);
144         void truncate_start (double length);
145
146         iterator            begin()       { return _events.begin(); }
147         const_iterator      begin() const { return _events.begin(); }
148         iterator            end()         { return _events.end(); }
149         const_iterator      end()   const { return _events.end(); }
150         ControlEvent*       back()        { return _events.back(); }
151         const ControlEvent* back()  const { return _events.back(); }
152         ControlEvent*       front()       { return _events.front(); }
153         const ControlEvent* front() const { return _events.front(); }
154
155         std::pair<ControlList::iterator,ControlList::iterator> control_points_adjacent (double when);
156
157         template<class T> void apply_to_points (T& obj, void (T::*method)(const ControlList&)) {
158                 Glib::Mutex::Lock lm (_lock);
159                 (obj.*method)(*this);
160         }
161
162         void set_max_xval (double);
163         double get_max_xval() const { return _max_xval; }
164
165         double eval (double where) {
166                 Glib::Mutex::Lock lm (_lock);
167                 return unlocked_eval (where);
168         }
169
170         double rt_safe_eval (double where, bool& ok) {
171
172                 Glib::Mutex::Lock lm (_lock, Glib::TRY_LOCK);
173
174                 if ((ok = lm.locked())) {
175                         return unlocked_eval (where);
176                 } else {
177                         return 0.0;
178                 }
179         }
180
181         static inline bool time_comparator (const ControlEvent* a, const ControlEvent* b) {
182                 return a->when < b->when;
183         }
184
185         /** Lookup cache for eval functions, range contains equivalent values */
186         struct LookupCache {
187                 LookupCache() : left(-1) {}
188                 double left;  /* leftmost x coordinate used when finding "range" */
189                 std::pair<ControlList::const_iterator,ControlList::const_iterator> range;
190         };
191
192         /** Lookup cache for point finding, range contains points after left */
193         struct SearchCache {
194                 SearchCache () : left(-1) {}
195                 double left;  /* leftmost x coordinate used when finding "first" */
196                 ControlList::const_iterator first;
197         };
198
199         const EventList& events() const { return _events; }
200         double default_value() const { return _parameter.normal(); }
201
202         // FIXME: const violations for Curve
203         Glib::Mutex& lock()         const { return _lock; }
204         LookupCache& lookup_cache() const { return _lookup_cache; }
205         SearchCache& search_cache() const { return _search_cache; }
206
207         /** Called by locked entry point and various private
208          * locations where we already hold the lock.
209          *
210          * FIXME: Should this be private?  Curve needs it..
211          */
212         double unlocked_eval (double x) const;
213
214         bool rt_safe_earliest_event (double start, double& x, double& y, bool start_inclusive=false) const;
215         bool rt_safe_earliest_event_unlocked (double start, double& x, double& y, bool start_inclusive=false) const;
216         bool rt_safe_earliest_event_discrete_unlocked (double start, double& x, double& y, bool inclusive) const;
217
218         void create_curve();
219         void destroy_curve();
220
221         Curve&       curve()       { assert(_curve); return *_curve; }
222         const Curve& curve() const { assert(_curve); return *_curve; }
223
224         void mark_dirty () const;
225
226         enum InterpolationStyle {
227                 Discrete,
228                 Linear,
229                 Curved
230         };
231
232         InterpolationStyle interpolation() const { return _interpolation; }
233         void set_interpolation (InterpolationStyle);
234
235         virtual bool touching() const { return false; }
236         virtual bool writing() const { return false; }
237         virtual bool touch_enabled() const { return false; }
238         void write_pass_finished (double when);
239
240         /** Emitted when mark_dirty() is called on this object */
241         mutable PBD::Signal0<void> Dirty;
242         /** Emitted when our interpolation style changes */
243         PBD::Signal1<void, InterpolationStyle> InterpolationChanged;
244         
245 protected:
246
247         /** Called by unlocked_eval() to handle cases of 3 or more control points. */
248         double multipoint_eval (double x) const;
249
250         void build_search_cache_if_necessary (double start) const;
251
252         bool rt_safe_earliest_event_linear_unlocked (double start, double& x, double& y, bool inclusive) const;
253
254         boost::shared_ptr<ControlList> cut_copy_clear (double, double, int op);
255         bool erase_range_internal (double start, double end, EventList &);
256
257         virtual void maybe_signal_changed ();
258
259         void _x_scale (double factor);
260
261         mutable LookupCache   _lookup_cache;
262         mutable SearchCache   _search_cache;
263
264         Parameter             _parameter;
265         InterpolationStyle    _interpolation;
266         EventList             _events;
267         mutable Glib::Mutex   _lock;
268         int8_t                _frozen;
269         bool                  _changed_when_thawed;
270         double                _max_xval;
271         double                _min_yval;
272         double                _max_yval;
273         double                _default_value;
274         bool                  _sort_pending;
275
276         Curve* _curve;
277
278         struct NascentInfo {
279             EventList events;
280             bool   is_touch;
281             double start_time;
282             double end_time;
283             
284             NascentInfo (bool touching, double start = -1.0)
285                     : is_touch (touching)
286                     , start_time (start)
287                     , end_time (-1.0) 
288             {}
289         };
290     
291         std::list<NascentInfo*> nascent;
292 };
293
294 } // namespace Evoral
295
296 #endif // EVORAL_CONTROL_LIST_HPP
297