Progress on the disk side of things:
[ardour.git] / libs / ardour / ardour / midi_playlist.h
1 /*
2     Copyright (C) 2006 Paul Davis 
3         Written by Dave Robillard, 2006
4  
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9  
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14  
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __ardour_midi_playlist_h__
21 #define __ardour_midi_playlist_h__
22
23 #include <vector>
24 #include <list>
25
26 #include <ardour/ardour.h>
27 #include <ardour/playlist.h>
28
29 namespace ARDOUR
30 {
31
32 class Session;
33 class Region;
34 class MidiRegion;
35 class Source;
36 class MidiRingBuffer;
37
38 class MidiPlaylist : public ARDOUR::Playlist
39 {
40 private:
41
42         struct State : public ARDOUR::StateManager::State
43         {
44                 RegionList regions;
45                 std::list<UndoAction> region_states;
46
47                 State (std::string why) : ARDOUR::StateManager::State (why)
48                 {}
49                 ~State ();
50         };
51
52 public:
53         MidiPlaylist (Session&, const XMLNode&, bool hidden = false);
54         MidiPlaylist (Session&, string name, bool hidden = false);
55         MidiPlaylist (const MidiPlaylist&, string name, bool hidden = false);
56         MidiPlaylist (const MidiPlaylist&, jack_nframes_t start, jack_nframes_t cnt,
57                       string name, bool hidden = false);
58
59         jack_nframes_t read (MidiRingBuffer& buf,
60                              jack_nframes_t start, jack_nframes_t cnt, uint32_t chan_n=0);
61
62         int set_state (const XMLNode&);
63         UndoAction get_memento() const;
64
65         template<class T>
66         void apply_to_history (T& obj, void (T::*method)(const ARDOUR::StateManager::StateMap&, state_id_t))
67         {
68                 RegionLock rlock (this);
69                 (obj.*method) (states, _current_state_id);
70         }
71
72         bool destroy_region (Region*);
73
74         void get_equivalent_regions (const MidiRegion&, std::vector<MidiRegion*>&);
75         void get_region_list_equivalent_regions (const MidiRegion&, std::vector<MidiRegion*>&);
76
77         void drop_all_states ();
78
79 protected:
80
81         /* state management */
82
83         StateManager::State* state_factory (std::string) const;
84         Change restore_state (StateManager::State&);
85         void send_state_change (Change);
86
87         /* playlist "callbacks" */
88         void flush_notifications ();
89
90         void finalize_split_region (Region *orig, Region *left, Region *right);
91
92         void refresh_dependents (Region& region);
93         void check_dependents (Region& region, bool norefresh);
94         void remove_dependents (Region& region);
95
96 protected:
97         ~MidiPlaylist (); /* public should use unref() */
98
99 private:
100         XMLNode& state (bool full_state);
101         void dump () const;
102
103         bool region_changed (Change, Region*);
104 };
105
106 } /* namespace ARDOUR */
107
108 #endif  /* __ardour_midi_playlist_h__ */
109
110