use new syntax for connecting to backend signals that enforces explicit connection...
[ardour.git] / libs / ardour / ardour / session_playlists.h
1 /*
2     Copyright (C) 2009 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __ardour_session_playlists_h__
21 #define __ardour_session_playlists_h__
22
23 #include <set>
24 #include <vector>
25 #include <string>
26 #include <glibmm/thread.h>
27 #include <boost/shared_ptr.hpp>
28 #include <boost/function.hpp>
29
30 #include "pbd/signals.h"
31
32 class XMLNode;
33
34 namespace ARDOUR {
35
36 class Playlist;
37 class Region;
38 class Source;
39 class Session;
40         
41 class SessionPlaylists : public PBD::ScopedConnectionList
42 {
43 public:
44         ~SessionPlaylists ();
45         
46         boost::shared_ptr<Playlist> by_name (std::string name);
47         uint32_t source_use_count (boost::shared_ptr<const Source> src) const;
48         template<class T> void foreach (T *obj, void (T::*func)(boost::shared_ptr<Playlist>));
49         void get (std::vector<boost::shared_ptr<Playlist> >&);
50         void unassigned (std::list<boost::shared_ptr<Playlist> > & list);
51
52 private:
53         friend class Session;
54         
55         bool add (boost::shared_ptr<Playlist>);
56         void remove (boost::shared_ptr<Playlist>);
57         void track (bool, boost::weak_ptr<Playlist>);
58         
59         uint32_t n_playlists() const;
60         void find_equivalent_playlist_regions (boost::shared_ptr<Region>, std::vector<boost::shared_ptr<Region> >& result);
61         void update_after_tempo_map_change ();
62         void add_state (XMLNode *, bool);
63         bool maybe_delete_unused (boost::function<int(boost::shared_ptr<Playlist>)>);
64         int load (Session &, const XMLNode&);
65         int load_unused (Session &, const XMLNode&);
66         boost::shared_ptr<Playlist> XMLPlaylistFactory (Session &, const XMLNode&);
67
68         mutable Glib::Mutex lock;
69         typedef std::set<boost::shared_ptr<Playlist> > List;
70         List playlists;
71         List unused_playlists;
72 };
73
74 }
75
76 #endif