7#ifndef PXR_USD_SDF_COPY_UTILS_H
8#define PXR_USD_SDF_COPY_UTILS_H
13#include "pxr/usd/sdf/api.h"
21PXR_NAMESPACE_OPEN_SCOPE
65 const SdfLayerHandle& srcLayer,
const SdfPath& srcPath,
66 const SdfLayerHandle& dstLayer,
const SdfPath& dstPath);
90 const SdfLayerHandle& srcLayer,
const SdfPath& srcPath,
bool fieldInSrc,
91 const SdfLayerHandle& dstLayer,
const SdfPath& dstPath,
bool fieldInDst,
92 std::optional<VtValue>* valueToCopy)>;
111 std::function<void(
const SdfLayerHandle&,
const SdfPath&)>;
114 const EditFunction& GetEditFunction()
const {
return _edit; }
141 bool(
const TfToken& childrenField,
142 const SdfLayerHandle& srcLayer,
const SdfPath& srcPath,
bool fieldInSrc,
143 const SdfLayerHandle& dstLayer,
const SdfPath& dstPath,
bool fieldInDst,
144 std::optional<VtValue>* srcChildren,
145 std::optional<VtValue>* dstChildren)>;
160 const SdfLayerHandle& srcLayer,
const SdfPath& srcPath,
bool fieldInSrc,
161 const SdfLayerHandle& dstLayer,
const SdfPath& dstPath,
bool fieldInDst,
162 std::optional<VtValue>* valueToCopy);
177 const SdfLayerHandle& srcLayer,
const SdfPath& srcPath,
bool fieldInSrc,
178 const SdfLayerHandle& dstLayer,
const SdfPath& dstPath,
bool fieldInDst,
179 std::optional<VtValue>* srcChildren,
180 std::optional<VtValue>* dstChildren);
217 const SdfLayerHandle& srcLayer,
const SdfPath& srcPath,
218 const SdfLayerHandle& dstLayer,
const SdfPath& dstPath,
224PXR_NAMESPACE_CLOSE_SCOPE
Value containing an editing operation for SdfCopySpecs.
bool operator==(const SdfCopySpecsValueEdit &rhs) const
SdfCopySpecsValueEdit objects are not comparable, but must provide operator== to be stored in a VtVal...
std::function< void(const SdfLayerHandle &, const SdfPath &)> EditFunction
Callback to apply a scene description edit to the specified layer and spec path.
A scene description container that can combine with other such containers to form simple component as...
A path value used to locate objects in layers or scenegraphs.
Token for efficient comparison, assignment, and hashing of known strings.
Provides a container which may hold any type, and provides introspection and iteration over array typ...
SDF_API bool SdfShouldCopyValue(const SdfPath &srcRootPath, const SdfPath &dstRootPath, SdfSpecType specType, const TfToken &field, const SdfLayerHandle &srcLayer, const SdfPath &srcPath, bool fieldInSrc, const SdfLayerHandle &dstLayer, const SdfPath &dstPath, bool fieldInDst, std::optional< VtValue > *valueToCopy)
SdfShouldCopyValueFn used by the simple version of SdfCopySpec.
SDF_API bool SdfShouldCopyChildren(const SdfPath &srcRootPath, const SdfPath &dstRootPath, const TfToken &childrenField, const SdfLayerHandle &srcLayer, const SdfPath &srcPath, bool fieldInSrc, const SdfLayerHandle &dstLayer, const SdfPath &dstPath, bool fieldInDst, std::optional< VtValue > *srcChildren, std::optional< VtValue > *dstChildren)
SdfShouldCopyChildrenFn used by the simple version of SdfCopySpec.
std::function< bool(SdfSpecType specType, const TfToken &field, const SdfLayerHandle &srcLayer, const SdfPath &srcPath, bool fieldInSrc, const SdfLayerHandle &dstLayer, const SdfPath &dstPath, bool fieldInDst, std::optional< VtValue > *valueToCopy)> SdfShouldCopyValueFn
Return true if field should be copied from the spec at srcPath in srcLayer to the spec at dstPath in ...
SDF_API bool SdfCopySpec(const SdfLayerHandle &srcLayer, const SdfPath &srcPath, const SdfLayerHandle &dstLayer, const SdfPath &dstPath)
Utility function for copying spec data at srcPath in srcLayer to destPath in destLayer.
std::function< bool(const TfToken &childrenField, const SdfLayerHandle &srcLayer, const SdfPath &srcPath, bool fieldInSrc, const SdfLayerHandle &dstLayer, const SdfPath &dstPath, bool fieldInDst, std::optional< VtValue > *srcChildren, std::optional< VtValue > *dstChildren)> SdfShouldCopyChildrenFn
Return true if childrenField and the child objects the field represents should be copied from the spe...
SdfSpecType
An enum that specifies the type of an object.