HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
notice.h
Go to the documentation of this file.
1 //
2 // Copyright 2021 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_AR_NOTICE_H
25 #define PXR_USD_AR_NOTICE_H
26 
27 #include "pxr/pxr.h"
28 
29 #include "pxr/usd/ar/api.h"
31 
32 #include "pxr/base/tf/notice.h"
33 
34 #include <functional>
35 
37 
38 template <class ContextObj>
40  const ContextObj& contextObj, const ArResolverContext& ctx)
41 {
42  const ContextObj* testObj = ctx.Get<ContextObj>();
43  return testObj && *testObj == contextObj;
44 }
45 
46 /// \class ArNotice
47 ///
48 class ArNotice
49 {
50 public:
51  /// \class ResolverNotice
52  /// Base class for all ArResolver-related notices.
54  : public TfNotice
55  {
56  public:
57  AR_API virtual ~ResolverNotice();
58  protected:
60  };
61 
62  /// \class ResolverChanged
63  /// Notice sent when asset paths may resolve to a different path than
64  /// before due to a change in the resolver.
66  : public ResolverNotice
67  {
68  public:
69  /// Create a notice indicating that the results of asset resolution
70  /// might have changed, regardless of what ArResolverContext object
71  /// is bound.
72  AR_API
74 
75  /// Create a notice using \p affectsFn to determine the
76  /// ArResolverContext objects that are affected by this resolver
77  /// change. If \p affectsFn returns true, it means the results of asset
78  /// resolution when the given ArResolverContext is bound might have
79  /// changed.
80  AR_API
82  const std::function<bool(const ArResolverContext&)>& affectsFn);
83 
84  /// Create a notice indicating that the results of asset resolution when
85  /// any ArResolverContext containing \p contextObj is bound might have
86  /// changed.
87  template <
88  class ContextObj,
90  = nullptr>
92  const ContextObj& contextObj)
93  // XXX: Ideally this would just use a lambda and forward it to
94  // the other c'tor. Both of those cause issues in MSVC 2015; the
95  // first causes an unspecified type error and the second causes
96  // odd linker errors.
97  : _affects(std::bind(&Ar_ContextIsHolding<ContextObj>, contextObj,
98  std::placeholders::_1))
99  {
100  }
101 
102  AR_API
103  virtual ~ResolverChanged();
104 
105  /// Returns true if the results of asset resolution when \p ctx
106  /// is bound may be affected by this resolver change.
107  AR_API
108  bool AffectsContext(const ArResolverContext& ctx) const;
109 
110  private:
111  std::function<bool(const ArResolverContext&)> _affects;
112  };
113 
114 };
115 
117 
118 #endif
const ContextObj * Get() const
GLsizei const GLfloat * value
Definition: glcorearb.h:824
virtual AR_API ~ResolverNotice()
ResolverChanged(const ContextObj &contextObj)
Definition: notice.h:91
#define AR_API
Definition: api.h:40
AR_API bool AffectsContext(const ArResolverContext &ctx) const
virtual AR_API ~ResolverChanged()
PXR_NAMESPACE_CLOSE_SCOPE PXR_NAMESPACE_OPEN_SCOPE
Definition: path.h:1441
#define PXR_NAMESPACE_CLOSE_SCOPE
Definition: pxr.h:91
PXR_NAMESPACE_OPEN_SCOPE bool Ar_ContextIsHolding(const ContextObj &contextObj, const ArResolverContext &ctx)
Definition: notice.h:39
type
Definition: core.h:1059