summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-03-14 23:58:27 -0400
committerDavid Robillard <d@drobilla.net>2018-03-14 23:58:27 -0400
commitfbd0184b77f4bcd7ec22642b5f75f2188b870f72 (patch)
tree30ec1b1e6fa6873a4171e96a387487bc2fbe0a72 /src
parentbffcef562bfc7037470adc07f104524350021260 (diff)
downloadingen-fbd0184b77f4bcd7ec22642b5f75f2188b870f72.tar.gz
ingen-fbd0184b77f4bcd7ec22642b5f75f2188b870f72.tar.bz2
ingen-fbd0184b77f4bcd7ec22642b5f75f2188b870f72.zip
Remove RunContext dependency from CompiledGraph
Diffstat (limited to 'src')
-rw-r--r--src/server/CompiledGraph.cpp6
-rw-r--r--src/server/CompiledGraph.hpp3
-rw-r--r--src/server/GraphImpl.cpp2
3 files changed, 2 insertions, 9 deletions
diff --git a/src/server/CompiledGraph.cpp b/src/server/CompiledGraph.cpp
index 8b996c10..449e7aa0 100644
--- a/src/server/CompiledGraph.cpp
+++ b/src/server/CompiledGraph.cpp
@@ -205,12 +205,6 @@ CompiledGraph::compile_block(BlockImpl* n,
}
void
-CompiledGraph::run(RunContext& context)
-{
- _master->run(context);
-}
-
-void
CompiledGraph::dump(const std::string& name) const
{
auto sink = [](const std::string& s) {
diff --git a/src/server/CompiledGraph.hpp b/src/server/CompiledGraph.hpp
index 9f4de68c..3af43722 100644
--- a/src/server/CompiledGraph.hpp
+++ b/src/server/CompiledGraph.hpp
@@ -32,7 +32,6 @@ namespace Server {
class BlockImpl;
class GraphImpl;
-class RunContext;
/** A graph ``compiled'' into a quickly executable form.
*
@@ -46,7 +45,7 @@ class CompiledGraph : public Raul::Maid::Disposable
public:
static MPtr<CompiledGraph> compile(Raul::Maid& maid, GraphImpl& graph);
- void run(RunContext& context);
+ Task& master() { return *_master; }
private:
friend class Raul::Maid; ///< Allow make_managed to construct
diff --git a/src/server/GraphImpl.cpp b/src/server/GraphImpl.cpp
index f9c4cb54..dc928179 100644
--- a/src/server/GraphImpl.cpp
+++ b/src/server/GraphImpl.cpp
@@ -232,7 +232,7 @@ void
GraphImpl::run(RunContext& context)
{
if (_compiled_graph) {
- _compiled_graph->run(context);
+ _compiled_graph->master().run(context);
}
}