Merged with trunk R1283.
[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     $Id$
19 */
20
21 #include <sys/stat.h>
22 #include <unistd.h>
23 #include <fcntl.h>
24 #include <poll.h>
25 #include <float.h>
26 #include <cerrno>
27 #include <ctime>
28 #include <cmath>
29 #include <iomanip>
30 #include <algorithm>
31
32 #include <glibmm/thread.h>
33 #include <pbd/xml++.h>
34 #include <pbd/pthread_utils.h>
35
36 #include <ardour/source.h>
37 #include <ardour/playlist.h>
38
39 #include "i18n.h"
40
41 using std::min;
42 using std::max;
43
44 using namespace ARDOUR;
45
46 Source::Source (Session& s, string name, DataType type)
47         : _session (s)
48         , _type(type)
49 {
50         assert(_name.find("/") == string::npos);
51
52         _name = name;
53         _timestamp = 0;
54         _length = 0;
55         _in_use = 0;
56 }
57
58 Source::Source (Session& s, const XMLNode& node) 
59         : _session (s)
60         , _type(DataType::AUDIO)
61 {
62         _timestamp = 0;
63         _length = 0;
64         _in_use = 0;
65
66         if (set_state (node) || _type == DataType::NIL) {
67                 throw failed_constructor();
68         }
69         assert(_name.find("/") == string::npos);
70 }
71
72 Source::~Source ()
73 {
74         notify_callbacks ();
75 }
76
77 XMLNode&
78 Source::get_state ()
79 {
80         XMLNode *node = new XMLNode ("Source");
81         char buf[64];
82
83         node->add_property ("name", _name);
84         node->add_property ("type", _type.to_string());
85         _id.print (buf, sizeof (buf));
86         node->add_property ("id", buf);
87
88         if (_timestamp != 0) {
89                 snprintf (buf, sizeof (buf), "%ld", _timestamp);
90                 node->add_property ("timestamp", buf);
91         }
92
93         return *node;
94 }
95
96 int
97 Source::set_state (const XMLNode& node)
98 {
99         const XMLProperty* prop;
100
101         if ((prop = node.property ("name")) != 0) {
102                 _name = prop->value();
103         } else {
104                 return -1;
105         }
106         
107         if ((prop = node.property ("id")) != 0) {
108                 _id = prop->value ();
109         } else {
110                 return -1;
111         }
112
113         if ((prop = node.property ("type")) != 0) {
114                 _type = DataType(prop->value());
115         }
116
117         if ((prop = node.property ("timestamp")) != 0) {
118                 sscanf (prop->value().c_str(), "%ld", &_timestamp);
119         }
120         assert(_name.find("/") == string::npos);
121
122         return 0;
123 }
124
125 void
126 Source::update_length (jack_nframes_t pos, jack_nframes_t cnt)
127 {
128         if (pos + cnt > _length) {
129                 _length = pos+cnt;
130         }
131 }
132
133 void
134 Source::add_playlist (boost::shared_ptr<Playlist> pl)
135 {
136         _playlists.insert (pl);
137         pl->GoingAway.connect (bind (mem_fun (*this, &Source::remove_playlist), boost::weak_ptr<Playlist> (pl)));
138 }
139
140 void
141 Source::remove_playlist (boost::weak_ptr<Playlist> wpl)
142 {
143         boost::shared_ptr<Playlist> pl (wpl.lock());
144
145         if (!pl) {
146                 return;
147         }
148
149         std::set<boost::shared_ptr<Playlist> >::iterator x;
150
151         if ((x = _playlists.find (pl)) != _playlists.end()) {
152                 _playlists.erase (x);
153         }
154 }
155
156 uint32_t
157 Source::used () const
158 {
159         return _playlists.size();
160 }