7#ifndef PXR_USD_SDF_ABSTRACT_DATA_H
8#define PXR_USD_SDF_ABSTRACT_DATA_H
11#include "pxr/usd/sdf/path.h"
14#include "pxr/base/vt/value.h"
25PXR_NAMESPACE_OPEN_SCOPE
33#define SDF_DATA_TOKENS \
34 ((TimeSamples, "timeSamples"))
68 virtual void CopyFrom(
const SdfAbstractDataConstPtr& source);
116 virtual bool Equals(
const SdfAbstractDataRefPtr &rhs)
const;
175 VtValue *value = NULL)
const = 0;
211 const TfToken& fieldName)
const = 0;
222 virtual std::type_info
const &
253 const T& defaultValue = T())
const;
267 virtual bool HasDictKey(
const SdfPath& path,
272 virtual bool HasDictKey(
const SdfPath& path,
289 virtual void SetDictValueByKey(
const SdfPath& path,
294 virtual void SetDictValueByKey(
const SdfPath& path,
303 virtual void EraseDictValueByKey(
const SdfPath& path,
311 virtual std::vector<TfToken> ListDictKeys(
const SdfPath& path,
330 virtual std::set<double>
331 ListAllTimeSamples()
const = 0;
334 virtual std::set<double>
335 ListTimeSamplesForPath(
const SdfPath& path)
const = 0;
339 GetBracketingTimeSamples(
double time,
double* tLower,
340 double* tUpper)
const = 0;
344 GetNumTimeSamplesForPath(
const SdfPath& path)
const = 0;
348 GetBracketingTimeSamplesForPath(
const SdfPath& path,
350 double* tLower,
double* tUpper)
const = 0;
367 double* tPrevious)
const;
371 QueryTimeSample(
const SdfPath& path,
double time,
372 VtValue *optionalValue = NULL)
const = 0;
375 QueryTimeSample(
const SdfPath& path,
double time,
380 SetTimeSample(
const SdfPath& path,
double time,
385 EraseTimeSample(
const SdfPath& path,
double time) = 0;
402 const TfToken& field,
const T& defaultVal)
const
420 bool StoreValue(T &&v)
423 using Type = std::remove_cv_t<std::remove_reference_t<T>>;
425 if constexpr (std::is_same_v<Type, VtValue>) {
426 return _StoreVtValue(std::forward<T>(v));
429 isValueBlock =
false;
430 isAnimationBlock =
false;
431 typeMismatch =
false;
432 if constexpr (std::is_same_v<Type, SdfValueBlock>) {
435 }
else if constexpr (std::is_same_v<Type, SdfAnimationBlock>) {
436 isAnimationBlock =
true;
440 *
static_cast<Type*
>(value) = std::forward<T>(v);
448 const std::type_info& valueType;
450 bool isAnimationBlock;
456 , valueType(valueType_)
457 , isValueBlock(
false)
458 , isAnimationBlock(
false)
459 , typeMismatch(
false)
463 virtual bool _StoreVtValue(
const VtValue& value) = 0;
464 virtual bool _StoreVtValue(
VtValue &&value) = 0;
489 T
const &_Get(
const VtValue &v) {
497 template <
class Value>
498 bool _StoreVtValueImpl(Value &&v) {
499 typeMismatch =
false;
500 isValueBlock =
false;
501 isAnimationBlock =
false;
502 if (ARCH_LIKELY(std::forward<Value>(v).
template IsHolding<T>())) {
503 *
static_cast<T*
>(value) = _Get(std::forward<Value>(v));
504 if constexpr (std::is_same_v<T, SdfValueBlock>) {
506 }
else if constexpr (std::is_same_v<T, SdfAnimationBlock>) {
507 isAnimationBlock =
true;
512 if (std::forward<Value>(v).template IsHolding<SdfValueBlock>()) {
516 else if (std::forward<Value>(v).template IsHolding<SdfAnimationBlock>())
518 isAnimationBlock =
true;
528 _StoreVtValue(
const VtValue& v)
override {
529 return _StoreVtValueImpl(v);
533 _StoreVtValue(
VtValue &&v)
override {
534 return _StoreVtValueImpl(v);
546 virtual bool GetValue(
VtValue* value)
const = 0;
548 template <
class T>
bool GetValue(T* v)
const
551 *v = *
static_cast<const T*
>(value);
557 virtual bool IsEqual(
const VtValue& value)
const = 0;
560 const std::type_info& valueType;
561 const bool isArrayEdit;
562 const std::type_info& elementValueType;
566 const std::type_info& valueType_,
567 const bool isArrayEdit_,
568 const std::type_info& elementValueType_)
570 , valueType(valueType_)
571 , isArrayEdit(isArrayEdit_)
572 , elementValueType(elementValueType_)
594 static std::type_info
const &_GetElementType() {
596 return typeid(
typename T::ElementType);
608 virtual bool GetValue(
VtValue* v)
const
614 virtual bool IsEqual(
const VtValue& v)
const
620 const T& _GetValue()
const
622 return *
static_cast<const T*
>(value);
633 typedef char CharArray[N];
667PXR_NAMESPACE_CLOSE_SCOPE
The fully-typed container for a field value in an SdfAbstractData.
A type-erased container for a const field value in an SdfAbstractData.
Interface for scene description data storage.
virtual SDF_API void Set(const SdfPath &path, const TfToken &fieldName, const SdfAbstractDataConstValue &value)=0
Set the value of the given path and fieldName.
virtual SDF_API bool HasSpec(const SdfPath &path) const =0
Return true if this data has a spec for path.
virtual SDF_API bool Has(const SdfPath &path, const TfToken &fieldName, SdfAbstractDataValue *value) const =0
Returns whether a value exists for the given path and fieldName.
virtual SDF_API bool Has(const SdfPath &path, const TfToken &fieldName, VtValue *value=NULL) const =0
Return whether a value exists for the given path and fieldName.
virtual SDF_API bool IsDetached() const
Returns true if this data object is detached from its serialized data store, false otherwise.
virtual SDF_API bool GetPreviousTimeSampleForPath(const SdfPath &path, double time, double *tPrevious) const
Returns the previous time sample authored just before the querying time.
virtual SDF_API std::type_info const & GetTypeid(const SdfPath &path, const TfToken &fieldName) const
Return the type of the value for fieldName on spec path.
virtual SDF_API bool IsEmpty() const
Returns true if this data object has no specs, false otherwise.
virtual SDF_API bool Equals(const SdfAbstractDataRefPtr &rhs) const
Returns true if this data object contains the same specs and fields as lhs, false otherwise.
virtual SDF_API void CopyFrom(const SdfAbstractDataConstPtr &source)
Copy the data in source into this data object.
virtual SDF_API VtValue Get(const SdfPath &path, const TfToken &fieldName) const =0
Return the value for the given path and fieldName.
virtual SDF_API void CreateSpec(const SdfPath &path, SdfSpecType specType)=0
Create a new spec at path with the given specType.
virtual SDF_API bool HasSpecAndField(const SdfPath &path, const TfToken &fieldName, VtValue *value, SdfSpecType *specType) const
Fill specType (which cannot be nullptr) as if by a call to GetSpecType(path).
virtual SDF_API void EraseSpec(const SdfPath &path)=0
Erase the spec at path and any fields that are on it.
virtual SDF_API void WriteToStream(std::ostream &out) const
Writes the contents of this data object to out.
virtual SDF_API std::vector< TfToken > List(const SdfPath &path) const =0
Return the names of all the fields that are set at path.
virtual SDF_API void Set(const SdfPath &path, const TfToken &fieldName, const VtValue &value)=0
Set the value of the given path and fieldName.
virtual SDF_API bool StreamsData() const =0
Returns true if this data object streams its data to and from its serialized data store on demand.
virtual SDF_API bool HasSpecAndField(const SdfPath &path, const TfToken &fieldName, SdfAbstractDataValue *value, SdfSpecType *specType) const
Fill specType (which cannot be nullptr) as if by a call to GetSpecType(path).
virtual SDF_API void _VisitSpecs(SdfAbstractDataSpecVisitor *visitor) const =0
Visits every spec in this SdfAbstractData object with the given visitor.
SDF_API void VisitSpecs(SdfAbstractDataSpecVisitor *visitor) const
Visits every spec in this SdfAbstractData object with the given visitor.
virtual SDF_API void MoveSpec(const SdfPath &oldPath, const SdfPath &newPath)=0
Move the spec at oldPath to newPath, including all the fields that are on it.
T GetAs(const SdfPath &path, const TfToken &fieldName, const T &defaultValue=T()) const
Return the value for the given path and fieldName.
virtual SDF_API void Erase(const SdfPath &path, const TfToken &fieldName)=0
Remove the field at path and fieldName, if one exists.
virtual SdfSpecType GetSpecType(const SdfPath &path) const =0
Return the spec type for the spec at path.
Base class for objects used to visit specs in an SdfAbstractData object.
virtual SDF_API bool VisitSpec(const SdfAbstractData &data, const SdfPath &path)=0
SdfAbstractData::VisitSpecs calls this function for every entry it contains, passing itself as data a...
virtual SDF_API void Done(const SdfAbstractData &data)=0
SdfAbstractData::VisitSpecs will call this after visitation is complete, even if some VisitSpec() ret...
The fully-typed container for a field value in an SdfAbstractData.
A type-erased container for a field value in an SdfAbstractData.
A path value used to locate objects in layers or scenegraphs.
Enable a concrete base class for use with TfRefPtr.
Token for efficient comparison, assignment, and hashing of known strings.
Enable a concrete base class for use with TfWeakPtr.
Provides a container which may hold any type, and provides introspection and iteration over array typ...
T UncheckedRemove()
Make this value empty and return the held T instance.
bool IsHolding() const
Return true if this value is holding an object of type T, false otherwise.
T const & UncheckedGet() const &
Returns a const reference to the held object if the held object is of type T.
Standard pointer typedefs.
#define TF_DECLARE_WEAK_AND_REF_PTRS(type)
Define standard weak, ref, and vector pointer types.
bool TfSafeTypeCompare(const std::type_info &t1, const std::type_info &t2)
Safely compare std::type_info structures.
This file defines some macros that are useful for declaring and using static TfTokens.
#define TF_DECLARE_PUBLIC_TOKENS(...)
Macro to define public tokens.
A trait to detect instantiations of VtArrayEdit, specialized in arrayEdit.h.
TfToken class for efficient string referencing and hashing, plus conversions to and from stl string c...
SdfSpecType
An enum that specifies the type of an object.