Merged with trunk R861
[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 (boost::shared_ptr<Region>);
73
74         void drop_all_states ();
75
76 protected:
77
78         /* state management */
79
80         StateManager::State* state_factory (std::string) const;
81         Change restore_state (StateManager::State&);
82         void send_state_change (Change);
83
84         /* playlist "callbacks" */
85         void flush_notifications ();
86
87         void finalize_split_region (boost::shared_ptr<Region> original, boost::shared_ptr<Region> left, boost::shared_ptr<Region> right);
88         
89         void check_dependents (boost::shared_ptr<Region> region, bool norefresh);
90         void refresh_dependents (boost::shared_ptr<Region> region);
91         void remove_dependents (boost::shared_ptr<Region> region);
92
93 protected:
94         ~MidiPlaylist (); /* public should use unref() */
95
96 private:
97         XMLNode& state (bool full_state);
98         void dump () const;
99
100         bool region_changed (Change, boost::shared_ptr<Region>);
101 };
102
103 } /* namespace ARDOUR */
104
105 #endif  /* __ardour_midi_playlist_h__ */
106
107