bioformats  5.1.1
FormatWriter.h
1 /*
2  * #%L
3  * OME-BIOFORMATS C++ library for image IO.
4  * Copyright © 2006 - 2015 Open Microscopy Environment:
5  * - Massachusetts Institute of Technology
6  * - National Institutes of Health
7  * - University of Dundee
8  * - Board of Regents of the University of Wisconsin-Madison
9  * - Glencoe Software, Inc.
10  * %%
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions are met:
13  *
14  * 1. Redistributions of source code must retain the above copyright notice,
15  * this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright notice,
17  * this list of conditions and the following disclaimer in the documentation
18  * and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
24  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  *
32  * The views and conclusions contained in the software and documentation are
33  * those of the authors and should not be interpreted as representing official
34  * policies, either expressed or implied, of any organization.
35  * #L%
36  */
37 
38 #ifndef OME_BIOFORMATS_DETAIL_FORMATWRITER_H
39 #define OME_BIOFORMATS_DETAIL_FORMATWRITER_H
40 
41 #include <ome/bioformats/FormatWriter.h>
42 #include <ome/bioformats/FormatHandler.h>
43 
44 #include <map>
45 
46 namespace ome
47 {
48  namespace bioformats
49  {
50  namespace detail
51  {
52 
57  {
59  typedef std::map<std::string,
60  std::set<ome::xml::model::enums::PixelType> > codec_pixel_type_map;
61 
63  std::string name;
65  std::string description;
67  std::vector<boost::filesystem::path> suffixes;
69  std::vector<boost::filesystem::path> compression_suffixes;
71  std::set<std::string> compression_types;
73  codec_pixel_type_map codec_pixel_types;
75  bool stacks;
76 
83  WriterProperties(const std::string& name,
84  const std::string& description):
85  name(name),
86  description(description),
87  suffixes(),
88  compression_suffixes(),
89  compression_types(),
90  codec_pixel_types(),
91  stacks()
92  {
93  compression_suffixes.push_back(boost::filesystem::path(""));
94  }
95  };
96 
109  virtual public ::ome::bioformats::FormatHandler
110  {
111  protected:
114 
116  boost::optional<boost::filesystem::path> currentId;
117 
119  ome::compat::shared_ptr<std::ostream> out;
120 
123 
126 
128  boost::optional<std::string> compression;
129 
131  boost::optional<bool> interleaved;
132 
135 
138 
143  ome::compat::shared_ptr< ::ome::xml::meta::MetadataRetrieve> metadataRetrieve;
144 
145  protected:
148 
149  private:
151  FormatWriter (const FormatWriter&);
152 
154  FormatWriter&
155  operator= (const FormatWriter&);
156 
157  public:
159  virtual
160  ~FormatWriter();
161 
162  // Documented in superclass.
163  bool
164  isThisType(const boost::filesystem::path& name,
165  bool open = true) const;
166 
167  // Documented in superclass.
168  void
170  const VariantPixelBuffer& buf);
171 
172  // Documented in superclass.
173  void
175  VariantPixelBuffer& buf);
176 
177  // Documented in superclass.
178  void
180  VariantPixelBuffer& buf,
184  dimension_size_type h) = 0;
185 
186  // Documented in superclass.
187  void
188  setSeries(dimension_size_type series) const;
189 
190  // Documented in superclass.
192  getSeries() const;
193 
202  virtual void
203  setPlane(dimension_size_type plane) const;
204 
210  virtual dimension_size_type
211  getPlane() const;
212 
213  // Documented in superclass.
214  bool
215  canDoStacks() const;
216 
217  // Documented in superclass.
218  void
219  setMetadataRetrieve(ome::compat::shared_ptr< ::ome::xml::meta::MetadataRetrieve>& retrieve);
220 
221  // Documented in superclass.
222  const ome::compat::shared_ptr< ::ome::xml::meta::MetadataRetrieve>&
223  getMetadataRetrieve() const;
224 
225  // Documented in superclass.
226  ome::compat::shared_ptr< ::ome::xml::meta::MetadataRetrieve>&
228 
234  virtual
236  getImageCount() const;
237 
248  virtual
249  bool
250  isRGB(dimension_size_type channel) const;
251 
257  virtual
259  getSizeX() const;
260 
266  virtual
268  getSizeY() const;
269 
275  virtual
277  getSizeZ() const;
278 
284  virtual
286  getSizeT() const;
287 
293  virtual
295  getSizeC() const;
296 
302  virtual
304  getPixelType() const;
305 
315  virtual
317  getBitsPerPixel() const;
318 
330  virtual
332  getEffectiveSizeC() const;
333 
345  virtual
348 
352  virtual
353  const std::string&
354  getDimensionOrder() const;
355 
359  virtual
363  dimension_size_type t) const;
364 
368  virtual
369  ome::compat::array<dimension_size_type, 3>
370  getZCTCoords(dimension_size_type index) const;
371 
372  // Documented in superclass.
373  void
375 
376  // Documented in superclass.
378  getFramesPerSecond() const;
379 
380  // Documented in superclass.
381  const std::set<ome::xml::model::enums::PixelType>&
382  getPixelTypes() const;
383 
384  // Documented in superclass.
385  const std::set<ome::xml::model::enums::PixelType>&
386  getPixelTypes(const std::string& codec) const;
387 
388  // Documented in superclass.
389  bool
391 
392  // Documented in superclass.
393  bool
395  const std::string& codec) const;
396 
397  // Documented in superclass.
398  const std::set<std::string>&
399  getCompressionTypes() const ;
400 
401  // Documented in superclass.
402  void
403  setCompression(const std::string& compression);
404 
405  // Documented in superclass.
406  const boost::optional<std::string>&
407  getCompression() const;
408 
409  // Documented in superclass.
410  void
411  setInterleaved(bool interleaved);
412 
413  // Documented in superclass.
414  const boost::optional<bool>&
415  getInterleaved() const;
416 
417  // Documented in superclass.
418  void
419  changeOutputFile(const boost::filesystem::path& id);
420 
421  // Documented in superclass.
422  void
423  setWriteSequentially(bool sequential = true);
424 
425  // Documented in superclass.
426  bool
427  getWriteSequentially() const;
428 
429  // Documented in superclass.
430  void
431  setId(const boost::filesystem::path& id);
432 
433  // Documented in superclass.
434  void
435  close(bool fileOnly = false);
436 
437  // Documented in superclass.
438  const std::string&
439  getFormat() const;
440 
441  // Documented in superclass.
442  const std::string&
443  getFormatDescription() const;
444 
445  // Documented in superclass.
446  const std::vector<boost::filesystem::path>&
447  getSuffixes() const;
448 
449  // Documented in superclass.
450  const std::vector<boost::filesystem::path>&
451  getCompressionSuffixes() const;
452  };
453 
454  }
455  }
456 }
457 
458 #endif // OME_BIOFORMATS_DETAIL_FORMATWRITER_H
459 
460 /*
461  * Local Variables:
462  * mode:C++
463  * End:
464  */
void setSeries(dimension_size_type series) const
Set the active series.
Definition: FormatWriter.cpp:165
bool getWriteSequentially() const
Check if planes are written sequentially.
Definition: FormatWriter.cpp:319
void setLookupTable(dimension_size_type plane, const VariantPixelBuffer &buf)
Set the color lookup table associated with the current series.
Definition: FormatWriter.cpp:145
virtual ~FormatWriter()
Destructor.
Definition: FormatWriter.cpp:95
codec_pixel_type_map codec_pixel_types
Supported pixel types.
Definition: FormatWriter.h:73
uint32_t pixel_size_type
Size type for pixel bit depths.
Definition: Types.h:62
WriterProperties(const std::string &name, const std::string &description)
Constructor.
Definition: FormatWriter.h:83
const std::set< ome::xml::model::enums::PixelType > & getPixelTypes() const
Get supported pixel types.
Definition: FormatWriter.cpp:241
Interface for all biological file format readers and writers.
Definition: FormatHandler.h:64
virtual pixel_size_type getBitsPerPixel() const
Get the number of valid bits per pixel.
Definition: FormatWriter.cpp:417
boost::optional< bool > interleaved
Subchannel interleaving enabled.
Definition: FormatWriter.h:131
virtual dimension_size_type getImageCount() const
Determine the number of image planes in the current series.
Definition: FormatWriter.cpp:348
virtual dimension_size_type getSizeZ() const
Get the size of the Z dimension.
Definition: FormatWriter.cpp:380
bool sequential
Planes are written sequentially.
Definition: FormatWriter.h:134
const std::vector< boost::filesystem::path > & getCompressionSuffixes() const
Get the default compression suffixes for this file format.
Definition: FormatWriter.cpp:507
virtual dimension_size_type getPlane() const
Get the active plane.
Definition: FormatWriter.cpp:222
const WriterProperties & writerProperties
Writer properties specific to the derived file format.
Definition: FormatWriter.h:113
virtual dimension_size_type getIndex(dimension_size_type z, dimension_size_type c, dimension_size_type t) const
Get the linear index of a Z, C and T coordinate.
Definition: FormatWriter.cpp:463
virtual dimension_size_type getSizeC() const
Get the size of the C dimension.
Definition: FormatWriter.cpp:400
const boost::optional< bool > & getInterleaved() const
Set subchannel interleaving.
Definition: FormatWriter.cpp:299
const std::vector< boost::filesystem::path > & getSuffixes() const
Get the default file suffixes for this file format.
Definition: FormatWriter.cpp:501
std::vector< boost::filesystem::path > compression_suffixes
Filename compression suffixes this format can handle.
Definition: FormatWriter.h:69
void saveBytes(dimension_size_type plane, VariantPixelBuffer &buf)
Save an image plane.
Definition: FormatWriter.cpp:154
Interface for all biological file format writers (default behaviour).
Definition: FormatWriter.h:108
uint16_t frame_rate_type
Frame rate type.
Definition: FormatWriter.h:86
Interface for all biological file format writers.
Definition: FormatWriter.h:82
virtual dimension_size_type getSizeT() const
Get the size of the T dimension.
Definition: FormatWriter.cpp:390
dimension_size_type series
Current series.
Definition: FormatWriter.h:122
bool isThisType(const boost::filesystem::path &name, bool open=true) const
Check if the given file is a valid instance of this file format.
Definition: FormatWriter.cpp:136
FormatWriter & operator=(const FormatWriter &)
Assignment operator (deleted).
std::set< std::string > compression_types
Supported compression types.
Definition: FormatWriter.h:71
void setFramesPerSecond(frame_rate_type rate)
Set the frame rate to use when writing.
Definition: FormatWriter.cpp:229
virtual dimension_size_type getEffectiveSizeC() const
Get the effective size of the C dimension.
Definition: FormatWriter.cpp:424
virtual ome::compat::array< dimension_size_type, 3 > getZCTCoords(dimension_size_type index) const
Get the Z, C and T coordinate of a linear index.
Definition: FormatWriter.cpp:477
virtual bool isRGB(dimension_size_type channel) const
Does a channel contain subchannels?
Definition: FormatWriter.cpp:354
virtual dimension_size_type getRGBChannelCount(dimension_size_type channel) const
Get the number of channels required for a call to saveBytes().
Definition: FormatWriter.cpp:437
std::vector< boost::filesystem::path > suffixes
Filename suffixes this format can handle.
Definition: FormatWriter.h:67
Open Microscopy Environment C++ implementation.
Definition: CoreMetadata.cpp:40
virtual const std::string & getDimensionOrder() const
Get the dimension order.
Definition: FormatWriter.cpp:456
void close(bool fileOnly=false)
Close the currently open file.
Definition: FormatWriter.cpp:119
bool stacks
Stacks are supported.
Definition: FormatWriter.h:75
void changeOutputFile(const boost::filesystem::path &id)
Switch the output file for the current dataset.
Definition: FormatWriter.cpp:305
bool canDoStacks() const
Get whether or not the writer can save multiple images in a single file.
Definition: FormatWriter.cpp:519
const std::set< std::string > & getCompressionTypes() const
Get supported compression types.
Definition: FormatWriter.cpp:513
void setMetadataRetrieve(ome::compat::shared_ptr< ::ome::xml::meta::MetadataRetrieve > &retrieve)
Set the default metadata store for this writer.
Definition: FormatWriter.cpp:325
dimension_size_type getSeries() const
Get the active series.
Definition: FormatWriter.cpp:190
std::string description
Format description.
Definition: FormatWriter.h:65
frame_rate_type getFramesPerSecond() const
Get the frame rate to use when writing.
Definition: FormatWriter.cpp:235
const std::string & getFormat() const
Get the name of this file format.
Definition: FormatWriter.cpp:489
PixelType enumeration.
Definition: PixelType.h:70
virtual void setPlane(dimension_size_type plane) const
Set the active plane.
Definition: FormatWriter.cpp:198
const ome::compat::shared_ptr< ::ome::xml::meta::MetadataRetrieve > & getMetadataRetrieve() const
Get the current metadata store for this writer.
Definition: FormatWriter.cpp:336
dimension_size_type plane
Current plane.
Definition: FormatWriter.h:125
frame_rate_type framesPerSecond
The frames per second to use when writing.
Definition: FormatWriter.h:137
virtual ome::xml::model::enums::PixelType getPixelType() const
Get the pixel type.
Definition: FormatWriter.cpp:410
const std::string & getFormatDescription() const
Get the description of this file format.
Definition: FormatWriter.cpp:495
Buffer for all pixel types.
Definition: VariantPixelBuffer.h:72
void setId(const boost::filesystem::path &id)
Set the current file name.
Definition: FormatWriter.cpp:107
boost::optional< std::string > compression
The compression type to use.
Definition: FormatWriter.h:128
FormatWriter()
Constructor.
Definition: FormatWriter.h:90
std::map< std::string, std::set< ome::xml::model::enums::PixelType > > codec_pixel_type_map
Map of codec to pixel types.
Definition: FormatWriter.h:60
std::string name
Format name.
Definition: FormatWriter.h:63
void setCompression(const std::string &compression)
Set the compression type to use when writing.
Definition: FormatWriter.cpp:273
boost::optional< boost::filesystem::path > currentId
The identifier (path) of the currently open file.
Definition: FormatWriter.h:116
virtual dimension_size_type getSizeY() const
Get the size of the Y dimension.
Definition: FormatWriter.cpp:370
std::size_t dimension_size_type
Size type for image dimensions.
Definition: Types.h:59
bool isSupportedType(ome::xml::model::enums::PixelType type) const
Check if the pixel type is supported.
Definition: FormatWriter.cpp:258
ome::compat::shared_ptr< ::ome::xml::meta::MetadataRetrieve > metadataRetrieve
Current metadata store.
Definition: FormatWriter.h:143
Properties specific to a particular writer.
Definition: FormatWriter.h:56
const boost::optional< std::string > & getCompression() const
Get the compression type to use when writing.
Definition: FormatWriter.cpp:287
virtual dimension_size_type getSizeX() const
Get the size of the X dimension.
Definition: FormatWriter.cpp:360
void setWriteSequentially(bool sequential=true)
Write planes sequentially.
Definition: FormatWriter.cpp:313
void setInterleaved(bool interleaved)
Set subchannel interleaving.
Definition: FormatWriter.cpp:293
ome::compat::shared_ptr< std::ostream > out
Current output.
Definition: FormatWriter.h:119