-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathIECoreVDBModule.cpp
193 lines (162 loc) · 6.09 KB
/
IECoreVDBModule.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
//////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2017, Image Engine Design. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above
// copyright notice, this list of conditions and the following
// disclaimer.
//
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following
// disclaimer in the documentation and/or other materials provided with
// the distribution.
//
// * Neither the name of Image Engine Design nor the names of
// any other contributors to this software may be used to endorse or
// promote products derived from this software without specific prior
// written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
//////////////////////////////////////////////////////////////////////////
#include "boost/python.hpp"
#include "IECorePython/RefCountedBinding.h"
#include "IECorePython/RunTimeTypedBinding.h"
#include "IECoreVDB/VDBObject.h"
// OpenVDB 10.0 and earlier used `boost::python` for its Python bindings, but
// this was switched to PyBind11 in OpenVDB 10.1. We need to take a different
// approach to binding VDBObject's grid accessors in each case.
#if OPENVDB_LIBRARY_MAJOR_VERSION_NUMBER > 10 || OPENVDB_LIBRARY_MAJOR_VERSION_NUMBER == 10 && OPENVDB_LIBRARY_MINOR_VERSION_NUMBER >= 1
#include "IECorePython/PyBindConverter.h"
#define IECOREVDB_USE_PYBIND
#endif
using namespace boost::python;
using namespace IECoreVDB;
#ifndef IECOREVDB_USE_PYBIND
namespace
{
// all functions in iepyopenvdb namespace are from the pyopenvdb bindings
namespace iepyopenvdb
{
// openvdb/python/pyutil.h
std::string className( boost::python::object obj )
{
std::string s = boost::python::extract<std::string>( obj.attr( "__class__" ).attr( "__name__" ) );
return s;
}
// openvdb/python/pyGrid.h
boost::python::object getPyObjectFromGrid( const openvdb::GridBase::Ptr &grid )
{
if( !grid )
{
return boost::python::object();
}
#define CONVERT_BASE_TO_GRID( GridType, grid ) \
if (grid->isType<GridType>()) { \
return boost::python::object(openvdb::gridPtrCast<GridType>(grid)); \
}
CONVERT_BASE_TO_GRID( openvdb::FloatGrid, grid );
CONVERT_BASE_TO_GRID( openvdb::Vec3SGrid, grid );
CONVERT_BASE_TO_GRID( openvdb::BoolGrid, grid );
CONVERT_BASE_TO_GRID( openvdb::DoubleGrid, grid );
CONVERT_BASE_TO_GRID( openvdb::Int32Grid, grid );
CONVERT_BASE_TO_GRID( openvdb::Int64Grid, grid );
CONVERT_BASE_TO_GRID( openvdb::Vec3IGrid, grid );
CONVERT_BASE_TO_GRID( openvdb::Vec3DGrid, grid );
#undef CONVERT_BASE_TO_GRID
throw openvdb::TypeError( grid->type() + " is not a supported OpenVDB grid type" );
}
// openvdb/python/pyGrid.h
openvdb::GridBase::Ptr getGridFromPyObject( const boost::python::object &gridObj )
{
if( !gridObj )
{
return openvdb::GridBase::Ptr();
}
#define CONVERT_GRID_TO_BASE( GridPtrType ) \
{ \
boost::python::extract<GridPtrType> x(gridObj); \
if (x.check()) return x(); \
}
// Extract a grid pointer of one of the supported types
// from the input object, then cast it to a base pointer.
CONVERT_GRID_TO_BASE( openvdb::FloatGrid::Ptr );
CONVERT_GRID_TO_BASE( openvdb::Vec3SGrid::Ptr );
CONVERT_GRID_TO_BASE( openvdb::BoolGrid::Ptr );
CONVERT_GRID_TO_BASE( openvdb::DoubleGrid::Ptr );
CONVERT_GRID_TO_BASE( openvdb::Int32Grid::Ptr );
CONVERT_GRID_TO_BASE( openvdb::Int64Grid::Ptr );
CONVERT_GRID_TO_BASE( openvdb::Vec3IGrid::Ptr );
CONVERT_GRID_TO_BASE( openvdb::Vec3DGrid::Ptr );
#undef CONVERT_GRID_TO_BASE
throw openvdb::TypeError( className( gridObj ) + " is not a supported OpenVDB grid type" );
}
} // namespace iepyopenvdb
boost::python::object findGrid( VDBObject::Ptr vdbObject, const std::string &gridName )
{
openvdb::GridBase::Ptr grid = vdbObject->findGrid( gridName );
if( grid )
{
return iepyopenvdb::getPyObjectFromGrid( grid );
}
else
{
return boost::python::object();
}
}
void insertGrid( VDBObject::Ptr vdbObject, boost::python::object pyObject )
{
openvdb::GridBase::Ptr gridPtr = iepyopenvdb::getGridFromPyObject( pyObject );
vdbObject->insertGrid( gridPtr );
}
} // namespace
#endif // #ifndef IECOREVDB_USE_PYBIND
namespace
{
boost::python::list gridNames( VDBObject::Ptr vdbObject )
{
boost::python::list result;
std::vector<std::string> names = vdbObject->gridNames();
for( const auto &name : names )
{
result.append( name );
}
return result;
}
} // namespace
BOOST_PYTHON_MODULE( _IECoreVDB )
{
#ifdef IECOREVDB_USE_PYBIND
IECorePython::PyBindConverter<openvdb::GridBase::Ptr>::registerConverters();
#endif
IECorePython::RunTimeTypedClass<VDBObject>()
.def(init<const std::string &>())
.def(init<>())
.def("gridNames", &::gridNames)
.def("metadata", &VDBObject::metadata)
.def("removeGrid", &VDBObject::removeGrid)
#ifdef IECOREVDB_USE_PYBIND
.def( "findGrid", (openvdb::GridBase::Ptr (VDBObject::*)( const std::string &name ))&VDBObject::findGrid )
.def( "insertGrid", &VDBObject::insertGrid )
#else
.def("findGrid", &::findGrid)
.def("insertGrid", &::insertGrid)
#endif
.def("unmodifiedFromFile", &VDBObject::unmodifiedFromFile)
.def("fileName", &VDBObject::fileName)
;
}