HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
adapterRegistry.h
Go to the documentation of this file.
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_USD_IMAGING_USD_IMAGING_ADAPTER_REGISTRY_H
25 #define PXR_USD_IMAGING_USD_IMAGING_ADAPTER_REGISTRY_H
26 
27 /// \file usdImaging/adapterRegistry.h
28 
29 #include "pxr/pxr.h"
31 #include "pxr/base/tf/singleton.h"
33 #include "pxr/base/tf/token.h"
34 #include "pxr/base/tf/type.h"
35 
36 #include <unordered_map>
37 
39 
40 
42 using UsdImagingPrimAdapterSharedPtr = std::shared_ptr<UsdImagingPrimAdapter>;
43 
46  std::shared_ptr<UsdImagingAPISchemaAdapter>;
47 
48 #define USD_IMAGING_ADAPTER_KEY_TOKENS \
49  ((instanceAdapterKey, "__instanceAdapter")) \
50  ((drawModeAdapterKey, "__drawModeAdapter")) \
51 
52 TF_DECLARE_PUBLIC_TOKENS(UsdImagingAdapterKeyTokens,
55 
56 /// \class UsdImagingAdapterRegistry
57 ///
58 /// Registry of PrimAdapter plug-ins. Note: this is a registry of adapter
59 /// factories, and not adapter instances; we expect to store adapter instances
60 /// (created via ConstructAdapter) with per-stage data.
61 ///
62 class UsdImagingAdapterRegistry : public TfSingleton<UsdImagingAdapterRegistry>
63 {
66 
67  typedef std::unordered_map<TfToken,TfType,TfToken::HashFunctor> _TypeMap;
68  _TypeMap _typeMap;
69  TfTokenVector _adapterKeys;
70  _TypeMap _apiSchemaTypeMap;
71  TfTokenVector _apiSchemaAdapterKeys;
72 
73  typedef std::vector<TfType> _TypeVector;
74  _TypeVector _keylessApiSchemaAdapterTypes;
75 
76  template <typename T, typename factoryT>
77  std::shared_ptr<T> _ConstructAdapter(
78  TfToken const& adapterKey, const _TypeMap &tm);
79 
80  template <typename T, typename factoryT>
81  std::shared_ptr<T> _ConstructAdapter(
82  TfToken const& adapterKey, const TfType &adapterType);
83 
84 public:
85 
86  /// Returns true if external plugins are enabled.
87  /// Internal plugins have isInternal=1 set in their metadata. This flag is
88  /// only intended to be set for critical imaging plugins (mesh, cube,
89  /// sphere, curve, etc). This allows users to disable plugins that are
90  /// crashing or executing slowly.
91  ///
92  /// Driven by by the USDIMAGING_ENABLE_PLUGINS environment variable.
94  static bool AreExternalPluginsEnabled();
95 
99  }
100 
101  /// Returns true if an adapter has been registered to handle the given
102  /// \p adapterKey.
104  bool HasAdapter(TfToken const& adapterKey);
105 
106  /// Returns a new instance of the UsdImagingPrimAdapter that has been
107  /// registered to handle the given \p adapterKey. This key is either
108  /// a prim typename or a key specified in UsdImagingAdapterKeyTokens.
109  /// Returns NULL if no adapter was registered for this key.
112 
113  /// Returns the set of adapter keys this class responds to; i.e. the set of
114  /// usd prim types for which we've registered a prim adapter.
116  const TfTokenVector& GetAdapterKeys();
117 
118  /// Returns true if an api schema adapter has been registered to handle
119  /// the given \p adapterKey.
121  bool HasAPISchemaAdapter(TfToken const& adapterKey);
122 
123  /// Returns a new instance of the UsdImagingAPISchemaAdapter that has been
124  /// registered to handle the given \p adapterKey.
125  /// Returns NULL if no adapter was registered for this key.
128  TfToken const& adapterKey);
129 
130  /// Returns the set of api schema adapter keys this class responds to;
131  /// i.e. the set of usd api schema types for which we've registered an
132  /// adapter.
135 
136  using ApiSchemaAdapters = std::vector<UsdImagingAPISchemaAdapterSharedPtr>;
137 
138  /// Constructs instances of "keyless" api schema adapters which are
139  /// intended to run for every prim.
142 
143 };
144 
146 
148 
149 #endif //PXR_USD_IMAGING_USD_IMAGING_ADAPTER_REGISTRY_H
static T & GetInstance()
Definition: singleton.h:137
#define USDIMAGING_API
Definition: api.h:40
USDIMAGING_API bool HasAdapter(TfToken const &adapterKey)
USDIMAGING_API UsdImagingAPISchemaAdapterSharedPtr ConstructAPISchemaAdapter(TfToken const &adapterKey)
#define USD_IMAGING_ADAPTER_KEY_TOKENS
USDIMAGING_API ApiSchemaAdapters ConstructKeylessAPISchemaAdapters()
USDIMAGING_API_TEMPLATE_CLASS(TfSingleton< UsdImagingAdapterRegistry >)
std::shared_ptr< UsdImagingAPISchemaAdapter > UsdImagingAPISchemaAdapterSharedPtr
Definition: token.h:87
static USDIMAGING_API bool AreExternalPluginsEnabled()
USDIMAGING_API UsdImagingPrimAdapterSharedPtr ConstructAdapter(TfToken const &adapterKey)
std::vector< TfToken > TfTokenVector
Convenience types.
Definition: token.h:442
USDIMAGING_API const TfTokenVector & GetAPISchemaAdapterKeys()
PXR_NAMESPACE_CLOSE_SCOPE PXR_NAMESPACE_OPEN_SCOPE
Definition: path.h:1441
USDIMAGING_API const TfTokenVector & GetAdapterKeys()
#define PXR_NAMESPACE_CLOSE_SCOPE
Definition: pxr.h:91
std::shared_ptr< UsdImagingPrimAdapter > UsdImagingPrimAdapterSharedPtr
Definition: type.h:64
std::vector< UsdImagingAPISchemaAdapterSharedPtr > ApiSchemaAdapters
USDIMAGING_API bool HasAPISchemaAdapter(TfToken const &adapterKey)
static USDIMAGING_API UsdImagingAdapterRegistry & GetInstance()
TF_DECLARE_PUBLIC_TOKENS(UsdImagingAdapterKeyTokens, USDIMAGING_API, USD_IMAGING_ADAPTER_KEY_TOKENS)