annotate plugin/RealTimePluginFactory.h @ 1752:6d09d68165a4 by-id

Further review of ById: make IDs only available when adding a model to the ById store, not by querying the item directly. This means any id encountered in the wild must have been added to the store at some point (even if later released), which simplifies reasoning about lifecycles
author Chris Cannam
date Fri, 05 Jul 2019 15:28:07 +0100
parents ad5f892c0c4d
children 5f8fbbde08ff
rev   line source
Chris@49 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@0 2
Chris@0 3 /*
Chris@52 4 Sonic Visualiser
Chris@52 5 An audio file viewer and annotation editor.
Chris@52 6 Centre for Digital Music, Queen Mary, University of London.
Chris@52 7 This file copyright 2006 Chris Cannam.
Chris@0 8
Chris@52 9 This program is free software; you can redistribute it and/or
Chris@52 10 modify it under the terms of the GNU General Public License as
Chris@52 11 published by the Free Software Foundation; either version 2 of the
Chris@52 12 License, or (at your option) any later version. See the file
Chris@52 13 COPYING included with this distribution for more information.
Chris@0 14 */
Chris@0 15
Chris@0 16 /*
Chris@0 17 This is a modified version of a source file from the
Chris@0 18 Rosegarden MIDI and audio sequencer and notation editor.
Chris@17 19 This file copyright 2000-2006 Chris Cannam.
Chris@0 20 */
Chris@0 21
Chris@1581 22 #ifndef SV_REALTIME_PLUGIN_FACTORY_H
Chris@1581 23 #define SV_REALTIME_PLUGIN_FACTORY_H
Chris@0 24
Chris@0 25 #include <QString>
Chris@0 26 #include <vector>
Chris@0 27
Chris@686 28 #include "base/Debug.h"
Chris@1040 29 #include "base/BaseTypes.h"
Chris@686 30
Chris@0 31 class RealTimePluginInstance;
Chris@0 32
Chris@60 33 class RealTimePluginDescriptor
Chris@60 34 {
Chris@60 35 public:
Chris@60 36 std::string name;
Chris@60 37 std::string label;
Chris@60 38 std::string maker;
Chris@60 39 std::string copyright;
Chris@60 40 std::string category;
Chris@60 41 bool isSynth;
Chris@60 42 unsigned int parameterCount;
Chris@60 43 unsigned int audioInputPortCount;
Chris@166 44 unsigned int audioOutputPortCount;
Chris@60 45 unsigned int controlOutputPortCount;
Chris@60 46 std::vector<std::string> controlOutputPortNames;
Chris@60 47 };
Chris@60 48
Chris@0 49 class RealTimePluginFactory
Chris@0 50 {
Chris@0 51 public:
Chris@259 52 virtual ~RealTimePluginFactory();
Chris@259 53
Chris@0 54 static RealTimePluginFactory *instance(QString pluginType);
Chris@0 55 static RealTimePluginFactory *instanceFor(QString identifier);
Chris@0 56 static std::vector<QString> getAllPluginIdentifiers();
Chris@0 57 static void enumerateAllPlugins(std::vector<QString> &);
Chris@0 58
Chris@1040 59 static void setSampleRate(sv_samplerate_t sampleRate) { m_sampleRate = sampleRate; }
Chris@0 60
Chris@0 61 /**
Chris@0 62 * Look up the plugin path and find the plugins in it. Called
Chris@0 63 * automatically after construction of a factory.
Chris@0 64 */
Chris@0 65 virtual void discoverPlugins() = 0;
Chris@0 66
Chris@0 67 /**
Chris@0 68 * Return a reference to a list of all plugin identifiers that can
Chris@0 69 * be created by this factory.
Chris@0 70 */
Chris@0 71 virtual const std::vector<QString> &getPluginIdentifiers() const = 0;
Chris@0 72
Chris@0 73 /**
Chris@0 74 * Append to the given list descriptions of all the available
Chris@0 75 * plugins and their ports. This is in a standard format, see
Chris@0 76 * the LADSPA implementation for details.
Chris@0 77 */
Chris@0 78 virtual void enumeratePlugins(std::vector<QString> &list) = 0;
Chris@0 79
Chris@0 80 /**
Chris@60 81 * Get some basic information about a plugin (rapidly).
Chris@60 82 */
Chris@60 83 virtual const RealTimePluginDescriptor *getPluginDescriptor(QString identifier) const = 0;
Chris@60 84
Chris@60 85 /**
Chris@0 86 * Instantiate a plugin.
Chris@0 87 */
Chris@0 88 virtual RealTimePluginInstance *instantiatePlugin(QString identifier,
Chris@1429 89 int clientId,
Chris@1429 90 int position,
Chris@1429 91 sv_samplerate_t sampleRate,
Chris@1429 92 int blockSize,
Chris@1429 93 int channels) = 0;
Chris@0 94
Chris@165 95 /**
Chris@165 96 * Get category metadata about a plugin (without instantiating it).
Chris@165 97 */
Chris@165 98 virtual QString getPluginCategory(QString identifier) = 0;
Chris@165 99
Chris@1464 100 /**
Chris@1464 101 * Get the full file path (including both directory and filename)
Chris@1464 102 * of the library file that provides a given plugin
Chris@1464 103 * identifier. Note getPluginIdentifiers() must have been called
Chris@1464 104 * before this has access to the necessary information.
Chris@1464 105 */
Chris@1464 106 virtual QString getPluginLibraryPath(QString identifier) = 0;
Chris@1464 107
Chris@0 108 protected:
Chris@0 109 RealTimePluginFactory() { }
Chris@0 110
Chris@0 111 // for call by RealTimePluginInstance dtor
Chris@0 112 virtual void releasePlugin(RealTimePluginInstance *, QString identifier) = 0;
Chris@0 113 friend class RealTimePluginInstance;
Chris@0 114
Chris@1040 115 static sv_samplerate_t m_sampleRate;
Chris@0 116 };
Chris@0 117
Chris@0 118 #endif