7 #ifndef PXR_USD_SDF_PATH_H
8 #define PXR_USD_SDF_PATH_H
25 #include <type_traits>
45 struct Sdf_PathPrimTag;
46 struct Sdf_PathPropTag;
52 static constexpr
size_t Sdf_MaxSizeofPrimPathNode = 16;
53 static constexpr
size_t Sdf_MaxSizeofPropPathNode = 20;
55 static constexpr
size_t Sdf_MaxSizeofPrimPathNode = 24;
56 static constexpr
size_t Sdf_MaxSizeofPropPathNode = 24;
60 Sdf_PathPrimTag, Sdf_MaxSizeofPrimPathNode, 8>;
63 Sdf_PathPropTag, Sdf_MaxSizeofPropPathNode, 8>;
69 template <
class Handle,
bool Counted,
class PathNode=Sdf_PathNode const>
81 : _poolHandle(
Handle::GetHandle(reinterpret_cast<char const *>(p))) {
96 : _poolHandle(rhs._poolHandle) {
110 if (Counted && *
this == rhs) {
118 : _poolHandle(rhs._poolHandle) {
119 rhs._poolHandle =
nullptr;
135 _poolHandle =
Handle {
nullptr };
139 get()
const noexcept {
140 return reinterpret_cast<Sdf_PathNode *
>(_poolHandle.GetPtr());
153 explicit operator bool() const noexcept {
154 return static_cast<bool>(_poolHandle);
158 _poolHandle.swap(rhs._poolHandle);
162 return _poolHandle == rhs._poolHandle;
165 return _poolHandle != rhs._poolHandle;
168 return _poolHandle < rhs._poolHandle;
178 inline void _AddRef()
const {
182 inline void _DecRef()
const {
188 Handle _poolHandle {
nullptr };
379 return static_cast<bool>(_propPart);
703 const std::string &variant)
const;
766 const SdfPath &newPrefix,
767 bool fixTargetPaths=
true)
const;
789 std::pair<SdfPath, SdfPath>
791 bool stopAtRootPrim =
false)
const;
845 static std::string
JoinIdentifier(
const std::vector<std::string> &names);
858 const std::string &rhs);
888 static std::pair<std::string, bool>
890 const std::string &matchNamespace);
898 std::string *errMsg = 0);
907 return _AsInt() == rhs._AsInt();
912 return !(*
this == rhs);
920 if (_AsInt() == rhs._AsInt()) {
923 if (!_primPart || !rhs._primPart) {
924 return !_primPart && rhs._primPart;
927 return _LessThanInternal(*
this, rhs);
939 return !(rhs < *
this);
945 return !(*
this < rhs);
948 template <
class HashState>
952 uint32_t primPart, propPart;
953 memcpy(&primPart, &path._primPart,
sizeof(primPart));
954 memcpy(&propPart, &path._propPart,
sizeof(propPart));
967 return Hash()(*this);
974 return a._AsInt() < b._AsInt();
1011 : _primPart(std::move(primNode)) {}
1015 : _primPart(std::move(primPart))
1016 , _propPart(std::move(propPart)) {}
1021 : _primPart(primPart)
1022 , _propPart(propPart) {}
1027 : _primPart(primPart)
1028 , _propPart(propPart) {}
1035 SdfPath _ReplacePrimPrefix(SdfPath
const &oldPrefix,
1036 SdfPath
const &newPrefix)
const;
1038 SdfPath _ReplaceTargetPathPrefixes(SdfPath
const &oldPrefix,
1039 SdfPath
const &newPrefix)
const;
1041 SdfPath _ReplacePropPrefix(SdfPath
const &oldPrefix,
1042 SdfPath
const &newPrefix,
1043 bool fixTargetPaths)
const;
1047 _LessThanInternal(SdfPath
const &lhs, SdfPath
const &rhs);
1049 inline uint64_t _AsInt()
const {
1050 static_assert(
sizeof(*
this) ==
sizeof(uint64_t),
"");
1052 std::memcpy(&ret,
this,
sizeof(*
this));
1056 friend void swap(SdfPath &lhs, SdfPath &rhs) {
1057 lhs._primPart.
swap(rhs._primPart);
1058 lhs._propPart.
swap(rhs._propPart);
1159 template <
class ForwardIterator,
class GetPathFn = Sdf_PathIdentity>
1160 std::pair<ForwardIterator, ForwardIterator>
1162 SdfPath
const &prefix,
1163 GetPathFn
const &getPath = GetPathFn()) {
1168 Compare(GetPathFn
const &getPath) : _getPath(getPath) {}
1169 GetPathFn
const &_getPath;
1170 bool operator()(IterRef
a, SdfPath
const &
b)
const {
1171 return _getPath(a) <
b;
1175 std::pair<ForwardIterator, ForwardIterator>
result;
1178 result.first = std::lower_bound(begin, end, prefix, Compare(getPath));
1182 result.second = TfFindBoundary(result.first, end,
1183 [&prefix, &getPath](IterRef iterRef) {
1184 return getPath(iterRef).HasPrefix(prefix);
1190 template <
class RandomAccessIterator,
class GetPathFn>
1191 RandomAccessIterator
1193 RandomAccessIterator
end,
1194 SdfPath
const &path,
1196 GetPathFn
const &getPath)
1202 Compare(GetPathFn
const &getPath) : _getPath(getPath) {}
1203 GetPathFn
const &_getPath;
1204 bool operator()(IterRef
a, SdfPath
const &
b)
const {
1205 return _getPath(a) <
b;
1218 Compare comp(getPath);
1221 RandomAccessIterator
result = std::lower_bound(begin, end, path, comp);
1225 if (!strictPrefix && result != end && getPath(*result) == path) {
1231 if (result == begin) {
1236 if (path.
HasPrefix(getPath(*--result))) {
1246 result = std::lower_bound(begin, end, newPath, comp);
1248 if (result != end && getPath(*result) == newPath) {
1251 if (result == begin) {
1254 if (newPath.
HasPrefix(getPath(*--result))) {
1269 class =
typename std::enable_if<
1271 std::random_access_iterator_tag,
1272 typename std::iterator_traits<
1273 RandomAccessIterator>::iterator_category
1277 RandomAccessIterator
1279 RandomAccessIterator
end,
1280 SdfPath
const &path,
1281 GetPathFn
const &getPath = GetPathFn())
1284 begin, end, path,
false, getPath);
1295 class =
typename std::enable_if<
1297 std::random_access_iterator_tag,
1298 typename std::iterator_traits<
1299 RandomAccessIterator>::iterator_category
1303 RandomAccessIterator
1305 RandomAccessIterator end,
1306 SdfPath
const &path,
1307 GetPathFn
const &getPath = GetPathFn())
1310 begin, end, path,
true, getPath);
1313 template <
class Iter,
class MapParam,
class GetPathFn = Sdf_PathIdentity>
1316 MapParam map, SdfPath
const &path,
bool strictPrefix,
1317 GetPathFn
const &getPath = GetPathFn())
1324 const Iter mapEnd = map.end();
1331 Iter
result = map.lower_bound(path);
1335 if (!strictPrefix && result != mapEnd && getPath(*result) == path)
1340 if (result == map.begin())
1351 return Sdf_PathFindLongestPrefixImpl<Iter, MapParam>(
1360 typename std::set<SdfPath>::const_iterator
1367 typename std::map<SdfPath, T>::const_iterator
1371 typename std::map<SdfPath, T>::const_iterator,
1372 std::map<SdfPath, T>
const &>(map,
path,
false,
1376 typename std::map<SdfPath, T>::iterator
1380 typename std::map<SdfPath, T>::iterator,
1381 std::map<SdfPath, T> &>(map,
path,
false,
1389 typename std::set<SdfPath>::const_iterator
1391 SdfPath
const &path);
1397 typename std::map<SdfPath, T>::const_iterator
1399 std::map<SdfPath, T>
const &map, SdfPath
const &path)
1402 typename std::map<SdfPath, T>::const_iterator,
1403 std::map<SdfPath, T>
const &>(map,
path,
true,
1407 typename std::map<SdfPath, T>::iterator
1409 std::map<SdfPath, T> &map, SdfPath
const &path)
1412 typename std::map<SdfPath, T>::iterator,
1413 std::map<SdfPath, T> &>(map,
path,
true,
1433 #endif // PXR_USD_SDF_PATH_H
SDF_API const char * GetText() const
SDF_API bool IsPrimOrPrimVariantSelectionPath() const
SDF_API SdfPath AppendTarget(const SdfPath &targetPath) const
SDF_API bool IsMapperPath() const
Returns whether the path identifies a connection mapper.
friend void swap(SdfPath &lhs, SdfPath &rhs)
SDF_API iterator & operator++()
SDF_API const std::string & GetName() const
static SDF_API const SdfPath & AbsoluteRootPath()
friend class Sdfext_PathAccess
static constexpr bool IsCounted
Sdf_PathNodeHandleImpl(Sdf_PathNodeHandleImpl const &rhs) noexcept
SDF_API std::string GetElementString() const
SDF_API bool IsExpressionPath() const
Returns whether the path identifies a connection expression.
SDF_API SdfPath AppendExpression() const
iterator(const SdfPath &path)
Sdf_PathNodeHandleImpl(Handle h, bool add_ref=true)
SDF_API SdfPath AppendMapper(const SdfPath &targetPath) const
STATIC_INLINE size_t Hash(const char *s, size_t len)
friend class Sdf_PathInitAccess
SDF_API char const * Sdf_PathGetDebuggerPathText(SdfPath const &)
bool operator==(const SdfPath &rhs) const
Equality operator.
Sdf_PathPropPartPool::Handle Sdf_PathPropHandle
SDF_API SdfPath ReplaceTargetPath(const SdfPath &newTargetPath) const
std::pair< ForwardIterator, ForwardIterator > SdfPathFindPrefixedRange(ForwardIterator begin, ForwardIterator end, SdfPath const &prefix, GetPathFn const &getPath=GetPathFn())
static SDF_API bool IsValidPathString(const std::string &pathString, std::string *errMsg=0)
#define PXR_NAMESPACE_OPEN_SCOPE
GLsizei const GLfloat * value
RandomAccessIterator Sdf_PathFindLongestPrefixImpl(RandomAccessIterator begin, RandomAccessIterator end, SdfPath const &path, bool strictPrefix, GetPathFn const &getPath)
SDF_API bool IsAbsoluteRootPath() const
Return true if this path is the AbsoluteRootPath().
GLsizei const GLchar *const * path
SDF_API bool IsMapperArgPath() const
Returns whether the path identifies a connection mapper arg.
void TfDelegatedCountIncrement(Sdf_PathNode const *) noexcept
SDF_API const SdfPath & GetTargetPath() const
SDF_API bool IsPrimPropertyPath() const
SDF_API SdfPath GetAbsoluteRootOrPrimPath() const
SdfPathAncestorsRange(const SdfPath &path)
SDF_API TfToken GetAsToken() const
Sdf_PathNodeHandleImpl & operator=(Sdf_PathNodeHandleImpl &&rhs) noexcept
bool operator==(const iterator &o) const
GLboolean GLboolean GLboolean GLboolean a
static SDF_API void RemoveDescendentPaths(SdfPathVector *paths)
bool IsEmpty() const noexcept
Returns true if this is the empty path (SdfPath::EmptyPath()).
bool operator==(Sdf_PathNodeHandleImpl const &rhs) const noexcept
**But if you need a result
Sdf_PathNodeHandleImpl(Sdf_PathNode const *p, bool add_ref=true)
auto arg(const Char *name, const T &arg) -> detail::named_arg< Char, T >
SdfPath const & operator()(SdfPath const &arg) const
size_t GetHash() const
Equality operator.
SDF_API std::pair< std::string, std::string > GetVariantSelection() const
SDF_API SdfPath StripAllVariantSelections() const
bool operator!=(const iterator &o) const
SDF_API SdfPath AppendRelationalAttribute(TfToken const &attrName) const
static SDF_API std::vector< std::string > TokenizeIdentifier(const std::string &name)
static SDF_API const SdfPath & EmptyPath()
The empty path value, equivalent to SdfPath().
const SdfPath & operator*() const
GLint GLint GLsizei GLint GLenum GLenum type
bool operator<(const SdfPath &rhs) const
void swap(Sdf_PathNodeHandleImpl &rhs) noexcept
friend void TfHashAppend(HashState &h, SdfPath const &path)
Equality operator.
SDF_API void GetAllTargetPathsRecursively(SdfPathVector *result) const
bool ContainsPropertyElements() const
SDF_API bool IsPrimVariantSelectionPath() const
bool operator!=(Sdf_PathNodeHandleImpl const &rhs) const noexcept
~Sdf_PathNodeHandleImpl()
SDF_API SdfPath AppendChild(TfToken const &childName) const
constexpr auto set(type rhs) -> int
static SDF_API bool IsValidNamespacedIdentifier(const std::string &name)
Sdf_PathNode const & operator*() const
bool operator>=(const SdfPath &rhs) const
SDF_API SdfPath AppendVariantSelection(const std::string &variantSet, const std::string &variant) const
SDF_API SdfPath AppendMapperArg(TfToken const &argName) const
SDF_API bool IsAbsolutePath() const
Returns whether the path is absolute.
static SDF_API std::string JoinIdentifier(const std::vector< std::string > &names)
std::vector< TfToken > TfTokenVector
Convenience types.
SDF_API bool ContainsTargetPath() const
static SDF_API bool IsValidIdentifier(const std::string &name)
SdfPath() noexcept=default
SDF_API size_t GetPathElementCount() const
Returns the number of path elements in this path.
GLuint const GLchar * name
SDF_API TfToken GetElementToken() const
Like GetElementString() but return the value as a TfToken.
SDF_API const std::string & GetString() const
SDF_API bool IsPrimPath() const
Returns whether the path identifies a prim.
GLboolean GLboolean GLboolean b
size_t operator()(const SdfPath &path) const
Sdf_PathPrimPartPool::Handle Sdf_PathPrimHandle
Sdf_PathNodeHandleImpl & operator=(Sdf_PathNode const *rhs) noexcept
std::vector< class SdfPath > SdfPathVector
A vector of SdfPaths.
constexpr Sdf_PathNodeHandleImpl() noexcept
SDF_API const TfToken & GetNameToken() const
SDF_API bool HasPrefix(const SdfPath &prefix) const
SDF_API bool IsRelationalAttributePath() const
std::set< class SdfPath > SdfPathSet
A set of SdfPaths.
SDF_API SdfPath AppendProperty(TfToken const &propName) const
SDF_API bool ContainsPrimVariantSelection() const
__hostdev__ uint64_t last(uint32_t i) const
std::forward_iterator_tag iterator_category
GLfloat GLfloat GLfloat GLfloat h
bool operator<(Sdf_PathNodeHandleImpl const &rhs) const noexcept
SDF_API std::ostream & operator<<(std::ostream &out, const SdfPath &path)
Writes the string representation of path to out.
const SdfPath * operator->() const
SDF_API SdfPathAncestorsRange GetAncestorsRange() const
SDF_API SdfPath GetCommonPrefix(const SdfPath &path) const
SDF_API TfToken const & GetToken() const
PcpNodeRef_ChildrenIterator begin(const PcpNodeRef::child_const_range &r)
Support for range-based for loops for PcpNodeRef children ranges.
SDF_API bool IsTargetPath() const
Sdf_PathNodeHandleImpl & operator=(Sdf_PathNodeHandleImpl const &rhs)
SDF_API std::pair< SdfPath, SdfPath > RemoveCommonSuffix(const SdfPath &otherPath, bool stopAtRootPrim=false) const
size_t hash_value(SdfPath const &path)
SDF_API bool IsRootPrimPath() const
SDF_API SdfPath AppendPath(const SdfPath &newSuffix) const
SDF_API std::string GetAsString() const
const SdfPath & GetPath() const
SDF_API SdfPath MakeAbsolutePath(const SdfPath &anchor) const
#define PXR_NAMESPACE_CLOSE_SCOPE
SDF_API bool IsNamespacedPropertyPath() const
SDF_API SdfPath AppendElementToken(const TfToken &elementTok) const
Like AppendElementString() but take the element as a TfToken.
SDF_API SdfPath GetParentPath() const
static SDF_API SdfPathVector GetConciseRelativePaths(const SdfPathVector &paths)
SDF_API SdfPath GetPrimOrPrimVariantSelectionPath() const
SDF_API bool IsPropertyPath() const
static SDF_API std::pair< std::string, bool > StripPrefixNamespace(const std::string &name, const std::string &matchNamespace)
SDF_API friend char const * Sdf_PathGetDebuggerPathText(SdfPath const &)
SDF_API friend difference_type distance(const iterator &first, const iterator &last)
RandomAccessIterator SdfPathFindLongestPrefix(RandomAccessIterator begin, RandomAccessIterator end, SdfPath const &path, GetPathFn const &getPath=GetPathFn())
static SDF_API void RemoveAncestorPaths(SdfPathVector *paths)
SDF_API bool IsAbsoluteRootOrPrimPath() const
Returns whether the path identifies a prim or the absolute root.
RandomAccessIterator SdfPathFindLongestStrictPrefix(RandomAccessIterator begin, RandomAccessIterator end, SdfPath const &path, GetPathFn const &getPath=GetPathFn())
Sdf_PathNode const * operator->() const
bool operator!=(const SdfPath &rhs) const
Inequality operator.
Sdf_PathNodeHandleImpl(Sdf_PathNodeHandleImpl &&rhs) noexcept
SDF_API SdfPathVector GetPrefixes() const
static SDF_API std::string StripNamespace(const std::string &name)
that also have some descendant prim *whose name begins with which in turn has a child named baz where *the predicate and *a name There is also one special expression reference
SDF_API SdfPath ReplaceName(TfToken const &newName) const
bool operator<=(const SdfPath &rhs) const
static SDF_API const SdfPath & ReflexiveRelativePath()
The relative path representing "self".
bool operator>(const SdfPath &rhs) const
SDF_API SdfPath AppendElementString(const std::string &element) const
bool operator()(const SdfPath &a, const SdfPath &b) const
VT_TYPE_IS_CHEAP_TO_COPY(class SdfPath)
std::ptrdiff_t difference_type
void TfDelegatedCountDecrement(Sdf_PathNode const *) noexcept
SDF_API SdfPath MakeRelativePath(const SdfPath &anchor) const
SDF_API SdfPath ReplacePrefix(const SdfPath &oldPrefix, const SdfPath &newPrefix, bool fixTargetPaths=true) const
SDF_API SdfPath GetPrimPath() const
static SDF_API TfTokenVector TokenizeIdentifierAsTokens(const std::string &name)