Merged with trunk R992.
[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
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, DataType type)
46         : _session (s)
47         , _type(type)
48 {
49         assert(_name.find("/") == string::npos);
50
51         _name = name;
52         _timestamp = 0;
53         _length = 0;
54 }
55
56 Source::Source (Session& s, const XMLNode& node) 
57         : _session (s)
58         , _type(DataType::AUDIO)
59 {
60         _timestamp = 0;
61         _length = 0;
62
63         if (set_state (node) || _type == DataType::NIL) {
64                 throw failed_constructor();
65         }
66         assert(_name.find("/") == string::npos);
67 }
68
69 Source::~Source ()
70 {
71         notify_callbacks ();
72 }
73
74 XMLNode&
75 Source::get_state ()
76 {
77         XMLNode *node = new XMLNode ("Source");
78         char buf[64];
79
80         node->add_property ("name", _name);
81         node->add_property ("type", _type.to_string());
82         _id.print (buf, sizeof (buf));
83         node->add_property ("id", buf);
84
85         if (_timestamp != 0) {
86                 snprintf (buf, sizeof (buf), "%ld", _timestamp);
87                 node->add_property ("timestamp", buf);
88         }
89
90         return *node;
91 }
92
93 int
94 Source::set_state (const XMLNode& node)
95 {
96         const XMLProperty* prop;
97
98         if ((prop = node.property ("name")) != 0) {
99                 _name = prop->value();
100         } else {
101                 return -1;
102         }
103         
104         if ((prop = node.property ("id")) != 0) {
105                 _id = prop->value ();
106         } else {
107                 return -1;
108         }
109
110         if ((prop = node.property ("type")) != 0) {
111                 _type = DataType(prop->value());
112         }
113
114         if ((prop = node.property ("timestamp")) != 0) {
115                 sscanf (prop->value().c_str(), "%ld", &_timestamp);
116         }
117         assert(_name.find("/") == string::npos);
118
119         return 0;
120 }
121
122 void
123 Source::update_length (jack_nframes_t pos, jack_nframes_t cnt)
124 {
125         if (pos + cnt > _length) {
126                 _length = pos+cnt;
127         }
128 }
129