Tidy, remove dead code.
[ardour.git] / libs / evoral / evoral / Sequence.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_SEQUENCE_HPP
20 #define EVORAL_SEQUENCE_HPP
21
22 #include <vector>
23 #include <queue>
24 #include <deque>
25 #include <map>
26 #include <utility>
27 #include <boost/shared_ptr.hpp>
28 #include <glibmm/thread.h>
29 #include "evoral/types.hpp"
30 #include "evoral/Note.hpp"
31 #include "evoral/Parameter.hpp"
32 #include "evoral/ControlSet.hpp"
33 #include "evoral/ControlList.hpp"
34
35 namespace Evoral {
36
37 class TypeMap;
38 template<typename Time> class EventSink;
39 template<typename Time> class Note;
40 template<typename Time> class Event;
41
42 /** An iterator over (the x axis of) a 2-d double coordinate space.
43  */
44 class ControlIterator {
45 public:
46         ControlIterator(boost::shared_ptr<const ControlList> al, double ax, double ay)
47                 : list(al)
48                 , x(ax)
49                 , y(ay)
50         {}
51
52         boost::shared_ptr<const ControlList> list;
53         double x;
54         double y;
55 };
56
57
58 /** This is a higher level view of events, with separate representations for
59  * notes (instead of just unassociated note on/off events) and controller data.
60  * Controller data is represented as a list of time-stamped float values. */
61 template<typename Time> 
62 class Sequence : virtual public ControlSet {
63 public:
64         Sequence(const TypeMap& type_map, size_t size=0);
65         
66         bool read_locked() { return _read_iter.locked(); }
67
68         void write_lock();
69         void write_unlock();
70
71         void read_lock()   const;
72         void read_unlock() const;
73
74         void clear();
75
76         bool percussive() const     { return _percussive; }
77         void set_percussive(bool p) { _percussive = p; }
78
79         void start_write();
80         bool writing() const { return _writing; }
81         void end_write(bool delete_stuck=false);
82
83         /** Resizes vector if necessary (NOT realtime safe) */
84         void append(const Event<Time>& ev);
85         
86         inline const boost::shared_ptr< const Note<Time> > note_at(unsigned i) const { return _notes[i]; }
87         inline const boost::shared_ptr< Note<Time> >       note_at(unsigned i)       { return _notes[i]; }
88
89         inline size_t n_notes() const { return _notes.size(); }
90         inline bool   empty()   const { return _notes.size() == 0 && ControlSet::empty(); }
91
92         inline static bool note_time_comparator(const boost::shared_ptr< const Note<Time> >& a,
93                                                 const boost::shared_ptr< const Note<Time> >& b) { 
94                 return a->time() < b->time();
95         }
96
97         struct LaterNoteEndComparator {
98                 typedef const Note<Time>* value_type;
99                 inline bool operator()(const boost::shared_ptr< const Note<Time> > a,
100                                        const boost::shared_ptr< const Note<Time> > b) const { 
101                         return a->end_time() > b->end_time();
102                 }
103         };
104
105         typedef std::vector< boost::shared_ptr< Note<Time> > > Notes;
106         inline       Notes& notes()       { return _notes; }
107         inline const Notes& notes() const { return _notes; }
108
109         typedef std::vector< boost::shared_ptr< Event<Time> > > SysExes;
110         inline       SysExes& sysexes()       { return _sysexes; }
111         inline const SysExes& sysexes() const { return _sysexes; }
112
113 private:
114         typedef std::priority_queue< boost::shared_ptr< Note<Time> >,
115                                      std::deque< boost::shared_ptr< Note<Time> > >,
116                                      LaterNoteEndComparator >
117                 ActiveNotes;
118 public:
119
120         /** Read iterator */
121         class const_iterator {
122         public:
123                 const_iterator();
124                 const_iterator(const Sequence<Time>& seq, Time t);
125                 ~const_iterator();
126                 
127                 inline bool valid() const { return !_is_end && _event; }
128                 inline bool locked() const { return _locked; }
129
130                 const Event<Time>& operator*()  const { return *_event;  }
131                 const boost::shared_ptr< Event<Time> > operator->() const  { return _event; }
132                 const boost::shared_ptr< Event<Time> > get_event_pointer() { return _event; }
133
134                 const const_iterator& operator++(); // prefix only
135
136                 bool operator==(const const_iterator& other) const;
137                 bool operator!=(const const_iterator& other) const { return ! operator==(other); }
138                 
139                 const_iterator& operator=(const const_iterator& other);
140
141         private:
142                 friend class Sequence<Time>;
143                 
144                 enum MIDIMessageType { NIL, NOTE_ON, NOTE_OFF, CONTROL, SYSEX };
145
146                 const Sequence<Time>*            _seq;
147                 boost::shared_ptr< Event<Time> > _event;
148                 mutable ActiveNotes              _active_notes;
149
150                 typedef std::vector<ControlIterator> ControlIterators;
151
152                 bool                             _is_end;
153                 bool                             _locked;
154                 typename Notes::const_iterator   _note_iter;
155                 typename SysExes::const_iterator _sysex_iter;
156                 ControlIterators                 _control_iters;
157                 ControlIterators::iterator       _control_iter;
158         };
159         
160         const_iterator        begin(Time t=0) const { return const_iterator(*this, t); }
161         const const_iterator& end()           const { return _end_iter; }
162         
163         void read_seek(Time t) { _read_iter = begin(t); }
164         Time read_time() const { return _read_iter.valid() ? _read_iter->time() : 0.0; }
165
166         bool control_to_midi_event(boost::shared_ptr< Event<Time> >& ev,
167                                    const ControlIterator&            iter) const;
168         
169         bool edited() const      { return _edited; }
170         void set_edited(bool yn) { _edited = yn; }
171
172         void add_note_unlocked(const boost::shared_ptr< Note<Time> > note);
173         void remove_note_unlocked(const boost::shared_ptr< const Note<Time> > note);
174         
175         uint8_t lowest_note()  const { return _lowest_note; }
176         uint8_t highest_note() const { return _highest_note; }
177         
178 protected:
179         mutable const_iterator _read_iter;
180         bool                   _edited;
181
182 private:
183         friend class const_iterator;
184         
185         void append_note_on_unlocked(uint8_t chan, Time time, uint8_t note, uint8_t velocity);
186         void append_note_off_unlocked(uint8_t chan, Time time, uint8_t note);
187         void append_control_unlocked(const Parameter& param, Time time, double value);
188         void append_sysex_unlocked(const MIDIEvent<Time>& ev);
189
190         mutable Glib::RWLock _lock;
191
192         const TypeMap& _type_map;
193         
194         Notes   _notes;
195         SysExes _sysexes;
196         
197         typedef std::vector<size_t> WriteNotes;
198         WriteNotes _write_notes[16];
199         bool       _writing;
200         
201         typedef std::vector< boost::shared_ptr<const ControlList> > ControlLists;
202         ControlLists _dirty_controls;
203
204         const   const_iterator _end_iter;
205         bool                   _percussive;
206
207         uint8_t _lowest_note;
208         uint8_t _highest_note;
209 };
210
211
212 } // namespace Evoral
213
214 #endif // EVORAL_SEQUENCE_HPP
215