PluginInfo::type added to copy constructor. But why is the copy constructor defined...
[ardour.git] / libs / ardour / source.cc
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 #include <sys/stat.h>
21 #include <unistd.h>
22 #include <fcntl.h>
23 #include <poll.h>
24 #include <float.h>
25 #include <cerrno>
26 #include <ctime>
27 #include <cmath>
28 #include <iomanip>
29 #include <algorithm>
30
31 #include <glibmm/thread.h>
32 #include <pbd/xml++.h>
33 #include <pbd/pthread_utils.h>
34
35 #include <ardour/source.h>
36 #include <ardour/playlist.h>
37
38 #include "i18n.h"
39
40 using std::min;
41 using std::max;
42
43 using namespace ARDOUR;
44
45 Source::Source (Session& s, string name)
46         : _session (s)
47 {
48         _name = name;
49         _analysed = false;
50         _timestamp = 0;
51         _in_use = 0;
52 }
53
54 Source::Source (Session& s, const XMLNode& node) 
55         : _session (s)
56 {
57         _timestamp = 0;
58         _analysed = false;
59         _in_use = 0;
60
61         if (set_state (node)) {
62                 throw failed_constructor();
63         }
64 }
65
66 Source::~Source ()
67 {
68         notify_callbacks ();
69 }
70
71 XMLNode&
72 Source::get_state ()
73 {
74         XMLNode *node = new XMLNode ("Source");
75         char buf[64];
76
77         node->add_property ("name", _name);
78         _id.print (buf, sizeof (buf));
79         node->add_property ("id", buf);
80
81         if (_timestamp != 0) {
82                 snprintf (buf, sizeof (buf), "%ld", _timestamp);
83                 node->add_property ("timestamp", buf);
84         }
85
86         return *node;
87 }
88
89 int
90 Source::set_state (const XMLNode& node)
91 {
92         const XMLProperty* prop;
93
94         if ((prop = node.property ("name")) != 0) {
95                 _name = prop->value();
96         } else {
97                 return -1;
98         }
99         
100         if ((prop = node.property ("id")) != 0) {
101                 _id = prop->value ();
102         } else {
103                 return -1;
104         }
105
106         if ((prop = node.property ("timestamp")) != 0) {
107                 sscanf (prop->value().c_str(), "%ld", &_timestamp);
108         }
109
110         return 0;
111 }
112
113 void
114 Source::add_playlist (boost::shared_ptr<Playlist> pl)
115 {
116         std::pair<PlaylistMap::iterator,bool> res;
117         std::pair<boost::shared_ptr<Playlist>, uint32_t> newpair (pl, 1);
118         Glib::Mutex::Lock lm (playlist_lock);
119
120         res = _playlists.insert (newpair);
121
122         if (!res.second) {
123                 /* it already existed, bump count */
124                 res.first->second++;
125         }
126                 
127         pl->GoingAway.connect (bind (mem_fun (*this, &Source::remove_playlist), boost::weak_ptr<Playlist> (pl)));
128 }
129
130 void
131 Source::remove_playlist (boost::weak_ptr<Playlist> wpl)
132 {
133         boost::shared_ptr<Playlist> pl (wpl.lock());
134
135         if (!pl) {
136                 return;
137         }
138
139         PlaylistMap::iterator x;
140         Glib::Mutex::Lock lm (playlist_lock);
141
142         if ((x = _playlists.find (pl)) != _playlists.end()) {
143                 if (x->second > 1) {
144                         x->second--;
145                 } else {
146                         _playlists.erase (x);
147                 }
148         }
149 }
150
151 uint32_t
152 Source::used () const
153 {
154         return _playlists.size();
155 }
156
157 bool
158 Source::has_been_analysed() const
159 {
160         Glib::Mutex::Lock lm (_analysis_lock);
161         return _analysed;
162 }
163
164 void
165 Source::set_been_analysed (bool yn)
166 {
167         {
168                 Glib::Mutex::Lock lm (_analysis_lock);
169                 _analysed = yn;
170         }
171         
172         if (yn) {
173                 AnalysisChanged(); // EMIT SIGNAL
174         }
175 }
176