HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
collectionCache.h
Go to the documentation of this file.
1 //
2 // Copyright 2018 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_COLLECTION_CACHE_H
25 #define PXR_USD_IMAGING_USD_IMAGING_COLLECTION_CACHE_H
26 
27 /// \file usdImaging/collectionCache.h
28 
29 #include "pxr/pxr.h"
32 
33 #include <hboost/noncopyable.hpp>
34 #include <tbb/concurrent_unordered_map.h>
35 #include <tbb/concurrent_queue.h>
36 #include <mutex>
37 #include <unordered_map>
38 
40 
41 /// \class UsdImaging_CollectionCache
42 ///
43 /// UsdImaging_CollectionCache provides a cache of Usd collections
44 /// discovered in the scene. It associates the collection paths
45 /// (UsdCollectionAPI::GetCollectionPath) with the computed
46 /// membership query (UsdCollectionAPI::ComputeMembershipQuery).
47 ///
48 /// For efficiency, it groups collections into equivalence
49 /// classes based on the computed query. Collections that yield
50 /// equivalent queries are merged. Each unique query is assigned
51 /// an identifier token.
52 ///
53 /// This cache is used to track the collections used for linking
54 /// UsdLux lights/shadows/filters to geometry.
55 ///
56 /// As an optimization, the query that includes everything is
57 /// treated as a special case and given the empty id, TfToken().
58 ///
59 class UsdImaging_CollectionCache : hboost::noncopyable {
60 public:
61  /// Query is the MembershipQuery computed from a collection's state.
63 
64  /// Computes the membership query from the current state of the
65  /// given collection, and establishes a cache entry. If a
66  /// prior entry existed for the collection at this path,
67  /// it is removed first.
68  /// Returns true for newly created collection or
69  /// if the hash of the collection is different from the previous collection
70  bool
71  UpdateCollection(UsdCollectionAPI const& collection);
72 
73  /// Returns the hash of the removed collection, or 0 if no collection existed
74  size_t
75  RemoveCollection(UsdStageWeakPtr const& stage, SdfPath const& path);
76 
77  /// Return the cached entry for the given collection.
78  TfToken
79  GetIdForCollection(UsdCollectionAPI const& collection);
80 
81  /// Return a list of identifiers of all collections that contain
82  // the given path.
85 
86  /// Returns a set of dirty paths
87  /// Should only be used if AreAllPathsDirty returned false
88  SdfPathSet const&
89  GetDirtyPaths() const;
90 
91  /// Clears the internal dirty flags
92  void
94 
95 private:
96  // The cache boils down to tracking the correspondence of
97  // collection paths, their computed queries, and the id
98  // assigned to each unique query:
99  //
100  // CollectionPath <=> MembershipQuery <=> AssignedId
101  //
102  // In this scheme, the assigned id provides a compact but
103  // potentially human-meaningful reference to the query,
104  // which we can pass to the renderer.
105  //
106  std::unordered_map<Query, TfToken, Query::Hash> _idForQuery;
107  std::unordered_map<TfToken, Query, TfToken::HashFunctor> _queryForId;
108  std::unordered_map<SdfPath, TfToken, SdfPath::Hash> _idForPath;
109  std::unordered_map<Query, SdfPathSet, Query::Hash> _pathsForQuery;
110 
111  void
112  _MarkCollectionContentDirty(
113  UsdStageWeakPtr const& stage,
115 
116  SdfPathSet _dirtyPaths;
117 
118  std::mutex _mutex;
119 };
120 
121 
123 
124 #endif // PXR_USD_IMAGING_USD_IMAGING_COLLECTION_CACHE_H
GLenum query
Definition: glad.h:2772
GLsizei const GLchar *const * path
Definition: glcorearb.h:3341
void ClearDirtyPaths()
Clears the internal dirty flags.
Represents a flattened view of a collection. For more information about collections, please see UsdCollectionAPI as a way to encode and retrieve a collection from scene description. A UsdCollectionMembershipQuery object can be used to answer queries about membership of paths in the collection efficiently.
UsdStagePtr UsdStageWeakPtr
Definition: common.h:55
bool UpdateCollection(UsdCollectionAPI const &collection)
Definition: token.h:87
SdfPathSet const & GetDirtyPaths() const
VtArray< TfToken > ComputeCollectionsContainingPath(SdfPath const &path) const
Return a list of identifiers of all collections that contain.
Definition: path.h:291
size_t RemoveCollection(UsdStageWeakPtr const &stage, SdfPath const &path)
Returns the hash of the removed collection, or 0 if no collection existed.
std::set< class SdfPath > SdfPathSet
A set of SdfPaths.
Definition: path.h:210
TfToken GetIdForCollection(UsdCollectionAPI const &collection)
Return the cached entry for the given collection.
PXR_NAMESPACE_CLOSE_SCOPE PXR_NAMESPACE_OPEN_SCOPE
Definition: path.h:1441
UsdCollectionAPI::MembershipQuery Query
Query is the MembershipQuery computed from a collection's state.
#define PXR_NAMESPACE_CLOSE_SCOPE
Definition: pxr.h:91