Loading...
Searching...
No Matches
pluginRegistry.h
1//
2// Copyright 2016 Pixar
3//
4// Licensed under the Apache License, Version 2.0 (the "Apache License")
5// with the following modification; you may not use this file except in
6// compliance with the Apache License and the following modification to it:
7// Section 6. Trademarks. is deleted and replaced with:
8//
9// 6. Trademarks. This License does not grant permission to use the trade
10// names, trademarks, service marks, or product names of the Licensor
11// and its affiliates, except as required to comply with Section 4(c) of
12// the License and to reproduce the content of the NOTICE file.
13//
14// You may obtain a copy of the Apache License at
15//
16// http://www.apache.org/licenses/LICENSE-2.0
17//
18// Unless required by applicable law or agreed to in writing, software
19// distributed under the Apache License with the above modification is
20// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21// KIND, either express or implied. See the Apache License for the specific
22// language governing permissions and limitations under the Apache License.
23//
24#ifndef PXR_IMAGING_HF_PLUGIN_REGISTRY_H
25#define PXR_IMAGING_HF_PLUGIN_REGISTRY_H
26
27#include "pxr/pxr.h"
28#include "pxr/imaging/hf/api.h"
29#include "pxr/imaging/hf/perfLog.h"
30#include "pxr/imaging/hf/pluginDesc.h"
31#include "pxr/base/plug/registry.h"
32#include "pxr/base/tf/type.h"
33
34#include <map>
35
36PXR_NAMESPACE_OPEN_SCOPE
37
38
39class HfPluginBase;
40class Hf_PluginEntry;
41
42
72{
73
74public:
79 HF_API
80 void GetPluginDescs(HfPluginDescVector *plugins);
81
86 HF_API
87 bool GetPluginDesc(const TfToken &pluginId, HfPluginDesc *desc);
88
92 HF_API
94
99 HF_API
101
106 HF_API
107 bool IsRegisteredPlugin(const TfToken &pluginId);
108
109 HF_API
110 TfToken GetPluginId(const HfPluginBase *plugin) const;
111
112protected:
113 // Must be derived.
114
120 HF_API
121 HfPluginRegistry(const TfType &pluginBaseType);
122 HF_API
123 virtual ~HfPluginRegistry();
124
129 HF_API
130 HfPluginBase *GetPlugin(const TfToken &pluginId);
131
141 template<typename T, typename PluginBaseType, typename... Bases>
142 static void Define();
143
146 HF_API
148 const PlugRegistry &plugRegistry, const TfType &pluginType);
149
150private:
151 typedef std::vector<Hf_PluginEntry> _PluginEntryVector;
152 typedef std::map<TfToken, size_t> _TokenMap;
153
154 //
155 // The purpose of this group of functions is to provide a factory
156 // to create the registered plugin with the type system
157 // without exposing the internal class _PluginEntry
159 typedef std::function<HfPluginBase *()> _FactoryFn;
160
161 template<typename T>
162 static HfPluginBase *_CreatePlugin();
163
164 HF_API
165 static void _SetFactory(TfType &type, _FactoryFn &func);
166
167 TfType _pluginBaseType;
168
169 //
170 // Plugins are stored in a ordered list (as a vector). The token
171 // map converts from plugin id into an index in the list.
172 //
173 _PluginEntryVector _pluginEntries;
174 _TokenMap _pluginIndex;
175
176 // Plugin discovery is deferred until first use.
177 bool _pluginCachePopulated;
178
179 // Use the Plug system to discover plugins from the meta data.
180 void _DiscoverPlugins();
181
182 // Find the plugin entry for the given plugin object.
183 Hf_PluginEntry *_GetEntryForPlugin(HfPluginBase *plugin);
184
188 HfPluginRegistry() = delete;
189 HfPluginRegistry(const HfPluginRegistry &) = delete;
190 HfPluginRegistry &operator=(const HfPluginRegistry &) = delete;
191};
192
193template<typename T>
195HfPluginRegistry::_CreatePlugin()
196{
197 HF_MALLOC_TAG_FUNCTION();
198 return new T;
199}
200
201
202template<typename T, typename PluginBaseType, typename... Bases>
203void
205{
206 TfType type = TfType::Define<T,
207 TfType::Bases<PluginBaseType, Bases...> >();
208
209 _FactoryFn func = &_CreatePlugin<T>;
210 _SetFactory(type, func);
211}
212
213
214
215PXR_NAMESPACE_CLOSE_SCOPE
216
217#endif //PXR_IMAGING_HF_PLUGIN_REGISTRY_H
218
Base class for all hydra plugin classes.
Definition: pluginBase.h:40
Base class for registering Hydra plugins using the plug mechanism.
HF_API HfPluginRegistry(const TfType &pluginBaseType)
Constructs a Plugin Registry.
HF_API void ReleasePlugin(HfPluginBase *plugin)
Decrement the reference count on the plugin.
static void Define()
Entry point for registering a types implementation.
HF_API void AddPluginReference(HfPluginBase *plugin)
Increment the reference count on an existing plugin.
HF_API bool IsRegisteredPlugin(const TfToken &pluginId)
Returns true if a plugin has been registered for the given id.
HF_API void GetPluginDescs(HfPluginDescVector *plugins)
Returns an ordered list of all registered plugins.
HF_API bool GetPluginDesc(const TfToken &pluginId, HfPluginDesc *desc)
Returns the description for the given plugin id.
virtual HF_API void _CollectAdditionalMetadata(const PlugRegistry &plugRegistry, const TfType &pluginType)
Gives subclasses an opportunity to inspect plugInfo-based metadata at the time of discovery.
HF_API HfPluginBase * GetPlugin(const TfToken &pluginId)
Returns the plugin from the given pluginId.
Defines an interface for registering plugins.
Definition: registry.h:336
Token for efficient comparison, assignment, and hashing of known strings.
Definition: token.h:88
TfType represents a dynamic runtime type.
Definition: type.h:65
static TfType const & Define()
Define a TfType with the given C++ type T and C++ base types B.
A type-list of C++ base types.
Definition: type.h:100
Common structure used to report registered plugins in one of the plugin registries.
Definition: pluginDesc.h:47