2 * ***** BEGIN GPL LICENSE BLOCK *****
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * Contributor(s): Esteban Tovagliari, Cedric Paille, Kevin Dietrich
20 * ***** END GPL LICENSE BLOCK *****
23 #include "../ABC_alembic.h"
25 #include <Alembic/AbcMaterial/IMaterial.h>
27 #include "abc_archive.h"
28 #include "abc_camera.h"
29 #include "abc_curves.h"
32 #include "abc_nurbs.h"
33 #include "abc_points.h"
34 #include "abc_transform.h"
38 #include "MEM_guardedalloc.h"
40 #include "DNA_cachefile_types.h"
41 #include "DNA_curve_types.h"
42 #include "DNA_modifier_types.h"
43 #include "DNA_object_types.h"
44 #include "DNA_scene_types.h"
46 #include "BKE_cachefile.h"
47 #include "BKE_cdderivedmesh.h"
48 #include "BKE_context.h"
49 #include "BKE_curve.h"
50 #include "BKE_depsgraph.h"
51 #include "BKE_global.h"
52 #include "BKE_library.h"
54 #include "BKE_scene.h"
56 /* SpaceType struct has a member called 'new' which obviously conflicts with C++
57 * so temporarily redefining the new keyword to make it compile. */
58 #define new extern_new
59 #include "BKE_screen.h"
62 #include "BLI_fileops.h"
63 #include "BLI_ghash.h"
64 #include "BLI_listbase.h"
66 #include "BLI_path_util.h"
67 #include "BLI_string.h"
73 using Alembic::Abc::Int32ArraySamplePtr;
74 using Alembic::Abc::ObjectHeader;
76 using Alembic::AbcGeom::MetaData;
77 using Alembic::AbcGeom::P3fArraySamplePtr;
78 using Alembic::AbcGeom::kWrapExisting;
80 using Alembic::AbcGeom::ICamera;
81 using Alembic::AbcGeom::ICurves;
82 using Alembic::AbcGeom::ICurvesSchema;
83 using Alembic::AbcGeom::IFaceSet;
84 using Alembic::AbcGeom::ILight;
85 using Alembic::AbcGeom::INuPatch;
86 using Alembic::AbcGeom::IObject;
87 using Alembic::AbcGeom::IPoints;
88 using Alembic::AbcGeom::IPointsSchema;
89 using Alembic::AbcGeom::IPolyMesh;
90 using Alembic::AbcGeom::IPolyMeshSchema;
91 using Alembic::AbcGeom::ISampleSelector;
92 using Alembic::AbcGeom::ISubD;
93 using Alembic::AbcGeom::IV2fGeomParam;
94 using Alembic::AbcGeom::IXform;
95 using Alembic::AbcGeom::IXformSchema;
96 using Alembic::AbcGeom::N3fArraySamplePtr;
97 using Alembic::AbcGeom::XformSample;
98 using Alembic::AbcGeom::ICompoundProperty;
99 using Alembic::AbcGeom::IN3fArrayProperty;
100 using Alembic::AbcGeom::IN3fGeomParam;
101 using Alembic::AbcGeom::V3fArraySamplePtr;
103 using Alembic::AbcMaterial::IMaterial;
105 struct AbcArchiveHandle {
109 ABC_INLINE ArchiveReader *archive_from_handle(AbcArchiveHandle *handle)
111 return reinterpret_cast<ArchiveReader *>(handle);
114 ABC_INLINE AbcArchiveHandle *handle_from_archive(ArchiveReader *archive)
116 return reinterpret_cast<AbcArchiveHandle *>(archive);
121 /* NOTE: this function is similar to visit_objects below, need to keep them in
123 static void gather_objects_paths(const IObject &object, ListBase *object_paths)
125 if (!object.valid()) {
129 for (int i = 0; i < object.getNumChildren(); ++i) {
130 IObject child = object.getChild(i);
132 if (!child.valid()) {
136 bool get_path = false;
138 const MetaData &md = child.getMetaData();
140 if (IXform::matches(md)) {
141 /* Check whether or not this object is a Maya locator, which is
142 * similar to empties used as parent object in Blender. */
143 if (has_property(child.getProperties(), "locator")) {
147 /* Avoid creating an empty object if the child of this transform
148 * is not a transform (that is an empty). */
149 if (child.getNumChildren() == 1) {
150 if (IXform::matches(child.getChild(0).getMetaData())) {
155 std::cerr << "gather_objects_paths(" << object.getFullName() << "): Skipping " << child.getFullName() << '\n';
164 else if (IPolyMesh::matches(md)) {
167 else if (ISubD::matches(md)) {
170 else if (INuPatch::matches(md)) {
175 else if (ICamera::matches(md)) {
178 else if (IPoints::matches(md)) {
181 else if (IMaterial::matches(md)) {
184 else if (ILight::matches(md)) {
187 else if (IFaceSet::matches(md)) {
188 /* Pass, those are handled in the mesh reader. */
190 else if (ICurves::matches(md)) {
198 AlembicObjectPath *abc_path = static_cast<AlembicObjectPath *>(
199 MEM_callocN(sizeof(AlembicObjectPath), "AlembicObjectPath"));
201 BLI_strncpy(abc_path->path, child.getFullName().c_str(), PATH_MAX);
203 BLI_addtail(object_paths, abc_path);
206 gather_objects_paths(child, object_paths);
210 AbcArchiveHandle *ABC_create_handle(const char *filename, ListBase *object_paths)
212 ArchiveReader *archive = new ArchiveReader(filename);
214 if (!archive->valid()) {
220 gather_objects_paths(archive->getTop(), object_paths);
223 return handle_from_archive(archive);
226 void ABC_free_handle(AbcArchiveHandle *handle)
228 delete archive_from_handle(handle);
231 int ABC_get_version()
233 return ALEMBIC_LIBRARY_VERSION;
236 static void find_iobject(const IObject &object, IObject &ret,
237 const std::string &path)
239 if (!object.valid()) {
243 std::vector<std::string> tokens;
244 split(path, '/', tokens);
246 IObject tmp = object;
248 std::vector<std::string>::iterator iter;
249 for (iter = tokens.begin(); iter != tokens.end(); ++iter) {
250 IObject child = tmp.getChild(*iter);
257 struct ExportJobData {
262 ExportSettings settings;
271 static void export_startjob(void *customdata, short *stop, short *do_update, float *progress)
273 ExportJobData *data = static_cast<ExportJobData *>(customdata);
276 data->do_update = do_update;
277 data->progress = progress;
279 /* XXX annoying hack: needed to prevent data corruption when changing
280 * scene frame in separate threads
282 G.is_rendering = true;
283 BKE_spacedata_draw_locks(true);
288 Scene *scene = data->scene;
289 AbcExporter exporter(scene, data->filename, data->settings);
291 const int orig_frame = CFRA;
293 data->was_canceled = false;
294 exporter(data->bmain, *data->progress, data->was_canceled);
296 if (CFRA != orig_frame) {
299 BKE_scene_update_for_newframe(data->bmain->eval_ctx, data->bmain,
303 catch (const std::exception &e) {
304 ABC_LOG(data->settings.logger) << "Abc Export error: " << e.what() << '\n';
307 ABC_LOG(data->settings.logger) << "Abc Export: unknown error...\n";
311 static void export_endjob(void *customdata)
313 ExportJobData *data = static_cast<ExportJobData *>(customdata);
315 if (data->was_canceled && BLI_exists(data->filename)) {
316 BLI_delete(data->filename, false, false);
319 if (!data->settings.logger.empty()) {
320 std::cerr << data->settings.logger;
321 WM_report(RPT_ERROR, "Errors occured during the export, look in the console to know more...");
324 G.is_rendering = false;
325 BKE_spacedata_draw_locks(false);
331 const char *filepath,
332 const struct AlembicExportParams *params)
334 ExportJobData *job = static_cast<ExportJobData *>(MEM_mallocN(sizeof(ExportJobData), "ExportJobData"));
336 job->bmain = CTX_data_main(C);
337 BLI_strncpy(job->filename, filepath, 1024);
339 /* Alright, alright, alright....
341 * ExportJobData contains an ExportSettings containing a SimpleLogger.
343 * Since ExportJobData is a C-style struct dynamically allocated with
344 * MEM_mallocN (see above), its construtor is never called, therefore the
345 * ExportSettings constructor is not called which implies that the
346 * SimpleLogger one is not called either. SimpleLogger in turn does not call
347 * the constructor of its data members which ultimately means that its
348 * std::ostringstream member has a NULL pointer. To be able to properly use
349 * the stream's operator<<, the pointer needs to be set, therefore we have
350 * to properly construct everything. And this is done using the placement
351 * new operator as here below. It seems hackish, but I'm too lazy to
352 * do bigger refactor and maybe there is a better way which does not involve
353 * hardcore refactoring. */
354 new (&job->settings) ExportSettings();
355 job->settings.scene = job->scene;
356 job->settings.frame_start = params->frame_start;
357 job->settings.frame_end = params->frame_end;
358 job->settings.frame_step_xform = params->frame_step_xform;
359 job->settings.frame_step_shape = params->frame_step_shape;
360 job->settings.shutter_open = params->shutter_open;
361 job->settings.shutter_close = params->shutter_close;
362 job->settings.selected_only = params->selected_only;
363 job->settings.export_face_sets = params->face_sets;
364 job->settings.export_normals = params->normals;
365 job->settings.export_uvs = params->uvs;
366 job->settings.export_vcols = params->vcolors;
367 job->settings.apply_subdiv = params->apply_subdiv;
368 job->settings.flatten_hierarchy = params->flatten_hierarchy;
369 job->settings.visible_layers_only = params->visible_layers_only;
370 job->settings.renderable_only = params->renderable_only;
371 job->settings.use_subdiv_schema = params->use_subdiv_schema;
372 job->settings.export_ogawa = (params->compression_type == ABC_ARCHIVE_OGAWA);
373 job->settings.pack_uv = params->packuv;
374 job->settings.global_scale = params->global_scale;
375 job->settings.triangulate = params->triangulate;
376 job->settings.quad_method = params->quad_method;
377 job->settings.ngon_method = params->ngon_method;
379 if (job->settings.frame_start > job->settings.frame_end) {
380 std::swap(job->settings.frame_start, job->settings.frame_end);
383 wmJob *wm_job = WM_jobs_get(CTX_wm_manager(C),
388 WM_JOB_TYPE_ALEMBIC);
391 WM_jobs_customdata_set(wm_job, job, MEM_freeN);
392 WM_jobs_timer(wm_job, 0.1, NC_SCENE | ND_FRAME, NC_SCENE | ND_FRAME);
393 WM_jobs_callbacks(wm_job, export_startjob, NULL, NULL, export_endjob);
395 WM_jobs_start(CTX_wm_manager(C), wm_job);
398 /* ********************** Import file ********************** */
401 * Generates an AbcObjectReader for this Alembic object and its children.
403 * \param object The Alembic IObject to visit.
404 * \param readers The created AbcObjectReader * will be appended to this vector.
405 * \param readers_map The created AbcObjectReader * will be appended to this
406 * map, keyed by its full name in Alembic.
407 * \param settings Import settings, not used directly but passed to the
408 * AbcObjectReader subclass constructors.
409 * \return whether this IObject claims its parent as part of the same object
410 * (for example an IPolyMesh object would claim its parent, as the mesh
411 * is interpreted as the object's data, and the parent IXform as its
414 static bool visit_object(const IObject &object,
415 std::vector<AbcObjectReader *> &readers,
417 ImportSettings &settings)
419 if (!object.valid()) {
420 std::cerr << " - " << object.getFullName() << ": object is invalid, skipping it and all its children.\n";
424 // The interpretation of data by the children determine the role of this object.
425 // This is especially important for Xform objects, as they can be either part of a Blender object
426 // or a Blender object (Empty) themselves.
427 size_t children_claiming_this_object = 0;
428 size_t num_children = object.getNumChildren();
429 for (size_t i = 0; i < num_children; ++i) {
430 bool child_claims_this_object = visit_object(object.getChild(i), readers, readers_map, settings);
431 children_claiming_this_object += child_claims_this_object ? 1 : 0;
434 AbcObjectReader *reader = NULL;
435 const MetaData &md = object.getMetaData();
436 bool parent_is_part_of_this_object = false;
438 if (!object.getParent()) {
439 // The root itself is not an object we should import.
441 else if (IXform::matches(md)) {
444 /* An xform can either be a Blender Object (if it contains a mesh, for exapmle),
445 * but it can also be an Empty. Its correct translation to Blender's data model
446 * depends on its children. */
448 /* Check whether or not this object is a Maya locator, which is
449 * similar to empties used as parent object in Blender. */
450 if (has_property(object.getProperties(), "locator")) {
454 create_empty = children_claiming_this_object == 0;
458 reader = new AbcEmptyReader(object, settings);
461 else if (IPolyMesh::matches(md)) {
462 reader = new AbcMeshReader(object, settings);
463 parent_is_part_of_this_object = true;
465 else if (ISubD::matches(md)) {
466 reader = new AbcSubDReader(object, settings);
467 parent_is_part_of_this_object = true;
469 else if (INuPatch::matches(md)) {
471 /* TODO(kevin): importing cyclic NURBS from other software crashes
472 * at the moment. This is due to the fact that NURBS in other
473 * software have duplicated points which causes buffer overflows in
474 * Blender. Need to figure out exactly how these points are
475 * duplicated, in all cases (cyclic U, cyclic V, and cyclic UV).
476 * Until this is fixed, disabling NURBS reading. */
477 reader = new AbcNurbsReader(object, settings);
478 parent_is_part_of_this_object = true;
481 else if (ICamera::matches(md)) {
482 reader = new AbcCameraReader(object, settings);
483 parent_is_part_of_this_object = true;
485 else if (IPoints::matches(md)) {
486 reader = new AbcPointsReader(object, settings);
487 parent_is_part_of_this_object = true;
489 else if (IMaterial::matches(md)) {
492 else if (ILight::matches(md)) {
495 else if (IFaceSet::matches(md)) {
496 /* Pass, those are handled in the mesh reader. */
498 else if (ICurves::matches(md)) {
499 reader = new AbcCurveReader(object, settings);
500 parent_is_part_of_this_object = true;
503 std::cerr << "object is of unsupported schema type "
504 << "'" << object.getMetaData().get("schemaObjTitle") << "'"
511 readers.push_back(reader);
514 AlembicObjectPath *abc_path = static_cast<AlembicObjectPath *>(
515 MEM_callocN(sizeof(AlembicObjectPath), "AlembicObjectPath"));
517 BLI_strncpy(abc_path->path, object.getFullName().c_str(), PATH_MAX);
519 BLI_addtail(&settings.cache_file->object_paths, abc_path);
521 /* Cast to `void *` explicitly to avoid compiler errors because it
522 * is a `const char *` which the compiler cast to `const void *`
523 * instead of the expected `void *`. */
524 BLI_ghash_insert(readers_map, (void *)object.getFullName().c_str(), reader);
527 return parent_is_part_of_this_object;
535 struct ImportJobData {
540 ImportSettings settings;
543 std::vector<AbcObjectReader *> readers;
553 ABC_INLINE bool is_mesh_and_strands(const IObject &object)
555 bool has_mesh = false;
556 bool has_curve = false;
558 for (int i = 0; i < object.getNumChildren(); ++i) {
559 const IObject &child = object.getChild(i);
561 if (!child.valid()) {
565 const MetaData &md = child.getMetaData();
567 if (IPolyMesh::matches(md)) {
570 else if (ISubD::matches(md)) {
573 else if (ICurves::matches(md)) {
576 else if (IPoints::matches(md)) {
581 return has_mesh && has_curve;
584 static void import_startjob(void *user_data, short *stop, short *do_update, float *progress)
586 SCOPE_TIMER("Alembic import, objects reading and creation");
588 ImportJobData *data = static_cast<ImportJobData *>(user_data);
591 data->do_update = do_update;
592 data->progress = progress;
594 ArchiveReader *archive = new ArchiveReader(data->filename);
596 if (!archive->valid()) {
598 data->error_code = ABC_ARCHIVE_FAIL;
602 CacheFile *cache_file = static_cast<CacheFile *>(BKE_cachefile_add(data->bmain, BLI_path_basename(data->filename)));
604 /* Decrement the ID ref-count because it is going to be incremented for each
605 * modifier and constraint that it will be attached to, so since currently
606 * it is not used by anyone, its use count will off by one. */
607 id_us_min(&cache_file->id);
609 cache_file->is_sequence = data->settings.is_sequence;
610 cache_file->scale = data->settings.scale;
611 cache_file->handle = handle_from_archive(archive);
612 BLI_strncpy(cache_file->filepath, data->filename, 1024);
614 data->settings.cache_file = cache_file;
616 *data->do_update = true;
617 *data->progress = 0.05f;
619 data->reader_map = BLI_ghash_str_new("alembic parent ghash");
621 /* Parse Alembic Archive. */
622 visit_object(archive->getTop(), data->readers, data->reader_map, data->settings);
625 data->was_cancelled = true;
629 *data->do_update = true;
630 *data->progress = 0.1f;
632 /* Create objects and set scene frame range. */
634 const float size = static_cast<float>(data->readers.size());
637 chrono_t min_time = std::numeric_limits<chrono_t>::max();
638 chrono_t max_time = std::numeric_limits<chrono_t>::min();
640 std::vector<AbcObjectReader *>::iterator iter;
641 for (iter = data->readers.begin(); iter != data->readers.end(); ++iter) {
642 AbcObjectReader *reader = *iter;
644 if (reader->valid()) {
645 reader->readObjectData(data->bmain, 0.0f);
646 reader->readObjectMatrix(0.0f);
648 min_time = std::min(min_time, reader->minTime());
649 max_time = std::max(max_time, reader->maxTime());
652 std::cerr << "Object " << reader->name() << " in Alembic file " << data->filename << " is invalid.\n";
655 *data->progress = 0.1f + 0.6f * (++i / size);
656 *data->do_update = true;
659 data->was_cancelled = true;
664 if (data->settings.set_frame_range) {
665 Scene *scene = data->scene;
667 if (data->settings.is_sequence) {
668 SFRA = data->settings.offset;
669 EFRA = SFRA + (data->settings.sequence_len - 1);
672 else if (min_time < max_time) {
673 SFRA = static_cast<int>(min_time * FPS);
674 EFRA = static_cast<int>(max_time * FPS);
679 /* Setup parentship. */
682 for (iter = data->readers.begin(); iter != data->readers.end(); ++iter) {
683 const AbcObjectReader *reader = *iter;
684 const AbcObjectReader *parent_reader = NULL;
685 const IObject &iobject = reader->iobject();
687 /* Find the parent reader by going up in the Alembic hierarchy until we find it.
688 * Some Xform Alembic objects do not produce an AbcEmptyReader, since they
689 * translate to a Blender object with a reader attached to the Xform's child. */
690 IObject alembic_parent = iobject.getParent();
692 while (alembic_parent) {
693 parent_reader = reinterpret_cast<AbcObjectReader *>(
694 BLI_ghash_lookup(data->reader_map, alembic_parent.getFullName().c_str()));
695 if (parent_reader != NULL) {
696 break; // found the parent reader.
699 alembic_parent = alembic_parent.getParent();
703 Object *blender_parent = parent_reader->object();
705 if (blender_parent != NULL && reader->object() != blender_parent) {
706 Object *ob = reader->object();
707 ob->parent = blender_parent;
711 *data->progress = 0.7f + 0.3f * (++i / size);
712 *data->do_update = true;
715 data->was_cancelled = true;
721 static void import_endjob(void *user_data)
723 SCOPE_TIMER("Alembic import, cleanup");
725 ImportJobData *data = static_cast<ImportJobData *>(user_data);
727 std::vector<AbcObjectReader *>::iterator iter;
729 /* Delete objects on cancelation. */
730 if (data->was_cancelled) {
731 for (iter = data->readers.begin(); iter != data->readers.end(); ++iter) {
732 Object *ob = (*iter)->object();
735 BKE_libblock_free_us(data->bmain, ob->data);
739 BKE_libblock_free_us(data->bmain, ob);
743 /* Add object to scene. */
744 BKE_scene_base_deselect_all(data->scene);
746 for (iter = data->readers.begin(); iter != data->readers.end(); ++iter) {
747 Object *ob = (*iter)->object();
748 ob->lay = data->scene->lay;
750 BKE_scene_base_add(data->scene, ob);
752 DAG_id_tag_update_ex(data->bmain, &ob->id, OB_RECALC_OB | OB_RECALC_DATA | OB_RECALC_TIME);
755 DAG_relations_tag_update(data->bmain);
758 for (iter = data->readers.begin(); iter != data->readers.end(); ++iter) {
759 AbcObjectReader *reader = *iter;
762 if (reader->refcount() == 0) {
767 if (data->reader_map) {
768 BLI_ghash_free(data->reader_map, NULL, NULL);
771 switch (data->error_code) {
775 case ABC_ARCHIVE_FAIL:
776 WM_report(RPT_ERROR, "Could not open Alembic archive for reading! See console for detail.");
780 WM_main_add_notifier(NC_SCENE | ND_FRAME, data->scene);
783 static void import_freejob(void *user_data)
785 ImportJobData *data = static_cast<ImportJobData *>(user_data);
789 void ABC_import(bContext *C, const char *filepath, float scale, bool is_sequence, bool set_frame_range, int sequence_len, int offset, bool validate_meshes)
791 /* Using new here since MEM_* funcs do not call ctor to properly initialize
793 ImportJobData *job = new ImportJobData();
794 job->bmain = CTX_data_main(C);
795 job->scene = CTX_data_scene(C);
796 BLI_strncpy(job->filename, filepath, 1024);
798 job->settings.scale = scale;
799 job->settings.is_sequence = is_sequence;
800 job->settings.set_frame_range = set_frame_range;
801 job->settings.sequence_len = sequence_len;
802 job->settings.offset = offset;
803 job->settings.validate_meshes = validate_meshes;
804 job->reader_map = NULL;
805 job->error_code = ABC_NO_ERROR;
806 job->was_cancelled = false;
810 wmJob *wm_job = WM_jobs_get(CTX_wm_manager(C),
815 WM_JOB_TYPE_ALEMBIC);
818 WM_jobs_customdata_set(wm_job, job, import_freejob);
819 WM_jobs_timer(wm_job, 0.1, NC_SCENE | ND_FRAME, NC_SCENE | ND_FRAME);
820 WM_jobs_callbacks(wm_job, import_startjob, NULL, NULL, import_endjob);
822 WM_jobs_start(CTX_wm_manager(C), wm_job);
825 /* ************************************************************************** */
827 void ABC_get_transform(CacheReader *reader, float r_mat[4][4], float time, float scale)
833 AbcObjectReader *abc_reader = reinterpret_cast<AbcObjectReader *>(reader);
835 bool is_constant = false;
836 abc_reader->read_matrix(r_mat, time, scale, is_constant);
839 /* ************************************************************************** */
841 DerivedMesh *ABC_read_mesh(CacheReader *reader,
845 const char **err_str,
848 AbcObjectReader *abc_reader = reinterpret_cast<AbcObjectReader *>(reader);
849 IObject iobject = abc_reader->iobject();
851 if (!iobject.valid()) {
852 *err_str = "Invalid object: verify object path";
856 const ObjectHeader &header = iobject.getHeader();
858 if (IPolyMesh::matches(header)) {
859 if (ob->type != OB_MESH) {
860 *err_str = "Object type mismatch: object path points to a mesh!";
864 return abc_reader->read_derivedmesh(dm, time, read_flag, err_str);
866 else if (ISubD::matches(header)) {
867 if (ob->type != OB_MESH) {
868 *err_str = "Object type mismatch: object path points to a subdivision mesh!";
872 return abc_reader->read_derivedmesh(dm, time, read_flag, err_str);
874 else if (IPoints::matches(header)) {
875 if (ob->type != OB_MESH) {
876 *err_str = "Object type mismatch: object path points to a point cloud (requires a mesh object)!";
880 return abc_reader->read_derivedmesh(dm, time, read_flag, err_str);
882 else if (ICurves::matches(header)) {
883 if (ob->type != OB_CURVE) {
884 *err_str = "Object type mismatch: object path points to a curve!";
888 return abc_reader->read_derivedmesh(dm, time, read_flag, err_str);
891 *err_str = "Unsupported object type: verify object path"; // or poke developer
895 /* ************************************************************************** */
897 void CacheReader_free(CacheReader *reader)
899 AbcObjectReader *abc_reader = reinterpret_cast<AbcObjectReader *>(reader);
900 abc_reader->decref();
902 if (abc_reader->refcount() == 0) {
907 CacheReader *CacheReader_open_alembic_object(AbcArchiveHandle *handle, CacheReader *reader, Object *object, const char *object_path)
909 if (object_path[0] == '\0') {
913 ArchiveReader *archive = archive_from_handle(handle);
915 if (!archive || !archive->valid()) {
920 find_iobject(archive->getTop(), iobject, object_path);
923 CacheReader_free(reader);
926 ImportSettings settings;
927 AbcObjectReader *abc_reader = create_reader(iobject, settings);
928 abc_reader->object(object);
929 abc_reader->incref();
931 return reinterpret_cast<CacheReader *>(abc_reader);