Trim include dependency graph, especially for io.h and session.h.
[ardour.git] / libs / ardour / io_processor.cc
1 /*
2     Copyright (C) 2001 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 <fstream>
21 #include <algorithm>
22 #include <string>
23 #include <cerrno>
24 #include <unistd.h>
25 #include <sstream>
26
27 #include <sigc++/bind.h>
28
29 #include <pbd/xml++.h>
30 #include <pbd/enumwriter.h>
31
32 #include <ardour/io_processor.h>
33 #include <ardour/session.h>
34 #include <ardour/utils.h>
35 #include <ardour/send.h>
36 #include <ardour/port_insert.h>
37 #include <ardour/plugin_insert.h>
38 #include <ardour/io.h>
39
40 #include "i18n.h"
41
42 using namespace std;
43 using namespace ARDOUR;
44 using namespace PBD;
45
46 IOProcessor::IOProcessor (Session& s, const string& name, Placement p,
47                           int input_min, int input_max,
48                           int output_min, int output_max, 
49                           DataType dtype,
50                           bool public_ports)
51         : Processor(s, name, p)
52         , _io (new IO(s, name, input_min, input_max, output_min, output_max, dtype, public_ports))
53 {
54         _active = false;
55         _sort_key = 0;
56         _gui = 0;
57         _extra_xml = 0;
58 }
59
60 IOProcessor::~IOProcessor ()
61 {
62         notify_callbacks ();
63 }
64
65 XMLNode&
66 IOProcessor::state (bool full_state)
67 {
68         XMLNode& node = Processor::state(full_state);
69         
70         node.add_child_nocopy (_io->state (full_state));
71
72         return node;
73 }
74
75 int
76 IOProcessor::set_state (const XMLNode& node)
77 {
78         const XMLProperty *prop;
79         const XMLNode *io_node = 0;
80
81         Processor::set_state(node);
82
83         XMLNodeList nlist = node.children();
84         XMLNodeIterator niter;
85
86         for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
87                 if ((*niter)->name() == IO::state_node_name) {
88                         io_node = (*niter);
89                         break;
90                 } else if ((*niter)->name() == "Redirect") {
91                         XMLNodeList rlist = (*niter)->children();
92                         XMLNodeIterator riter;
93
94                         for (riter = rlist.begin(); riter != rlist.end(); ++riter) {
95                                 if ( (*riter)->name() == IO::state_node_name) {
96                                         warning << _("Found legacy IO in a redirect") << endmsg;
97                                         io_node = (*riter);
98                                         break;
99                                 }
100                         }
101                 }
102         }
103
104         if (io_node) {
105                 _io->set_state(*io_node);
106
107                 // legacy sessions: use IO name
108                 if ((prop = node.property ("name")) == 0) {
109                         set_name(_io->name());
110                 }
111
112         } else {
113                 error << _("XML node describing a redirect is missing an IO node") << endmsg;
114                 return -1;
115         }
116
117         return 0;
118 }
119
120 void
121 IOProcessor::silence (nframes_t nframes, nframes_t offset)
122 {
123         _io->silence(nframes, offset);
124 }
125
126 ChanCount
127 IOProcessor::output_streams() const
128 {
129         return _io->n_outputs();
130 }
131
132 ChanCount
133 IOProcessor::input_streams () const
134 {
135         return _io->n_inputs();
136 }
137
138 ChanCount
139 IOProcessor::natural_output_streams() const
140 {
141         return _io->n_outputs();
142 }
143
144 ChanCount
145 IOProcessor::natural_input_streams () const
146 {
147         return _io->n_inputs();
148 }
149
150 void
151 IOProcessor::automation_snapshot (nframes_t now, bool force)
152 {
153         _io->automation_snapshot(now, force);
154 }
155