Remove end of SearchCache as it is not used (it's always set to DBL_MAX)
[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 reposition_for_rt_add (double when);
118         void rt_add (double when, double value);
119         void add (double when, double value);
120         void fast_simple_add (double when, double value);
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         void 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         boost::shared_ptr<ControlList> cut (iterator, iterator);
134         boost::shared_ptr<ControlList> copy (iterator, iterator);
135         void clear (iterator, iterator);
136
137         bool paste (ControlList&, double position, float times);
138
139         void set_yrange (double min, double max) {
140                 _min_yval = min;
141                 _max_yval = max;
142         }
143
144         double get_max_y() const { return _max_yval; }
145         double get_min_y() const { return _min_yval; }
146
147         void truncate_end (double length);
148         void truncate_start (double length);
149
150         iterator            begin()       { return _events.begin(); }
151         const_iterator      begin() const { return _events.begin(); }
152         iterator            end()         { return _events.end(); }
153         const_iterator      end()   const { return _events.end(); }
154         ControlEvent*       back()        { return _events.back(); }
155         const ControlEvent* back()  const { return _events.back(); }
156         ControlEvent*       front()       { return _events.front(); }
157         const ControlEvent* front() const { return _events.front(); }
158
159         std::pair<ControlList::iterator,ControlList::iterator> control_points_adjacent (double when);
160
161         template<class T> void apply_to_points (T& obj, void (T::*method)(const ControlList&)) {
162                 Glib::Mutex::Lock lm (_lock);
163                 (obj.*method)(*this);
164         }
165
166         void set_max_xval (double);
167         double get_max_xval() const { return _max_xval; }
168
169         double eval (double where) {
170                 Glib::Mutex::Lock lm (_lock);
171                 return unlocked_eval (where);
172         }
173
174         double rt_safe_eval (double where, bool& ok) {
175
176                 Glib::Mutex::Lock lm (_lock, Glib::TRY_LOCK);
177
178                 if ((ok = lm.locked())) {
179                         return unlocked_eval (where);
180                 } else {
181                         return 0.0;
182                 }
183         }
184
185         static inline bool time_comparator (const ControlEvent* a, const ControlEvent* b) {
186                 return a->when < b->when;
187         }
188
189         /** Lookup cache for eval functions, range contains equivalent values */
190         struct LookupCache {
191                 LookupCache() : left(-1) {}
192                 double left;  /* leftmost x coordinate used when finding "range" */
193                 std::pair<ControlList::const_iterator,ControlList::const_iterator> range;
194         };
195
196         /** Lookup cache for point finding, range contains points after left */
197         struct SearchCache {
198                 SearchCache () : left(-1) {}
199                 double left;  /* leftmost x coordinate used when finding "first" */
200                 ControlList::const_iterator first;
201         };
202
203         const EventList& events() const { return _events; }
204         double default_value() const { return _parameter.normal(); }
205
206         // FIXME: const violations for Curve
207         Glib::Mutex& lock()         const { return _lock; }
208         LookupCache& lookup_cache() const { return _lookup_cache; }
209         SearchCache& search_cache() const { return _search_cache; }
210
211         /** Called by locked entry point and various private
212          * locations where we already hold the lock.
213          *
214          * FIXME: Should this be private?  Curve needs it..
215          */
216         double unlocked_eval (double x) const;
217
218         bool rt_safe_earliest_event (double start, double& x, double& y, bool start_inclusive=false) const;
219         bool rt_safe_earliest_event_unlocked (double start, double& x, double& y, bool start_inclusive=false) const;
220         bool rt_safe_earliest_event_discrete_unlocked (double start, double& x, double& y, bool inclusive) const;
221
222         void create_curve();
223         void destroy_curve();
224
225         Curve&       curve()       { assert(_curve); return *_curve; }
226         const Curve& curve() const { assert(_curve); return *_curve; }
227
228         void mark_dirty () const;
229
230         enum InterpolationStyle {
231                 Discrete,
232                 Linear,
233                 Curved
234         };
235
236         InterpolationStyle interpolation() const { return _interpolation; }
237         void set_interpolation (InterpolationStyle);
238
239         /** Emitted when mark_dirty() is called on this object */
240         mutable PBD::Signal0<void> Dirty;
241         /** Emitted when our interpolation style changes */
242         PBD::Signal1<void, InterpolationStyle> InterpolationChanged;
243         
244 protected:
245
246         /** Called by unlocked_eval() to handle cases of 3 or more control points. */
247         double multipoint_eval (double x) const;
248
249         void build_search_cache_if_necessary (double start) const;
250
251         bool rt_safe_earliest_event_linear_unlocked (double start, double& x, double& y, bool inclusive) const;
252
253         boost::shared_ptr<ControlList> cut_copy_clear (double, double, int op);
254         bool erase_range_internal (double start, double end, EventList &);
255
256         virtual void maybe_signal_changed ();
257
258         void _x_scale (double factor);
259
260         mutable LookupCache _lookup_cache;
261         mutable SearchCache _search_cache;
262
263         Parameter           _parameter;
264         InterpolationStyle  _interpolation;
265         EventList           _events;
266         mutable Glib::Mutex _lock;
267         int8_t              _frozen;
268         bool                _changed_when_thawed;
269         bool                _new_value;
270         double              _max_xval;
271         double              _min_yval;
272         double              _max_yval;
273         double              _default_value;
274         bool                _sort_pending;
275         iterator            _rt_insertion_point;
276         double              _rt_pos;
277
278         Curve* _curve;
279 };
280
281 } // namespace Evoral
282
283 #endif // EVORAL_CONTROL_LIST_HPP
284