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
|
/*=========================================================================
*
* Copyright NumFOCUS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#ifndef itkStreamingImageIOBase_h
#define itkStreamingImageIOBase_h
#include "ITKIOImageBaseExport.h"
#include "itkImageIOBase.h"
#include <fstream>
namespace itk
{
/** \class StreamingImageIOBase
*
* \brief A base class for specific ImageIO file formats which support
* streaming
*
* This class overloads the methods needed to enable streaming. These
* methods are utilized by the ImageFileReader and
* ImageFileWriter. The implementation supports streaming of an
* arbitrary sized region as well as pasting to new or existing file (
* of the same name, size, and pixel type ).
* \sa CanStreamWrite CanStreamRead
* GenerateStreamableReadRegionFromRequestedRegion GetActualNumberOfSplitsForWriting
*
* Additionally low level IO methods are provided to read and write an IORegion from
* a file.
* \sa StreamReadBufferAsBinary StreamWriteBufferAsBinary
*
* This implementation was taken from the Insight Journal:
* https://www.insight-journal.org/browse/publication/729
*
* \sa itk::ImageFileReader itk::ImageFileWriter
* \ingroup IOFilters
* \ingroup ITKIOImageBase
*/
class ITKIOImageBase_EXPORT StreamingImageIOBase : public ImageIOBase
{
public:
ITK_DISALLOW_COPY_AND_MOVE(StreamingImageIOBase);
/** Standard class type aliases. */
using Self = StreamingImageIOBase;
using Superclass = ImageIOBase;
using Pointer = SmartPointer<Self>;
/** \see LightObject::GetNameOfClass() */
itkOverrideGetNameOfClassMacro(StreamingImageIOBase);
// see super class for documentation
//
// overridden to return true
bool
CanStreamWrite() override;
// see super class for documentation
//
// overridden to return true
bool
CanStreamRead() override;
// see super class for documentation
//
// If UseStreamedReading is true, then returned region is the
// requested region parameter.
ImageIORegion
GenerateStreamableReadRegionFromRequestedRegion(const ImageIORegion & requestedRegion) const override;
// see super class for documentation
//
// Verifies the set file name meets the pasting requirements, then calls
// GetActualNumberOfSplitsForWritingCanStreamWrite
unsigned int
GetActualNumberOfSplitsForWriting(unsigned int numberOfRequestedSplits,
const ImageIORegion & pasteRegion,
const ImageIORegion & largestPossibleRegion) override;
protected:
StreamingImageIOBase();
// virtual ~StreamingImageIOBase(); not needed
void
PrintSelf(std::ostream & os, Indent indent) const override;
/** \brief Returns true if GetIORegion() is not the same size as the
* largest region give by GetNumberOfDimensions().
*
* This compares the IORegion to the size of the image in the
* file. With out regard to the dimensions of either, if the
* images represent the same region then false is returned.
*/
virtual bool
RequestedToStream() const;
/** \brief Reimplemented from superclass to get around 2GB
* read/write limitation
*
* \todo Move this method to itk::ImageIOBase
*/
virtual bool
ReadBufferAsBinary(std::istream & is, void * buffer, SizeType num);
/** \brief Reimplemented from super class to get around 2GB
* read/write limitation.
*
* \todo Move this methods to itk::ImageIOBase
*/
virtual bool
WriteBufferAsBinary(std::ostream & os, const void * buffer, SizeType num);
/** \brief Reads the set IORegion from os into buffer
*
* \param file is an istream presumed to be opened for reading in binary
* mode
* \param _buffer is pointer to an allocated block of memory
* suitable to hold the IORegion of the pixel type
*
* This methods relies on GetDataPosition() to determine where the
* data is located in the file. It uses ImageIOBase#m_IORegion to determine the
* requested region to read.
*
* The files data is assumed to be unpadded and continuous in the
* file for the size of the image in the dimensions of the
* ImageIOBase#m_IORegion. This means that the image file could be broken into
* slices, but not blocks for this methods to be used.
*/
virtual bool
StreamReadBufferAsBinary(std::istream & file, void * _buffer);
/** \brief Writes the set IORegion from buffer into os
*
* \param file is an ostream presumed to be opened for writing and
* reading
* \param _buffer is a pointer to the data in a continuous block
* for the region
*
* This methods relies on GetDataPosition() to determine where the data
* is located in the file. It uses ImageIOBase#m_IORegion determine the requested
* region to written.
*/
virtual bool
StreamWriteBufferAsBinary(std::ostream & file, const void * _buffer);
/** \brief Returns the size of the header in the file */
virtual SizeType
GetHeaderSize() const = 0;
/** \brief Returns the byte offset into the file where the data is located
*
* The default implementation is to return the header size.
*/
virtual SizeType
GetDataPosition() const
{
return this->GetHeaderSize();
}
};
} // namespace itk
#endif
|