OpenVDB 11.0.0
Loading...
Searching...
No Matches
io.h
Go to the documentation of this file.
1// Copyright Contributors to the OpenVDB Project
2// SPDX-License-Identifier: MPL-2.0
3
4#ifndef OPENVDB_IO_IO_HAS_BEEN_INCLUDED
5#define OPENVDB_IO_IO_HAS_BEEN_INCLUDED
6
7#include <openvdb/Platform.h>
8#include <openvdb/Types.h> // for SharedPtr
9#include <openvdb/version.h>
10#include <any>
11#include <functional>
12#include <iosfwd> // for std::ios_base
13#include <map>
14#include <memory>
15#include <string>
16
17class TestMappedFile;
18
19namespace openvdb {
21namespace OPENVDB_VERSION_NAME {
22
23class MetaMap;
24
25namespace io {
26
27/// @brief Container for metadata describing how to unserialize grids from and/or
28/// serialize grids to a stream (which file format, compression scheme, etc. to use)
29/// @details This class is mainly for internal use.
31{
32public:
35
38 explicit StreamMetadata(std::ios_base&);
40
42
43 /// @brief Transfer metadata items directly to the given stream.
44 /// @todo Deprecate direct transfer; use StreamMetadata structs everywhere.
45 void transferTo(std::ios_base&) const;
46
47 uint32_t fileVersion() const;
48 void setFileVersion(uint32_t);
49
52
53 uint32_t compression() const;
54 void setCompression(uint32_t);
55
56 uint32_t gridClass() const;
57 void setGridClass(uint32_t);
58
59 const void* backgroundPtr() const;
60 void setBackgroundPtr(const void*);
61
62 bool halfFloat() const;
63 void setHalfFloat(bool);
64
65 bool writeGridStats() const;
67
68 bool seekable() const;
69 void setSeekable(bool);
70
71 bool delayedLoadMeta() const;
72
73 bool countingPasses() const;
75
76 uint32_t pass() const;
77 void setPass(uint32_t);
78
79 uint64_t leaf() const;
80 void setLeaf(uint64_t);
81
82 //@{
83 /// @brief Return a (reference to a) copy of the metadata of the grid
84 /// currently being read or written.
85 /// @details Some grid metadata might duplicate information returned by
86 /// gridClass(), backgroundPtr() and other accessors, but those values
87 /// are not guaranteed to be kept in sync.
89 const MetaMap& gridMetadata() const;
90 //@}
91
92 using AuxDataMap = std::map<std::string, std::any>;
93 //@{
94 /// @brief Return a map that can be populated with arbitrary user data.
96 const AuxDataMap& auxData() const;
97 //@}
98
99 /// @private
100 uint32_t __test() const;
101 /// @private
102 void __setTest(uint32_t);
103
104 /// Return a string describing this stream metadata.
105 std::string str() const;
106
107private:
108 struct Impl;
109 std::unique_ptr<Impl> mImpl;
110}; // class StreamMetadata
111
112
113/// Write a description of the given metadata to an output stream.
114std::ostream& operator<<(std::ostream&, const StreamMetadata&);
115
116std::ostream& operator<<(std::ostream&, const StreamMetadata::AuxDataMap&);
117
118
119////////////////////////////////////////
120
121
122/// @brief Leaf nodes that require multi-pass I/O must inherit from this struct.
123/// @sa Grid::hasMultiPassIO()
124struct MultiPass {};
125
126
127////////////////////////////////////////
128
129
130class File;
131
132#ifdef OPENVDB_USE_DELAYED_LOADING
133
134/// @brief Handle to control the lifetime of a memory-mapped .vdb file
135class OPENVDB_API MappedFile
136{
137public:
138 using Ptr = SharedPtr<MappedFile>;
139
140 ~MappedFile();
141 MappedFile(const MappedFile&) = delete; // not copyable
142 MappedFile& operator=(const MappedFile&) = delete;
143
144 /// Return the filename of the mapped file.
145 std::string filename() const;
146
147 /// @brief Return a new stream buffer for the mapped file.
148 /// @details Typical usage is
149 /// @code
150 /// openvdb::io::MappedFile::Ptr mappedFile = ...;
151 /// auto buf = mappedFile->createBuffer();
152 /// std::istream istrm{buf.get()};
153 /// // Read from istrm...
154 /// @endcode
155 /// The buffer must persist as long as the stream is open.
156 SharedPtr<std::streambuf> createBuffer() const;
157
158 using Notifier = std::function<void(std::string /*filename*/)>;
159 /// @brief Register a function that will be called with this file's name
160 /// when the file is unmapped.
161 void setNotifier(const Notifier&);
162 /// Deregister the notifier.
163 void clearNotifier();
164
165private:
166 friend class File;
167 friend class ::TestMappedFile;
168
169 explicit MappedFile(const std::string& filename, bool autoDelete = false);
170
171 class Impl;
172 std::unique_ptr<Impl> mImpl;
173}; // class MappedFile
174
175#endif // OPENVDB_USE_DELAYED_LOADING
176
177////////////////////////////////////////
178
179
180/// Return a string (possibly empty) describing the given system error code.
181std::string getErrorString(int errorNum);
182
183
184/// Return a string (possibly empty) describing the most recent system error.
185std::string getErrorString();
186
187
188////////////////////////////////////////
189
190
191/// @brief Return the file format version number associated with the given input stream.
192/// @sa File::setFormatVersion()
193OPENVDB_API uint32_t getFormatVersion(std::ios_base&);
194
195/// @brief Return the (major, minor) library version number associated with the given input stream.
196/// @sa File::setLibraryVersion()
198
199/// @brief Return a string of the form "<major>.<minor>/<format>", giving the library
200/// and file format version numbers associated with the given input stream.
201OPENVDB_API std::string getVersion(std::ios_base&);
202
203/// Associate the current file format and library version numbers with the given input stream.
204OPENVDB_API void setCurrentVersion(std::istream&);
205
206/// @brief Associate specific file format and library version numbers with the given stream.
207/// @details This is typically called immediately after reading a header that contains
208/// the version numbers. Data read subsequently can then be interpreted appropriately.
209OPENVDB_API void setVersion(std::ios_base&, const VersionId& libraryVersion, uint32_t fileVersion);
210
211/// @brief Return a bitwise OR of compression option flags (COMPRESS_ZIP,
212/// COMPRESS_ACTIVE_MASK, etc.) specifying whether and how input data is compressed
213/// or output data should be compressed.
214OPENVDB_API uint32_t getDataCompression(std::ios_base&);
215/// @brief Associate with the given stream a bitwise OR of compression option flags
216/// (COMPRESS_ZIP, COMPRESS_ACTIVE_MASK, etc.) specifying whether and how input data
217/// is compressed or output data should be compressed.
218OPENVDB_API void setDataCompression(std::ios_base&, uint32_t compressionFlags);
219
220/// @brief Return the class (GRID_LEVEL_SET, GRID_UNKNOWN, etc.) of the grid
221/// currently being read from or written to the given stream.
222OPENVDB_API uint32_t getGridClass(std::ios_base&);
223/// @brief Associate with the given stream the class (GRID_LEVEL_SET, GRID_UNKNOWN, etc.)
224/// of the grid currently being read or written.
225OPENVDB_API void setGridClass(std::ios_base&, uint32_t);
226
227/// @brief Return true if floating-point values should be quantized to 16 bits when writing
228/// to the given stream or promoted back from 16-bit to full precision when reading from it.
229OPENVDB_API bool getHalfFloat(std::ios_base&);
230/// @brief Specify whether floating-point values should be quantized to 16 bits when writing
231/// to the given stream or promoted back from 16-bit to full precision when reading from it.
232OPENVDB_API void setHalfFloat(std::ios_base&, bool);
233
234/// @brief Return a pointer to the background value of the grid
235/// currently being read from or written to the given stream.
236OPENVDB_API const void* getGridBackgroundValuePtr(std::ios_base&);
237/// @brief Specify (a pointer to) the background value of the grid
238/// currently being read from or written to the given stream.
239/// @note The pointer must remain valid until the entire grid has been read or written.
240OPENVDB_API void setGridBackgroundValuePtr(std::ios_base&, const void* background);
241
242/// @brief Return @c true if grid statistics (active voxel count and bounding box, etc.)
243/// should be computed and stored as grid metadata when writing to the given stream.
245/// @brief Specify whether to compute grid statistics (active voxel count and bounding box, etc.)
246/// and store them as grid metadata when writing to the given stream.
247OPENVDB_API void setWriteGridStatsMetadata(std::ios_base&, bool writeGridStats);
248
249#ifdef OPENVDB_USE_DELAYED_LOADING
250/// @brief Return a shared pointer to the memory-mapped file with which the given stream
251/// is associated, or a null pointer if the stream is not associated with a memory-mapped file.
252OPENVDB_API SharedPtr<MappedFile> getMappedFilePtr(std::ios_base&);
253/// @brief Associate the given stream with (a shared pointer to) a memory-mapped file.
254/// @note The shared pointer object (not just the io::MappedFile object to which it points)
255/// must remain valid until the file is closed.
256OPENVDB_API void setMappedFilePtr(std::ios_base&, SharedPtr<MappedFile>&);
257#endif // OPENVDB_USE_DELAYED_LOADING
258
259/// @brief Return a shared pointer to an object that stores metadata (file format,
260/// compression scheme, etc.) for use when reading from or writing to the given stream.
262/// @brief Associate the given stream with (a shared pointer to) an object that stores
263/// metadata (file format, compression scheme, etc.) for use when reading from
264/// or writing to the stream.
265/// @details If @a transfer is true, copy metadata from the object directly to the stream
266/// (for backward compatibility with older versions of the library).
267/// @note The shared pointer object (not just the io::StreamMetadata object to which it points)
268/// must remain valid until the file is closed.
270 SharedPtr<StreamMetadata>&, bool transfer = true);
271/// @brief Dissociate the given stream from its metadata object (if it has one)
272/// and return a shared pointer to the object.
274
275} // namespace io
276} // namespace OPENVDB_VERSION_NAME
277} // namespace openvdb
278
279#endif // OPENVDB_IO_IO_HAS_BEEN_INCLUDED
#define OPENVDB_API
Definition Platform.h:274
Container that maps names (strings) to values of arbitrary types.
Definition MetaMap.h:20
Grid archive associated with a file on disk.
Definition File.h:31
Container for metadata describing how to unserialize grids from and/or serialize grids to a stream (w...
Definition io.h:31
std::map< std::string, std::any > AuxDataMap
Definition io.h:92
StreamMetadata & operator=(const StreamMetadata &)
SharedPtr< const StreamMetadata > ConstPtr
Definition io.h:34
SharedPtr< StreamMetadata > Ptr
Definition io.h:33
MetaMap & gridMetadata()
Return a (reference to a) copy of the metadata of the grid currently being read or written.
const void * backgroundPtr() const
const AuxDataMap & auxData() const
AuxDataMap & auxData()
Return a map that can be populated with arbitrary user data.
void setBackgroundPtr(const void *)
void transferTo(std::ios_base &) const
Transfer metadata items directly to the given stream.
StreamMetadata(const StreamMetadata &)
const MetaMap & gridMetadata() const
std::string str() const
Return a string describing this stream metadata.
OPENVDB_API uint32_t getDataCompression(std::ios_base &)
Return a bitwise OR of compression option flags (COMPRESS_ZIP, COMPRESS_ACTIVE_MASK,...
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_API void setCurrentVersion(std::istream &)
Associate the current file format and library version numbers with the given input stream.
OPENVDB_API uint32_t getFormatVersion(std::ios_base &)
Return the file format version number associated with the given input stream.
OPENVDB_API VersionId getLibraryVersion(std::ios_base &)
Return the (major, minor) library version number associated with the given input stream.
std::string getErrorString(int errorNum)
Return a string (possibly empty) describing the given system error code.
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_API bool getWriteGridStatsMetadata(std::ios_base &)
Return true if grid statistics (active voxel count and bounding box, etc.) should be computed and sto...
OPENVDB_API void setWriteGridStatsMetadata(std::ios_base &, bool writeGridStats)
Specify whether to compute grid statistics (active voxel count and bounding box, etc....
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_API const 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_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_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_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_API SharedPtr< StreamMetadata > getStreamMetadataPtr(std::ios_base &)
Return a shared pointer to an object that stores metadata (file format, compression scheme,...
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_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_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_API void setDataCompression(std::ios_base &, uint32_t compressionFlags)
Associate with the given stream a bitwise OR of compression option flags (COMPRESS_ZIP,...
std::ostream & operator<<(std::ostream &ostr, const Metadata &metadata)
Write a Metadata to an output stream.
Definition Metadata.h:351
std::shared_ptr< T > SharedPtr
Definition Types.h:114
Definition Exceptions.h:13
Definition version.h.in:273
Leaf nodes that require multi-pass I/O must inherit from this struct.
Definition io.h:124
#define OPENVDB_VERSION_NAME
The version namespace name for this library version.
Definition version.h.in:121
#define OPENVDB_USE_VERSION_NAMESPACE
Definition version.h.in:212