24 #ifndef PXR_USD_PCP_CACHE_H 25 #define PXR_USD_PCP_CACHE_H 28 #include "pxr/usd/pcp/api.h" 29 #include "pxr/usd/pcp/dependency.h" 30 #include "pxr/usd/pcp/errors.h" 31 #include "pxr/usd/pcp/mapFunction.h" 32 #include "pxr/usd/pcp/primIndex.h" 33 #include "pxr/usd/pcp/propertyIndex.h" 35 #include "pxr/usd/sdf/path.h" 36 #include "pxr/usd/sdf/pathTable.h" 38 #include "pxr/usd/ar/ar.h" 41 #include "pxr/base/tf/functionRef.h" 42 #include "pxr/base/tf/hashset.h" 46 #include <unordered_set> 49 PXR_NAMESPACE_OPEN_SCOPE
54 class Pcp_Dependencies;
110 const std::string& fileFormatTarget = std::string(),
158 using PayloadSet = std::unordered_set<SdfPath, SdfPath::Hash>;
160 PayloadSet const &GetIncludedPayloads()
const;
175 const SdfPathSet & pathsToExclude,
208 const std::vector<std::string>& layersToUnmute,
210 std::vector<std::string>* newLayersMuted =
nullptr,
211 std::vector<std::string>* newLayersUnmuted =
226 bool IsLayerMuted(
const std::string& layerIdentifier)
const;
237 const std::string& layerIdentifier,
238 std::string* canonicalMutedLayerIdentifier
259 PcpErrorVector *allErrors);
301 template <
class ChildrenPredicate,
class PayloadPredicate>
303 PcpErrorVector *allErrors,
304 const ChildrenPredicate &childrenPred,
305 const PayloadPredicate &payloadPred) {
307 childrenPred, payloadPred,
308 "Pcp",
"ComputePrimIndexesInParallel");
314 template <
class ChildrenPredicate,
class PayloadPredicate>
316 PcpErrorVector *allErrors,
317 const ChildrenPredicate &childrenPred,
318 const PayloadPredicate &payloadPred,
319 const char *mallocTag1,
320 const char *mallocTag2) {
322 childrenPred, payloadPred,
323 mallocTag1, mallocTag2);
328 template <
class ChildrenPredicate,
class PayloadPredicate>
330 PcpErrorVector *allErrors,
331 const ChildrenPredicate &childrenPred,
332 const PayloadPredicate &payloadPred) {
333 _UntypedIndexingChildrenPredicate cp(&childrenPred);
334 _UntypedIndexingPayloadPredicate pp(&payloadPred);
335 _ComputePrimIndexesInParallel(paths, allErrors, cp, pp,
336 "Pcp",
"ComputePrimIndexesInParallel");
342 template <
class ChildrenPredicate,
class PayloadPredicate>
344 PcpErrorVector *allErrors,
345 const ChildrenPredicate &childrenPred,
346 const PayloadPredicate &payloadPred,
347 const char *mallocTag1,
348 const char *mallocTag2) {
349 _UntypedIndexingChildrenPredicate cp(&childrenPred);
350 _UntypedIndexingPayloadPredicate pp(&payloadPred);
351 _ComputePrimIndexesInParallel(paths, allErrors, cp, pp,
352 mallocTag1, mallocTag2);
363 template <
class Callback>
368 _ForEachPrimIndex(fn);
396 SdfPathVector *paths,
398 const SdfSpecHandle &stopProperty,
399 bool includeStopProperty,
400 SdfPathVector *deletedPaths,
401 PcpErrorVector *allErrors);
415 SdfPathVector *paths,
417 const SdfSpecHandle &stopProperty,
418 bool includeStopProperty,
419 SdfPathVector *deletedPaths,
420 PcpErrorVector *allErrors);
444 const PcpLayerStackPtrVector&
450 template <
class Callback>
455 _ForEachLayerStack(fn);
475 PcpDependencyFlags depMask,
478 bool filterForExistingCachesOnly)
const;
493 PcpDependencyFlags depMask,
496 bool filterForExistingCachesOnly)
const;
508 const SdfLayerHandle& layer,
509 SdfPath* allowedPathInLayer)
const;
526 std::map<SdfPath, std::vector<std::string>, SdfPath::FastLessThan>
554 const SdfPath &primIndexPath)
const;
619 friend class Pcp_Dependencies;
620 friend class Pcp_Statistics;
622 struct _ParallelIndexer;
637 struct _UntypedIndexingChildrenPredicate {
638 _UntypedIndexingChildrenPredicate() : pred(nullptr), invoke(nullptr) {}
639 template <
class Pred>
640 explicit _UntypedIndexingChildrenPredicate(
const Pred *pred)
641 : pred(pred), invoke(_Invoke<Pred>) {}
645 return invoke(pred, index, childNamesToCompose);
648 template <
class Pred>
649 static bool _Invoke(
const void *pred,
const PcpPrimIndex &index,
651 return (*static_cast<const Pred *>(pred))(index, namesToCompose);
659 struct _UntypedIndexingPayloadPredicate {
660 template <
class Pred>
661 explicit _UntypedIndexingPayloadPredicate(
const Pred *pred)
662 : pred(pred), invoke(_Invoke<Pred>) {}
664 inline bool operator()(
const SdfPath &path)
const {
665 return invoke(pred, path);
668 template <
class Pred>
669 static bool _Invoke(
const void *pred,
const SdfPath &path) {
670 return (*static_cast<const Pred *>(pred))(path);
673 bool (*invoke)(
const void *,
const SdfPath &);
678 _ComputePrimIndexWithCompatibleInputs(
680 PcpErrorVector *allErrors);
684 Pcp_ComputePrimIndexWithCompatibleInputs(
687 PcpErrorVector *allErrors);
691 void _ComputePrimIndexesInParallel(
692 const SdfPathVector &paths,
693 PcpErrorVector *allErrors,
694 _UntypedIndexingChildrenPredicate childrenPred,
695 _UntypedIndexingPayloadPredicate payloadPred,
696 const char *mallocTag1,
697 const char *mallocTag2);
700 void _RemovePrimAndPropertyCaches(
const SdfPath& root,
714 void _ForEachPrimIndex(
718 void _ForEachLayerStack(
719 const TfFunctionRef<
void(
const PcpLayerStackPtr&)>& fn)
const;
738 const std::string _fileFormatTarget;
743 PcpLayerStackRefPtr _layerStack;
752 typedef Pcp_LayerStackRegistryRefPtr _LayerStackCache;
757 _LayerStackCache _layerStackCache;
758 _PrimIndexCache _primIndexCache;
759 _PropertyIndexCache _propertyIndexCache;
760 std::unique_ptr<Pcp_Dependencies> _primDependencies;
763 std::unique_ptr<_ParallelIndexer> _parallelIndexer;
766 PXR_NAMESPACE_CLOSE_SCOPE
768 #endif // PXR_USD_PCP_CACHE_H void ComputePrimIndexesInParallel(const SdfPath &path, PcpErrorVector *allErrors, const ChildrenPredicate &childrenPred, const PayloadPredicate &payloadPred)
Compute PcpPrimIndexes in the subtree rooted at path in parallel, recursing to children based on the ...
PCP_API bool CanHaveOpinionForSite(const SdfPath &localPcpSitePath, const SdfLayerHandle &layer, SdfPath *allowedPathInLayer) const
Returns true if an opinion for the site at localPcpSitePath in the cache's layer stack can be provide...
PCP_API bool IsInvalidAssetPath(const std::string &resolvedAssetPath) const
Returns true if resolvedAssetPath was used by a prim (e.g.
PcpPrimIndex is an index of the all sites of scene description that contribute opinions to a specific...
PCP_API const PcpPrimIndex & ComputePrimIndex(const SdfPath &primPath, PcpErrorVector *allErrors)
Compute and return a reference to the cached result for the prim index for the given path.
Standard pointer typedefs.
PCP_API PcpPrimIndexInputs GetPrimIndexInputs()
Returns parameter object containing all inputs for the prim index computation used by this cache.
Represents a stack of layers that contribute opinions to composition.
void ForEachLayerStack(const Callback &callback) const
Run the given callbcack on every layer stack used by prim indexes in the cache.
void ComputePrimIndexesInParallel(const SdfPathVector &paths, PcpErrorVector *allErrors, const ChildrenPredicate &childrenPred, const PayloadPredicate &payloadPred, const char *mallocTag1, const char *mallocTag2)
This is an overloaded member function, provided for convenience. It differs from the above function o...
PCP_API const PcpDynamicFileFormatDependencyData & GetDynamicFileFormatArgumentDependencyData(const SdfPath &primIndexPath) const
Returns the dynamic file format dependency data object for the prim index with the given primIndexPat...
PcpNode represents a node in an expression tree for compositing scene description.
PCP_API void Apply(const PcpCacheChanges &changes, PcpLifeboat *lifeboat)
Apply the changes in changes.
PcpCache is the context required to make requests of the Pcp composition algorithm and cache the resu...
Base class for all Sdf spec classes.
PCP_API void RequestLayerMuting(const std::vector< std::string > &layersToMute, const std::vector< std::string > &layersToUnmute, PcpChanges *changes=nullptr, std::vector< std::string > *newLayersMuted=nullptr, std::vector< std::string > *newLayersUnmuted=nullptr)
Request layers to be muted or unmuted in this cache.
PCP_API bool IsLayerMuted(const std::string &layerIdentifier) const
Returns true if the layer specified by layerIdentifier is muted in this cache, false otherwise.
PCP_API PcpLayerStackPtr GetLayerStack() const
Get the layer stack for GetLayerStackIdentifier().
#define TF_DECLARE_WEAK_AND_REF_PTRS(type)
Define standard weak, ref, and vector pointer types.
PCP_API bool HasAnyDynamicFileFormatArgumentDependencies() const
Returns true if any prim index in this cache has a dependency on a dynamic file format argument field...
PCP_API SdfLayerHandleSet GetUsedRootLayers() const
Returns set of all root layers used by this cache.
This class provides a non-owning reference to a type-erased callable object with a specified signatur...
void ForEachPrimIndex(const Callback &callback) const
Run the given callback on every prim index in the cache.
PCP_API std::vector< std::string > GetInvalidSublayerIdentifiers() const
Returns a vector of sublayer asset paths used in the layer stack that didn't resolve to valid assets.
PCP_API PcpDependencyVector FindSiteDependencies(const PcpLayerStackPtr &siteLayerStack, const SdfPath &sitePath, PcpDependencyFlags depMask, bool recurseOnSite, bool recurseOnIndex, bool filterForExistingCachesOnly) const
Returns dependencies on the given site of scene description, as discovered by the cached index comput...
PCP_API const PcpPropertyIndex & ComputePropertyIndex(const SdfPath &propPath, PcpErrorVector *allErrors)
Compute and return a reference to the cached result for the property index for the given path.
void ComputePrimIndexesInParallel(const SdfPathVector &paths, PcpErrorVector *allErrors, const ChildrenPredicate &childrenPred, const PayloadPredicate &payloadPred)
Vectorized form of ComputePrimIndexesInParallel().
PCP_API const PcpPrimIndex * FindPrimIndex(const SdfPath &primPath) const
Returns a pointer to the cached computed prim index for the given path, or NULL if it has not been co...
Token for efficient comparison, assignment, and hashing of known strings.
PCP_API void ComputeAttributeConnectionPaths(const SdfPath &attributePath, SdfPathVector *paths, bool localOnly, const SdfSpecHandle &stopProperty, bool includeStopProperty, SdfPathVector *deletedPaths, PcpErrorVector *allErrors)
Compute the attribute connection paths for the attribute at attributePath into paths.
PCP_API SdfLayerHandleSet GetUsedLayers() const
Returns set of all layers used by this cache.
PCP_API PcpLayerStackPtr FindLayerStack(const PcpLayerStackIdentifier &identifier) const
Returns the layer stack for identifier if it has been computed and cached, otherwise returns NULL.
std::unordered_set< SdfPath, SdfPath::Hash > PayloadSet
Returns the payloads requested for inclusion.
PCP_API void ComputeRelationshipTargetPaths(const SdfPath &relationshipPath, SdfPathVector *paths, bool localOnly, const SdfSpecHandle &stopProperty, bool includeStopProperty, SdfPathVector *deletedPaths, PcpErrorVector *allErrors)
Compute the relationship target paths for the relationship at relationshipPath into paths.
PCP_API bool IsInvalidSublayerIdentifier(const std::string &identifier) const
Returns true if identifier was used as a sublayer path in a layer stack but did not identify a valid ...
std::vector< TfToken > TfTokenVector
Convenience types.
PCP_API bool UsesLayerStack(const PcpLayerStackPtr &layerStack) const
Return true if layerStack is used by this cache in its composition, false otherwise.
A function that maps values from one namespace (and time domain) to another.
PCP_API const std::string & GetFileFormatTarget() const
Returns the file format target this cache is configured for.
A path value used to locate objects in layers or scenegraphs.
PCP_API const PcpLayerStackPtrVector & FindAllLayerStacksUsingLayer(const SdfLayerHandle &layer) const
Returns every computed & cached layer stack that includes layer.
PCP_API bool IsPossibleDynamicFileFormatArgumentField(const TfToken &field) const
Returns true if the given field is the name of a field that was composed while generating dynamic fil...
PCP_API std::map< SdfPath, std::vector< std::string >, SdfPath::FastLessThan > GetInvalidAssetPaths() const
Returns a map of prim paths to asset paths used by that prim (e.g.
Types of changes per cache.
PCP_API void ReloadReferences(PcpChanges *changes, const SdfPath &primPath)
Reload every layer used by the prim at primPath that's across a reference or payload.
PCP_API bool IsPayloadIncluded(const SdfPath &path) const
Return true if the payload is included for the given path.
PCP_API size_t GetUsedLayersRevision() const
Return a number that can be used to determine whether or not the set of layers used by this cache may...
PCP_API const PcpPropertyIndex * FindPropertyIndex(const SdfPath &propPath) const
Returns a pointer to the cached computed property index for the given path, or NULL if it has not bee...
PCP_API PcpVariantFallbackMap GetVariantFallbacks() const
Get the list of fallbacks to attempt to use when evaluating variant sets that lack an authored select...
PCP_API void PrintStatistics() const
Prints various statistics about the data stored in this cache.
PCP_API const PcpLayerStackIdentifier & GetLayerStackIdentifier() const
Get the identifier of the layerStack used for composition.
PCP_API PcpLayerStackRefPtr ComputeLayerStack(const PcpLayerStackIdentifier &identifier, PcpErrorVector *allErrors)
Returns the layer stack for identifier if it exists, otherwise creates a new layer stack for identifi...
PCP_API void Reload(PcpChanges *changes)
Reload the layers of the layer stack, except session layers and sublayers of session layers.
PCP_API void RequestPayloads(const SdfPathSet &pathsToInclude, const SdfPathSet &pathsToExclude, PcpChanges *changes=NULL)
Request payloads to be included or excluded from composition.
PcpPropertyIndex is an index of all sites in scene description that contribute opinions to a specific...
void ComputePrimIndexesInParallel(const SdfPath &path, PcpErrorVector *allErrors, const ChildrenPredicate &childrenPred, const PayloadPredicate &payloadPred, const char *mallocTag1, const char *mallocTag2)
This is an overloaded member function, provided for convenience. It differs from the above function o...
PCP_API const std::vector< std::string > & GetMutedLayers() const
Returns the list of canonical identifiers for muted layers in this cache.
PCP_API void SetVariantFallbacks(const PcpVariantFallbackMap &map, PcpChanges *changes=NULL)
Set the list of fallbacks to attempt to use when evaluating variant sets that lack an authored select...
Structure used to temporarily retain layers and layerStacks within a code block.
PCP_API bool IsUsd() const
Return true if the cache is configured in Usd mode.
std::map< std::string, std::vector< std::string > > PcpVariantFallbackMap
typedef std::map<std::string, std::vector<std::string>> PcpVariantFallbackMap
Arguments used to identify a layer stack.