probably fix cleanup issues, but testing required
[ardour.git] / libs / ardour / ardour / source.h
1 /*
2     Copyright (C) 2000 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_source_h__
21 #define __ardour_source_h__
22
23 #include <string>
24 #include <set>
25
26 #include <sigc++/signal.h>
27
28 #include <pbd/statefuldestructible.h> 
29
30 #include <ardour/ardour.h>
31
32 namespace ARDOUR {
33
34 class Session;
35 class Playlist;
36
37 class Source : public PBD::StatefulDestructible
38 {
39   public:
40         Source (Session&, std::string name);
41         Source (Session&, const XMLNode&);
42         virtual ~Source ();
43
44         std::string name() const { return _name; }
45         int set_name (std::string str, bool destructive);
46
47         time_t timestamp() const { return _timestamp; }
48         void stamp (time_t when) { _timestamp = when; }
49
50         XMLNode& get_state ();
51         int set_state (const XMLNode&);
52
53         void use () { _in_use++; }
54         void disuse () { if (_in_use) { _in_use--; } }
55
56         void add_playlist (boost::shared_ptr<ARDOUR::Playlist>);
57         void remove_playlist (boost::weak_ptr<ARDOUR::Playlist>);
58
59         uint32_t used() const;
60
61   protected:
62         Session&          _session;
63         string            _name;
64         time_t            _timestamp;
65
66         Glib::Mutex playlist_lock;
67         typedef std::map<boost::shared_ptr<ARDOUR::Playlist>, uint32_t > PlaylistMap;
68         PlaylistMap _playlists;
69
70   private:
71         uint32_t          _in_use;
72 };
73
74 }
75
76 #endif /* __ardour_source_h__ */