OpenVDB  6.2.1
io.h
Go to the documentation of this file.
1 //
3 // Copyright (c) DreamWorks Animation LLC
4 //
5 // All rights reserved. This software is distributed under the
6 // Mozilla Public License 2.0 ( http://www.mozilla.org/MPL/2.0/ )
7 //
8 // Redistributions of source code must retain the above copyright
9 // and license notice and the following restrictions and disclaimer.
10 //
11 // * Neither the name of DreamWorks Animation nor the names of
12 // its contributors may be used to endorse or promote products derived
13 // from this software without specific prior written permission.
14 //
15 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY INDIRECT, INCIDENTAL,
20 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 // IN NO EVENT SHALL THE COPYRIGHT HOLDERS' AND CONTRIBUTORS' AGGREGATE
27 // LIABILITY FOR ALL CLAIMS REGARDLESS OF THEIR BASIS EXCEED US$250.00.
28 //
30 
31 #ifndef OPENVDB_IO_IO_HAS_BEEN_INCLUDED
32 #define OPENVDB_IO_IO_HAS_BEEN_INCLUDED
33 
34 #include <openvdb/Platform.h>
35 #include <openvdb/Types.h> // for SharedPtr
36 #include <openvdb/version.h>
37 #include <boost/any.hpp>
38 #include <functional>
39 #include <iosfwd> // for std::ios_base
40 #include <map>
41 #include <memory>
42 #include <string>
43 
44 class TestMappedFile;
45 
46 namespace openvdb {
48 namespace OPENVDB_VERSION_NAME {
49 
50 class MetaMap;
51 
52 namespace io {
53 
58 {
59 public:
62 
65  explicit StreamMetadata(std::ios_base&);
66  ~StreamMetadata();
67 
68  StreamMetadata& operator=(const StreamMetadata&);
69 
72  void transferTo(std::ios_base&) const;
73 
74  uint32_t fileVersion() const;
75  void setFileVersion(uint32_t);
76 
77  VersionId libraryVersion() const;
78  void setLibraryVersion(VersionId);
79 
80  uint32_t compression() const;
81  void setCompression(uint32_t);
82 
83  uint32_t gridClass() const;
84  void setGridClass(uint32_t);
85 
86  const void* backgroundPtr() const;
87  void setBackgroundPtr(const void*);
88 
89  bool halfFloat() const;
90  void setHalfFloat(bool);
91 
92  bool writeGridStats() const;
93  void setWriteGridStats(bool);
94 
95  bool seekable() const;
96  void setSeekable(bool);
97 
98  bool delayedLoadMeta() const;
99 
100  bool countingPasses() const;
101  void setCountingPasses(bool);
102 
103  uint32_t pass() const;
104  void setPass(uint32_t);
105 
106  uint64_t leaf() const;
107  void setLeaf(uint64_t);
108 
110  MetaMap& gridMetadata();
116  const MetaMap& gridMetadata() const;
118 
119  using AuxDataMap = std::map<std::string, boost::any>;
121  AuxDataMap& auxData();
123  const AuxDataMap& auxData() const;
125 
127  uint32_t __test() const;
129  void __setTest(uint32_t);
130 
132  std::string str() const;
133 
134 private:
135  struct Impl;
136  std::unique_ptr<Impl> mImpl;
137 }; // class StreamMetadata
138 
139 
141 std::ostream& operator<<(std::ostream&, const StreamMetadata&);
142 
143 std::ostream& operator<<(std::ostream&, const StreamMetadata::AuxDataMap&);
144 
145 
147 
148 
151 struct MultiPass {};
152 
153 
155 
156 
157 class File;
158 
161 {
162 public:
164 
165  ~MappedFile();
166  MappedFile(const MappedFile&) = delete; // not copyable
167  MappedFile& operator=(const MappedFile&) = delete;
168 
170  std::string filename() const;
171 
181  SharedPtr<std::streambuf> createBuffer() const;
182 
183  using Notifier = std::function<void(std::string /*filename*/)>;
186  void setNotifier(const Notifier&);
188  void clearNotifier();
189 
190 private:
191  friend class File;
192  friend class ::TestMappedFile;
193 
194  explicit MappedFile(const std::string& filename, bool autoDelete = false);
195 
196  class Impl;
197  std::unique_ptr<Impl> mImpl;
198 }; // class MappedFile
199 
200 
202 
203 
205 std::string getErrorString(int errorNum);
206 
207 
209 std::string getErrorString();
210 
211 
213 
214 
217 OPENVDB_API uint32_t getFormatVersion(std::ios_base&);
218 
221 OPENVDB_API VersionId getLibraryVersion(std::ios_base&);
222 
225 OPENVDB_API std::string getVersion(std::ios_base&);
226 
228 OPENVDB_API void setCurrentVersion(std::istream&);
229 
233 OPENVDB_API void setVersion(std::ios_base&, const VersionId& libraryVersion, uint32_t fileVersion);
234 
238 OPENVDB_API uint32_t getDataCompression(std::ios_base&);
242 OPENVDB_API void setDataCompression(std::ios_base&, uint32_t compressionFlags);
243 
246 OPENVDB_API uint32_t getGridClass(std::ios_base&);
249 OPENVDB_API void setGridClass(std::ios_base&, uint32_t);
250 
253 OPENVDB_API bool getHalfFloat(std::ios_base&);
256 OPENVDB_API void setHalfFloat(std::ios_base&, bool);
257 
260 OPENVDB_API const void* getGridBackgroundValuePtr(std::ios_base&);
264 OPENVDB_API void setGridBackgroundValuePtr(std::ios_base&, const void* background);
265 
268 OPENVDB_API bool getWriteGridStatsMetadata(std::ios_base&);
271 OPENVDB_API void setWriteGridStatsMetadata(std::ios_base&, bool writeGridStats);
272 
279 OPENVDB_API void setMappedFilePtr(std::ios_base&, SharedPtr<MappedFile>&);
280 
291 OPENVDB_API void setStreamMetadataPtr(std::ios_base&,
292  SharedPtr<StreamMetadata>&, bool transfer = true);
296 
297 } // namespace io
298 } // namespace OPENVDB_VERSION_NAME
299 } // namespace openvdb
300 
301 #endif // OPENVDB_IO_IO_HAS_BEEN_INCLUDED
302 
303 // Copyright (c) DreamWorks Animation LLC
304 // All rights reserved. This software is distributed under the
305 // Mozilla Public License 2.0 ( http://www.mozilla.org/MPL/2.0/ )
openvdb::v6_2::io::operator<<
std::ostream & operator<<(std::ostream &, const StreamMetadata::AuxDataMap &)
openvdb::v6_2::io::getWriteGridStatsMetadata
OPENVDB_API bool getWriteGridStatsMetadata(std::ios_base &)
Return true if grid statistics (active voxel count and bounding box, etc.) should be computed and sto...
openvdb::v6_2::io::StreamMetadata::ConstPtr
SharedPtr< const StreamMetadata > ConstPtr
Definition: io.h:61
Types.h
openvdb::v6_2::io::getGridBackgroundValuePtr
const OPENVDB_API void * getGridBackgroundValuePtr(std::ios_base &)
Return a pointer to the background value of the grid currently being read from or written to the give...
openvdb::v6_2::io::getLibraryVersion
OPENVDB_API VersionId getLibraryVersion(std::ios_base &)
Return the (major, minor) library version number associated with the given input stream.
openvdb::v6_2::io::StreamMetadata
Container for metadata describing how to unserialize grids from and/or serialize grids to a stream (w...
Definition: io.h:57
openvdb::v6_2::io::setGridClass
OPENVDB_API void setGridClass(std::ios_base &, uint32_t)
Associate with the given stream the class (GRID_LEVEL_SET, GRID_UNKNOWN, etc.) of the grid currently ...
openvdb::v6_2::io::setVersion
OPENVDB_API void setVersion(std::ios_base &, const VersionId &libraryVersion, uint32_t fileVersion)
Associate specific file format and library version numbers with the given stream.
openvdb::v6_2::io::getMappedFilePtr
OPENVDB_API SharedPtr< MappedFile > getMappedFilePtr(std::ios_base &)
Return a shared pointer to the memory-mapped file with which the given stream is associated,...
openvdb::v6_2::io::StreamMetadata::Ptr
SharedPtr< StreamMetadata > Ptr
Definition: io.h:60
version.h
Library and file format version numbers.
Platform.h
openvdb::v6_2::io::StreamMetadata::AuxDataMap
std::map< std::string, boost::any > AuxDataMap
Definition: io.h:119
openvdb::v6_2::io::getHalfFloat
OPENVDB_API bool getHalfFloat(std::ios_base &)
Return true if floating-point values should be quantized to 16 bits when writing to the given stream ...
openvdb::v6_2::MetaMap
Container that maps names (strings) to values of arbitrary types.
Definition: MetaMap.h:46
openvdb::v6_2::io::setWriteGridStatsMetadata
OPENVDB_API void setWriteGridStatsMetadata(std::ios_base &, bool writeGridStats)
Specify whether to compute grid statistics (active voxel count and bounding box, etc....
OPENVDB_API
#define OPENVDB_API
Helper macros for defining library symbol visibility.
Definition: Platform.h:288
openvdb::v6_2::SharedPtr
std::shared_ptr< T > SharedPtr
Definition: Types.h:139
openvdb::v6_2::VersionId
Definition: version.h:236
openvdb::v6_2::io::setGridBackgroundValuePtr
OPENVDB_API void setGridBackgroundValuePtr(std::ios_base &, const void *background)
Specify (a pointer to) the background value of the grid currently being read from or written to the g...
openvdb::v6_2::io::MappedFile::Notifier
std::function< void(std::string)> Notifier
Definition: io.h:183
openvdb::v6_2::io::getGridClass
OPENVDB_API uint32_t getGridClass(std::ios_base &)
Return the class (GRID_LEVEL_SET, GRID_UNKNOWN, etc.) of the grid currently being read from or writte...
openvdb::v6_2::io::getDataCompression
OPENVDB_API uint32_t getDataCompression(std::ios_base &)
Return a bitwise OR of compression option flags (COMPRESS_ZIP, COMPRESS_ACTIVE_MASK,...
openvdb::v6_2::io::MappedFile
Handle to control the lifetime of a memory-mapped .vdb file.
Definition: io.h:160
openvdb::v6_2::io::clearStreamMetadataPtr
OPENVDB_API SharedPtr< StreamMetadata > clearStreamMetadataPtr(std::ios_base &)
Dissociate the given stream from its metadata object (if it has one) and return a shared pointer to t...
openvdb::v6_2::io::File
Grid archive associated with a file on disk.
Definition: File.h:57
openvdb::v6_2::io::setMappedFilePtr
OPENVDB_API void setMappedFilePtr(std::ios_base &, SharedPtr< MappedFile > &)
Associate the given stream with (a shared pointer to) a memory-mapped file.
openvdb::v6_2::io::getErrorString
std::string getErrorString()
Return a string (possibly empty) describing the most recent system error.
OPENVDB_USE_VERSION_NAMESPACE
#define OPENVDB_USE_VERSION_NAMESPACE
Definition: version.h:180
openvdb::v6_2::io::getFormatVersion
OPENVDB_API uint32_t getFormatVersion(std::ios_base &)
Return the file format version number associated with the given input stream.
openvdb::v6_2::io::getStreamMetadataPtr
OPENVDB_API SharedPtr< StreamMetadata > getStreamMetadataPtr(std::ios_base &)
Return a shared pointer to an object that stores metadata (file format, compression scheme,...
openvdb::v6_2::io::setStreamMetadataPtr
OPENVDB_API void setStreamMetadataPtr(std::ios_base &, SharedPtr< StreamMetadata > &, bool transfer=true)
Associate the given stream with (a shared pointer to) an object that stores metadata (file format,...
OPENVDB_VERSION_NAME
#define OPENVDB_VERSION_NAME
Definition: version.h:134
openvdb::v6_2::io::setHalfFloat
OPENVDB_API void setHalfFloat(std::ios_base &, bool)
Specify whether floating-point values should be quantized to 16 bits when writing to the given stream...
openvdb
Definition: Exceptions.h:40
openvdb::v6_2::io::setCurrentVersion
OPENVDB_API void setCurrentVersion(std::istream &)
Associate the current file format and library version numbers with the given input stream.
openvdb::v6_2::io::setDataCompression
OPENVDB_API void setDataCompression(std::ios_base &, uint32_t compressionFlags)
Associate with the given stream a bitwise OR of compression option flags (COMPRESS_ZIP,...
openvdb::v6_2::io::getVersion
OPENVDB_API std::string getVersion(std::ios_base &)
Return a string of the form "<major>.<minor>/<format>", giving the library and file format version nu...
openvdb::v6_2::io::MappedFile::Ptr
SharedPtr< MappedFile > Ptr
Definition: io.h:163
openvdb::v6_2::io::MultiPass
Leaf nodes that require multi-pass I/O must inherit from this struct.
Definition: io.h:151