Loading...
Searching...
No Matches
apiSchemaAdapter.h
Go to the documentation of this file.
1//
2// Copyright 2022 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_API_SCHEMA_ADAPTER_H
25#define PXR_USD_IMAGING_USD_IMAGING_API_SCHEMA_ADAPTER_H
26
28
29#include "pxr/pxr.h"
30#include "pxr/usdImaging/usdImaging/api.h"
31#include "pxr/usdImaging/usdImaging/version.h"
32#include "pxr/usdImaging/usdImaging/types.h"
33
34#include "pxr/usd/usd/prim.h"
35
36#include "pxr/imaging/hd/sceneIndex.h"
37
38#include "pxr/base/tf/type.h"
39
40#include <memory>
41
42
43PXR_NAMESPACE_OPEN_SCOPE
44
46
47using UsdImagingAPISchemaAdapterSharedPtr =
48 std::shared_ptr<class UsdImagingAPISchemaAdapter>;
49
57 : public std::enable_shared_from_this<UsdImagingAPISchemaAdapter>
58{
59public:
60
61 USDIMAGING_API
63
71 USDIMAGING_API
73 UsdPrim const& prim,
74 TfToken const& appliedInstanceName);
75
82 USDIMAGING_API
84 UsdPrim const& prim,
85 TfToken const& subprim,
86 TfToken const& appliedInstanceName);
87
95 USDIMAGING_API
96 virtual HdContainerDataSourceHandle GetImagingSubprimData(
97 UsdPrim const& prim,
98 TfToken const& subprim,
99 TfToken const& appliedInstanceName,
100 const UsdImagingDataSourceStageGlobals &stageGlobals);
101
105 USDIMAGING_API
107 UsdPrim const& prim,
108 TfToken const& subprim,
109 TfToken const& appliedInstanceName,
110 TfTokenVector const& properties,
111 UsdImagingPropertyInvalidationType invalidationType);
112};
113
114
115class UsdImagingAPISchemaAdapterFactoryBase : public TfType::FactoryBase
116{
117public:
118 virtual UsdImagingAPISchemaAdapterSharedPtr New() const = 0;
119};
120
121template <class T>
122class UsdImagingAPISchemaAdapterFactory
123 : public UsdImagingAPISchemaAdapterFactoryBase
124{
125public:
126 virtual UsdImagingAPISchemaAdapterSharedPtr New() const
127 {
128 return std::make_shared<T>();
129 }
130};
131
132PXR_NAMESPACE_CLOSE_SCOPE
133
134#endif
Represents a set of data source locators closed under descendancy.
Token for efficient comparison, assignment, and hashing of known strings.
Definition: token.h:88
Base class of all factory types.
Definition: type.h:73
Base class for all API schema adapters.
virtual USDIMAGING_API HdContainerDataSourceHandle GetImagingSubprimData(UsdPrim const &prim, TfToken const &subprim, TfToken const &appliedInstanceName, const UsdImagingDataSourceStageGlobals &stageGlobals)
Returns an HdContainerDataSourceHandle representing the API schema's contributions to the primary pri...
virtual USDIMAGING_API TfTokenVector GetImagingSubprims(UsdPrim const &prim, TfToken const &appliedInstanceName)
Called to determine whether an API schema defines additional child hydra prims beyond the primary hyd...
virtual USDIMAGING_API TfToken GetImagingSubprimType(UsdPrim const &prim, TfToken const &subprim, TfToken const &appliedInstanceName)
Called to determine whether an API schema specifies the hydra type of a given prim previously defined...
virtual USDIMAGING_API HdDataSourceLocatorSet InvalidateImagingSubprim(UsdPrim const &prim, TfToken const &subprim, TfToken const &appliedInstanceName, TfTokenVector const &properties, UsdImagingPropertyInvalidationType invalidationType)
Given the names of USD properties which have changed, an adapter may provide a HdDataSourceLocatorSet...
This class is used as a context object with global stage information, that gets passed down to dataso...
UsdPrim is the sole persistent scenegraph object on a UsdStage, and is the embodiment of a "Prim" as ...
Definition: prim.h:134
std::vector< TfToken > TfTokenVector
Convenience types.
Definition: token.h:457