first part of MIDI cut/copy/paste ; fix for input/output_streams of an IOProcessor...
[ardour.git] / libs / ardour / io_processor.cc
index 7e0d4a771cb04a739040e09d7f2cf6b700d65f25..505d33a1b09b360fd2e55d42e42c233335f20da8 100644 (file)
@@ -69,13 +69,22 @@ IOProcessor::IOProcessor (Session& s, bool with_input, bool with_output,
 /* create an IOProcessor that proxies to an existing IO object */
 
 IOProcessor::IOProcessor (Session& s, boost::shared_ptr<IO> in, boost::shared_ptr<IO> out, 
-                         const string& proc_name, DataType dtype)
+                         const string& proc_name, DataType /*dtype*/)
        : Processor(s, proc_name)
        , _input (in)
        , _output (out)
 {
-       _own_input = false;
-       _own_output = false;
+       if (in) {
+               _own_input = false;
+       } else {
+               _own_input = true;
+       }
+
+       if (out) {
+               _own_output = false;
+       } else {
+               _own_output = true;
+       }
 }
 
 IOProcessor::~IOProcessor ()
@@ -107,10 +116,12 @@ IOProcessor::state (bool full_state)
        XMLNode& node (Processor::state (full_state));
        
        if (_own_input) {
-               XMLNode& i (_input->state (full_state));
-               // i.name() = X_("output");
-               node.add_child_nocopy (i);
                node.add_property ("own-input", "yes");
+               if (_input) {
+                       XMLNode& i (_input->state (full_state));
+                       // i.name() = X_("output");
+                       node.add_child_nocopy (i);
+               }
        } else {
                node.add_property ("own-input", "no");
                if (_input) {
@@ -119,10 +130,12 @@ IOProcessor::state (bool full_state)
        }
        
        if (_own_output) {
-               XMLNode& o (_output->state (full_state));
-               // o.name() = X_("output");
-               node.add_child_nocopy (o);
                node.add_property ("own-output", "yes");
+               if (_output) {
+                       XMLNode& o (_output->state (full_state));
+                       // o.name() = X_("output");
+                       node.add_child_nocopy (o);
+               }
        } else {
                node.add_property ("own-output", "no");
                if (_output) {
@@ -149,8 +162,6 @@ IOProcessor::set_state (const XMLNode& node)
                _own_output = (prop->value() == "yes");
        }
 
-       cerr << _name << " own input = " << _own_input << " output = " << _own_output << endl;
-       
        /* don't attempt to set state for a proxied IO that we don't own */
 
        XMLNodeList nlist = node.children();
@@ -173,9 +184,9 @@ IOProcessor::set_state (const XMLNode& node)
                        }
                        
                } else {
-                       error << _("XML node describing an IOProcessor is missing an IO node") << endmsg;
-                       return -1;
+                       /* no input */
                }
+
        }
        
        if (_own_output) {
@@ -193,7 +204,9 @@ IOProcessor::set_state (const XMLNode& node)
                        if ((prop = node.property ("name")) == 0) {
                                set_name (_output->name());
                        }
-               } 
+               } else {
+                       /* no output */
+               }
        }
 
        return 0;
@@ -207,18 +220,6 @@ IOProcessor::silence (nframes_t nframes)
        }
 }
 
-ChanCount
-IOProcessor::output_streams() const
-{
-       return _output ? _output->n_ports() : ChanCount::ZERO;
-}
-
-ChanCount
-IOProcessor::input_streams () const
-{
-       return _input ? _input->n_ports() : ChanCount::ZERO;
-}
-
 ChanCount
 IOProcessor::natural_output_streams() const
 {
@@ -246,3 +247,21 @@ IOProcessor::set_name (const std::string& name)
 
        return ret;
 }
+
+bool
+IOProcessor::feeds (boost::shared_ptr<Route> other) const
+{
+       return _output && _output->connected_to (other->input());
+}
+
+void
+IOProcessor::disconnect ()
+{
+       if (_input) {
+               _input->disconnect (this);
+       }
+
+       if (_output) {
+               _output->disconnect (this);
+       }
+}