summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/io_vector.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-03 20:24:14 +0200
committerRobin Gareus <robin@gareus.org>2016-04-03 22:45:23 +0200
commitdaa10a6a38638da3b9c5e6de615367e44ccf4e4c (patch)
treeaa45975c5a9d7503167c29d0c366553464d68b00 /libs/ardour/ardour/io_vector.h
parent650f2802a0ac634dbcfa33172bf3bf51aa571845 (diff)
Fix graph ordering incl. Inserts, Returns and SideChains
When building the process graph. Ardour usess Route::direct_feeds_according_to_reality() This function only tests if the current route (or any ioprocessors) is feeding another route's *input*. Inserts, Return and now Sidechains are ignored as destinations on the destination route are not taken into account. This is now resolved by adding an IOVector, a collection of all inputs of the destination route.
Diffstat (limited to 'libs/ardour/ardour/io_vector.h')
-rw-r--r--libs/ardour/ardour/io_vector.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/libs/ardour/ardour/io_vector.h b/libs/ardour/ardour/io_vector.h
new file mode 100644
index 0000000000..ef100702c7
--- /dev/null
+++ b/libs/ardour/ardour/io_vector.h
@@ -0,0 +1,69 @@
+/*
+ * Copyright (C) 2016 Robin Gareus <robin@gareus.org>
+ * Copyright (C) 2006 Paul Davis
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+#ifndef __ardour_io_vector_h__
+#define __ardour_io_vector_h__
+
+#include <vector>
+#include <boost/shared_ptr.hpp>
+#include "ardour/io.h"
+
+namespace ARDOUR {
+
+class IOVector : public std::vector<boost::weak_ptr<ARDOUR::IO> >
+{
+public:
+ bool connected_to (const IOVector& other) const {
+ for (IOVector::const_iterator i = other.begin(); i != other.end(); ++i) {
+ boost::shared_ptr<const IO> io = i->lock();
+ if (!io) continue;
+ if (connected_to (io)) {
+ return true;
+ }
+ }
+ return false;
+ }
+
+ bool connected_to (boost::shared_ptr<const IO> other) const {
+ for (IOVector::const_iterator i = begin(); i != end(); ++i) {
+ boost::shared_ptr<const IO> io = i->lock();
+ if (!io) continue;
+ if (io->connected_to (other)) {
+ return true;
+ }
+ }
+ return false;
+ }
+
+ bool fed_by (boost::shared_ptr<const IO> other) const {
+ for (IOVector::const_iterator i = begin(); i != end(); ++i) {
+ boost::shared_ptr<const IO> io = i->lock();
+ if (!io) continue;
+ if (other->connected_to (io)) {
+ return true;
+ }
+ }
+ return false;
+ }
+};
+
+} // namespace ARDOUR
+
+
+#endif