first pass at internal sends. this is a very tentative work in progress, and it is...
[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
39 #include "i18n.h"
40
41 using namespace std;
42 using namespace ARDOUR;
43 using namespace PBD;
44
45 IOProcessor::IOProcessor (Session& s, const string& name, Placement p,
46                           int input_min, int input_max,
47                           int output_min, int output_max, 
48                           DataType dtype,
49                           bool public_ports)
50         : Processor(s, name, p)
51         , _io (new IO(s, name, input_min, input_max, output_min, output_max, dtype, public_ports))
52 {
53         _active = false;
54         _sort_key = 0;
55         _gui = 0;
56         _extra_xml = 0;
57 }
58
59 IOProcessor::~IOProcessor ()
60 {
61         notify_callbacks ();
62 }
63
64 XMLNode&
65 IOProcessor::state (bool full_state)
66 {
67         XMLNode& node = Processor::state(full_state);
68         
69         node.add_child_nocopy (_io->state (full_state));
70
71         return node;
72 }
73
74 int
75 IOProcessor::set_state (const XMLNode& node)
76 {
77         const XMLProperty *prop;
78         const XMLNode *io_node = 0;
79
80         Processor::set_state(node);
81
82         XMLNodeList nlist = node.children();
83         XMLNodeIterator niter;
84
85         for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
86                 if ((*niter)->name() == IO::state_node_name) {
87                         io_node = (*niter);
88                         break;
89                 } else if ((*niter)->name() == "Redirect") {
90                         XMLNodeList rlist = (*niter)->children();
91                         XMLNodeIterator riter;
92
93                         for (riter = rlist.begin(); riter != rlist.end(); ++riter) {
94                                 if ( (*riter)->name() == IO::state_node_name) {
95                                         warning << _("Found legacy IO in a redirect") << endmsg;
96                                         io_node = (*riter);
97                                         break;
98                                 }
99                         }
100                 }
101         }
102
103         if (io_node) {
104                 _io->set_state(*io_node);
105
106                 // legacy sessions: use IO name
107                 if ((prop = node.property ("name")) == 0) {
108                         set_name(_io->name());
109                 }
110
111         } else {
112                 error << _("XML node describing a redirect is missing an IO node") << endmsg;
113                 return -1;
114         }
115
116         return 0;
117 }
118
119 void
120 IOProcessor::silence (nframes_t nframes, nframes_t offset)
121 {
122         _io->silence(nframes, offset);
123 }