summaryrefslogtreecommitdiffstats
path: root/src/server/BlockFactory.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-18 23:05:06 +0000
committerDavid Robillard <d@drobilla.net>2012-08-18 23:05:06 +0000
commit317627ef40f7654c298aa1ac707851c852259e3a (patch)
tree38f7ed57aafb7b3b8e21e6caa3429a39207e4a9a /src/server/BlockFactory.hpp
parent160b2baf7df8b960f22619c013b3197c0dc51c2b (diff)
downloadingen-317627ef40f7654c298aa1ac707851c852259e3a.tar.gz
ingen-317627ef40f7654c298aa1ac707851c852259e3a.tar.bz2
ingen-317627ef40f7654c298aa1ac707851c852259e3a.zip
Node => Block
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4720 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/BlockFactory.hpp')
-rw-r--r--src/server/BlockFactory.hpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/server/BlockFactory.hpp b/src/server/BlockFactory.hpp
new file mode 100644
index 00000000..a66b7913
--- /dev/null
+++ b/src/server/BlockFactory.hpp
@@ -0,0 +1,63 @@
+/*
+ This file is part of Ingen.
+ Copyright 2007-2012 David Robillard <http://drobilla.net/>
+
+ Ingen is free software: you can redistribute it and/or modify it under the
+ terms of the GNU Affero General Public License as published by the Free
+ Software Foundation, either version 3 of the License, or any later version.
+
+ Ingen 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 Affero General Public License for details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with Ingen. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef INGEN_ENGINE_BLOCKFACTORY_HPP
+#define INGEN_ENGINE_BLOCKFACTORY_HPP
+
+#include <map>
+
+#include "ingen/World.hpp"
+#include "raul/Noncopyable.hpp"
+#include "raul/SharedPtr.hpp"
+#include "raul/URI.hpp"
+
+namespace Ingen {
+namespace Server {
+
+class PluginImpl;
+class LV2Info;
+
+/** Discovers and loads plugin libraries.
+ *
+ * \ingroup engine
+ */
+class BlockFactory : public Raul::Noncopyable
+{
+public:
+ explicit BlockFactory(Ingen::World* world);
+ ~BlockFactory();
+
+ void load_plugin(const Raul::URI& uri);
+
+ typedef std::map<Raul::URI, PluginImpl*> Plugins;
+ const Plugins& plugins();
+
+ PluginImpl* plugin(const Raul::URI& uri);
+
+private:
+ void load_lv2_plugins();
+ void load_internal_plugins();
+
+ Plugins _plugins;
+ Ingen::World* _world;
+ SharedPtr<LV2Info> _lv2_info;
+ bool _has_loaded;
+};
+
+} // namespace Server
+} // namespace Ingen
+
+#endif // INGEN_ENGINE_BLOCKFACTORY_HPP