24 #ifndef PXR_USD_USD_SCHEMA_REGISTRY_H 25 #define PXR_USD_USD_SCHEMA_REGISTRY_H 28 #include "pxr/usd/usd/api.h" 37 #include <unordered_map> 39 PXR_NAMESPACE_OPEN_SCOPE
79 template <
class SchemaType>
280 std::map<TfToken, TfTokenVector> *autoApplyAPISchemas);
301 const std::string &namespacePrefix,
302 const std::string &baseName);
320 const std::string &nameTemplate,
321 const std::string &instanceName);
334 const std::string &nameTemplate);
346 const std::string &nameTemplate);
352 const TfToken &typeName)
const {
353 const auto it = _concreteTypedPrimDefinitions.find(typeName);
354 return it != _concreteTypedPrimDefinitions.end() ? it->second.get() :
nullptr;
361 const TfToken &typeName)
const {
366 const auto it = _appliedAPIPrimDefinitions.find(typeName);
367 if (it != _appliedAPIPrimDefinitions.end()) {
368 return it->second.get();
370 const auto multiIt = _multiApplyAPIPrimDefinitions.find(typeName);
371 return multiIt != _multiApplyAPIPrimDefinitions.end() ?
372 multiIt->second :
nullptr;
377 return _emptyPrimDefinition;
385 std::unique_ptr<UsdPrimDefinition>
401 return _fallbackPrimTypes;
417 void _ComposeAPISchemasIntoPrimDefinition(
424 class _SchemaDefInitHelper;
426 using _TypeNameToPrimDefinitionMap = std::unordered_map<
431 _TypeNameToPrimDefinitionMap _concreteTypedPrimDefinitions;
432 _TypeNameToPrimDefinitionMap _appliedAPIPrimDefinitions;
439 std::unordered_map<TfToken, const UsdPrimDefinition *, TfToken::HashFunctor>
440 _multiApplyAPIPrimDefinitions;
454 void Usd_GetAPISchemaPluginApplyToInfoForType(
455 const TfType &apiSchemaType,
457 std::map<TfToken, TfTokenVector> *autoApplyAPISchemasMap,
458 TfHashMap<TfToken, TfTokenVector, TfHash> *canOnlyApplyAPISchemasMap,
459 TfHashMap<TfToken, TfToken::Set, TfHash> *allowedInstanceNamesMap);
461 PXR_NAMESPACE_CLOSE_SCOPE
463 #endif //PXR_USD_USD_SCHEMA_REGISTRY_H static USD_API bool IsMultipleApplyAPISchema(const TfType &apiSchemaType)
Returns true if apiSchemaType is a multiple-apply API schema type.
static USD_API bool IsAbstract(const TfType &primType)
Returns true if the prim type primType is an abstract schema type and, unlike a concrete type,...
Manage a single instance of an object.
static USD_API const TfTokenVector & GetAPISchemaCanOnlyApplyToTypeNames(const TfToken &apiSchemaName, const TfToken &instanceName=TfToken())
Returns a list of prim type names that the given apiSchemaName can only be applied to.
Manage a single instance of an object (see.
static USD_API TfToken GetAPISchemaTypeName(const TfType &schemaType)
Return the type name in the USD schema for API schema types only from the given registered schemaType...
A map with string keys and VtValue values.
USD_API std::unique_ptr< UsdPrimDefinition > BuildComposedPrimDefinition(const TfToken &primType, const TfTokenVector &appliedAPISchemas) const
Composes and returns a new UsdPrimDefinition from the given primType and list of appliedSchemas.
Functor to use for hash maps from tokens to other things.
const UsdPrimDefinition * GetEmptyPrimDefinition() const
Returns the empty prim definition.
static USD_API bool IsMultipleApplyNameTemplate(const std::string &nameTemplate)
Returns true if nameTemplate is a multiple apply schema name template.
UsdSchemaKind
An enum representing which kind of schema a given schema class belongs to.
static USD_API bool IsAppliedAPISchema(const TfType &apiSchemaType)
Returns true if apiSchemaType is an applied API schema type.
static USD_API bool IsAllowedAPISchemaInstanceName(const TfToken &apiSchemaName, const TfToken &instanceName)
Returns true if the given instanceName is an allowed instance name for the multiple apply API schema ...
Token for efficient comparison, assignment, and hashing of known strings.
A subclass of SdfPropertySpec that holds typed data.
static USD_API std::pair< TfToken, TfToken > GetTypeNameAndInstance(const TfToken &apiSchemaName)
Returns the schema type name and the instance name parsed from the given apiSchemaName.
const VtDictionary & GetFallbackPrimTypes() const
Returns a dictionary mapping concrete schema prim type names to a VtTokenArray of fallback prim type ...
static USD_API UsdSchemaKind GetSchemaKind(const TfType &schemaType)
Returns the kind of the schema the given schemaType represents.
static USD_API void CollectAddtionalAutoApplyAPISchemasFromPlugins(std::map< TfToken, TfTokenVector > *autoApplyAPISchemas)
Collects all the additional auto apply schemas that can be defined in a plugin through "AutoApplyAPIS...
std::vector< TfToken > TfTokenVector
Convenience types.
static T & GetInstance()
Return a reference to an object of type T, creating it if necessary.
static USD_API TfToken GetMultipleApplyNameTemplateBaseName(const std::string &nameTemplate)
Returns the base name for the multiple apply schema name template nameTemplate.
static USD_API TfToken MakeMultipleApplyNameTemplate(const std::string &namespacePrefix, const std::string &baseName)
Creates a name template that can represent a property or API schema that belongs to a multiple apply ...
static USD_API TfType GetTypeFromSchemaTypeName(const TfToken &typeName)
Return the TfType of the schema corresponding to the given prim or API schema name typeName.
static USD_API bool IsDisallowedField(const TfToken &fieldName)
Returns true if the field fieldName cannot have fallback values specified in schemas.
A property that contains a reference to one or more SdfPrimSpec instances.
static USD_API bool IsConcrete(const TfType &primType)
Returns true if the prim type primType is instantiable in scene description.
static USD_API TfType GetConcreteTypeFromSchemaTypeName(const TfToken &typeName)
Return the TfType of the schema corresponding to the given concrete prim type name typeName.
Class representing the builtin definition of a prim given the schemas registered in the schema regist...
const UsdPrimDefinition * FindConcretePrimDefinition(const TfToken &typeName) const
Finds the prim definition for the given typeName token if typeName is a registered concrete typed sch...
static USD_API TfType GetAPITypeFromSchemaTypeName(const TfToken &typeName)
Return the TfType of the schema corresponding to the given API schema type name typeName.
static TfToken GetSchemaTypeName()
Return the type name in the USD schema for prims or API schemas of the given registered SchemaType.
static USD_API bool IsTyped(const TfType &primType)
Returns true if the prim type primType inherits from UsdTyped.
static USD_API TfType GetTypeFromName(const TfToken &typeName)
Finds the TfType of a schema with typeName.
TfType represents a dynamic runtime type.
static USD_API const std::map< TfToken, TfTokenVector > & GetAutoApplyAPISchemas()
Returns a map of the names of all registered auto apply API schemas to the list of type names each is...
Singleton registry that provides access to schema type information and the prim definitions for regis...
const UsdPrimDefinition * FindAppliedAPIPrimDefinition(const TfToken &typeName) const
Finds the prim definition for the given typeName token if typeName is a registered applied API schema...
static USD_API TfToken GetConcreteSchemaTypeName(const TfType &schemaType)
Return the type name in the USD schema for concrete prim types only from the given registered schemaT...
Enable a concrete base class for use with TfWeakPtr.
static USD_API TfToken MakeMultipleApplyNameInstance(const std::string &nameTemplate, const std::string &instanceName)
Returns an instance of a multiple apply schema name from the given nameTemplate for the given instanc...