Merging from trunk
[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 (string name)
46 {
47         _name = name;
48         _id = ARDOUR::new_id();
49         _use_cnt = 0;
50         _timestamp = 0;
51 }
52
53 Source::Source (const XMLNode& node) 
54 {
55         _use_cnt = 0;
56         _timestamp = 0;
57
58         if (set_state (node)) {
59                 throw failed_constructor();
60         }
61 }
62
63 Source::~Source ()
64 {
65 }
66
67 XMLNode&
68 Source::get_state ()
69 {
70         XMLNode *node = new XMLNode ("Source");
71         char buf[64];
72
73         node->add_property ("name", _name);
74         snprintf (buf, sizeof(buf)-1, "%" PRIu64, _id);
75         node->add_property ("id", buf);
76
77         if (_timestamp != 0) {
78                 snprintf (buf, sizeof (buf), "%ld", _timestamp);
79                 node->add_property ("timestamp", buf);
80         }
81
82         return *node;
83 }
84
85 int
86 Source::set_state (const XMLNode& node)
87 {
88         const XMLProperty* prop;
89
90         if ((prop = node.property ("name")) != 0) {
91                 _name = prop->value();
92         } else {
93                 return -1;
94         }
95         
96         if ((prop = node.property ("id")) != 0) {
97                 sscanf (prop->value().c_str(), "%" PRIu64, &_id);
98         } else {
99                 return -1;
100         }
101
102         if ((prop = node.property ("timestamp")) != 0) {
103                 sscanf (prop->value().c_str(), "%ld", &_timestamp);
104         }
105
106         return 0;
107 }
108
109 void
110 Source::use ()
111 {
112         _use_cnt++;
113 }
114
115 void
116 Source::release ()
117 {
118         if (_use_cnt) --_use_cnt;
119 }
120