summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ingen/shared/Builder.hpp2
-rw-r--r--src/shared/Builder.cpp48
2 files changed, 1 insertions, 49 deletions
diff --git a/ingen/shared/Builder.hpp b/ingen/shared/Builder.hpp
index 11804330..1c57c871 100644
--- a/ingen/shared/Builder.hpp
+++ b/ingen/shared/Builder.hpp
@@ -40,8 +40,6 @@ public:
void connect(SharedPtr<const GraphObject> object);
private:
- void build_object(SharedPtr<const GraphObject> object);
-
Shared::URIs& _uris;
Interface& _interface;
};
diff --git a/src/shared/Builder.cpp b/src/shared/Builder.cpp
index b3f005f1..944b00ce 100644
--- a/src/shared/Builder.cpp
+++ b/src/shared/Builder.cpp
@@ -16,10 +16,6 @@
#include "ingen/Edge.hpp"
#include "ingen/Interface.hpp"
-#include "ingen/Node.hpp"
-#include "ingen/Patch.hpp"
-#include "ingen/Plugin.hpp"
-#include "ingen/Port.hpp"
#include "ingen/shared/Builder.hpp"
#include "ingen/shared/URIs.hpp"
#include "raul/Atom.hpp"
@@ -39,42 +35,7 @@ Builder::Builder(Shared::URIs& uris, Interface& interface)
void
Builder::build(SharedPtr<const GraphObject> object)
{
- SharedPtr<const Patch> patch = PtrCast<const Patch>(object);
- if (patch) {
- if (!object->path().is_root()) {
- Resource::Properties props;
- props.insert(make_pair(_uris.rdf_type,
- _uris.forge.alloc_uri(_uris.ingen_Patch.str())));
- props.insert(make_pair(_uris.ingen_polyphony,
- _uris.forge.make(int32_t(patch->internal_poly()))));
- _interface.put(object->path(), props);
- }
-
- build_object(object);
- /*for (Patch::Edges::const_iterator i = patch->edges().begin();
- i != patch->edges().end(); ++i) {
- _interface.connect((*i)->src_port_path(), (*i)->dst_port_path());
- }*/
- return;
- }
-
- SharedPtr<const Node> node = PtrCast<const Node>(object);
- if (node) {
- Resource::Properties props;
- props.insert(make_pair(_uris.rdf_type, _uris.ingen_Node));
- props.insert(make_pair(_uris.ingen_prototype,
- _uris.forge.alloc_uri(node->plugin()->uri().str())));
- _interface.put(node->path(), props);
- build_object(object);
- return;
- }
-
- SharedPtr<const Port> port = PtrCast<const Port>(object);
- if (port) {
- _interface.put(port->path(), port->properties());
- build_object(object);
- return;
- }
+ _interface.put(object->path(), object->properties());
}
void
@@ -90,12 +51,5 @@ Builder::connect(SharedPtr<const GraphObject> object)
}
}
-void
-Builder::build_object(SharedPtr<const GraphObject> object)
-{
- typedef GraphObject::Properties::const_iterator iterator;
- _interface.put(object->uri(), object->properties());
-}
-
} // namespace Shared
} // namespace Ingen