// // Copyright 2007-2008 Andreas Pokorny, Christian Henning // // Distributed under the Boost Software License, Version 1.0 // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt // #ifndef BOOST_GIL_EXTENSION_IO_TIFF_DETAIL_DEVICE_HPP #define BOOST_GIL_EXTENSION_IO_TIFF_DETAIL_DEVICE_HPP #include #include #include #include #include #include #include #include #include // taken from jpegxx - https://bitbucket.org/edd/jpegxx/src/ea2492a1a4a6/src/ijg_headers.hpp #ifndef BOOST_GIL_EXTENSION_IO_TIFF_C_LIB_COMPILED_AS_CPLUSPLUS extern "C" { #endif #include #include #ifndef BOOST_GIL_EXTENSION_IO_TIFF_C_LIB_COMPILED_AS_CPLUSPLUS } #endif #include namespace boost { namespace gil { namespace detail { template struct get_property_f { template bool call_me(typename Property:: type& value, std::shared_ptr& file); }; template struct set_property_f { template bool call_me(const typename Property:: type& value, std::shared_ptr& file) const; }; template <> struct get_property_f <1> { // For single-valued properties template bool call_me(typename Property::type & value, std::shared_ptr& file) const { // @todo: defaulted, really? return (1 == TIFFGetFieldDefaulted( file.get() , Property:: tag , & value)); } }; template <> struct get_property_f <2> { // Specialisation for multi-valued properties. @todo: add one of // these for the three-parameter fields too. template bool call_me(typename Property::type& vs, std::shared_ptr& file) const { mp11::mp_at> length; mp11::mp_at> pointer; if (1 == TIFFGetFieldDefaulted(file.get(), Property:: tag, & length, & pointer)) { std:: copy_n(static_cast(pointer), length, std:: back_inserter(vs)); return true; } else return false; } }; template <> struct set_property_f <1> { // For single-valued properties template inline bool call_me(typename Property:: type const & value, std::shared_ptr& file) const { return (1 == TIFFSetField( file.get() , Property:: tag , value)); } }; template <> struct set_property_f <2> { // Specialisation for multi-valued properties. @todo: add one // of these for the three-parameter fields too. Actually we // will need further templation / specialisation for the // two-element fields which aren't a length and a data buffer // (e.g. http://www.awaresystems.be/imaging/tiff/tifftags/dotrange.html // ) template inline bool call_me(typename Property:: type const & values, std::shared_ptr& file) const { using length_t = mp11::mp_at_c; auto const length = static_cast(values.size()); using pointer_t = mp11::mp_at_c; auto const pointer = static_cast(&(values.front())); return (1 == TIFFSetField( file.get(), Property:: tag, length, pointer)); } }; template< typename Log > class tiff_device_base { public: using tiff_file_t = std::shared_ptr; tiff_device_base() {} tiff_device_base( TIFF* tiff_file ) : _tiff_file( tiff_file , TIFFClose ) {} template bool get_property( typename Property::type& value ) { return get_property_f::value>().template call_me(value, _tiff_file); } template inline bool set_property( const typename Property::type& value ) { // http://www.remotesensing.org/libtiff/man/TIFFSetField.3tiff.html return set_property_f::value>().template call_me(value, _tiff_file); } // TIFFIsByteSwapped returns a non-zero value if the image data was in a different // byte-order than the host machine. Zero is returned if the TIFF file and local // host byte-orders are the same. Note that TIFFReadTile(), TIFFReadStrip() and TIFFReadScanline() // functions already normally perform byte swapping to local host order if needed. bool are_bytes_swapped() { return ( TIFFIsByteSwapped( _tiff_file.get() )) ? true : false; } bool is_tiled() const { return ( TIFFIsTiled( _tiff_file.get() )) ? true : false; } unsigned int get_default_strip_size() { return TIFFDefaultStripSize( _tiff_file.get() , 0 ); } std::size_t get_scanline_size() { return TIFFScanlineSize( _tiff_file.get() ); } std::size_t get_tile_size() { return TIFFTileSize( _tiff_file.get() ); } int get_field_defaulted( uint16_t*& red , uint16_t*& green , uint16_t*& blue ) { return TIFFGetFieldDefaulted( _tiff_file.get() , TIFFTAG_COLORMAP , &red , &green , &blue ); } template< typename Buffer > void read_scanline( Buffer& buffer , std::ptrdiff_t row , tsample_t plane ) { io_error_if( TIFFReadScanline( _tiff_file.get() , reinterpret_cast< tdata_t >( &buffer.front() ) , (uint32) row , plane ) == -1 , "Read error." ); } void read_scanline( byte_t* buffer , std::ptrdiff_t row , tsample_t plane ) { io_error_if( TIFFReadScanline( _tiff_file.get() , reinterpret_cast< tdata_t >( buffer ) , (uint32) row , plane ) == -1 , "Read error." ); } template< typename Buffer > void read_tile( Buffer& buffer , std::ptrdiff_t x , std::ptrdiff_t y , std::ptrdiff_t z , tsample_t plane ) { if( TIFFReadTile( _tiff_file.get() , reinterpret_cast< tdata_t >( &buffer.front() ) , (uint32) x , (uint32) y , (uint32) z , plane ) == -1 ) { std::ostringstream oss; oss << "Read tile error (" << x << "," << y << "," << z << "," << plane << ")."; io_error(oss.str().c_str()); } } template< typename Buffer > void write_scaline( Buffer& buffer , uint32 row , tsample_t plane ) { io_error_if( TIFFWriteScanline( _tiff_file.get() , &buffer.front() , row , plane ) == -1 , "Write error" ); } void write_scaline( byte_t* buffer , uint32 row , tsample_t plane ) { io_error_if( TIFFWriteScanline( _tiff_file.get() , buffer , row , plane ) == -1 , "Write error" ); } template< typename Buffer > void write_tile( Buffer& buffer , uint32 x , uint32 y , uint32 z , tsample_t plane ) { if( TIFFWriteTile( _tiff_file.get() , &buffer.front() , x , y , z , plane ) == -1 ) { std::ostringstream oss; oss << "Write tile error (" << x << "," << y << "," << z << "," << plane << ")."; io_error(oss.str().c_str()); } } void set_directory( tdir_t directory ) { io_error_if( TIFFSetDirectory( _tiff_file.get() , directory ) != 1 , "Failing to set directory" ); } // return false if the given tile width or height is not TIFF compliant (multiple of 16) or larger than image size, true otherwise bool check_tile_size( tiff_tile_width::type& width , tiff_tile_length::type& height ) { bool result = true; uint32 tw = static_cast< uint32 >( width ); uint32 th = static_cast< uint32 >( height ); TIFFDefaultTileSize( _tiff_file.get() , &tw , &th ); if(width==0 || width%16!=0) { width = tw; result = false; } if(height==0 || height%16!=0) { height = th; result = false; } return result; } protected: tiff_file_t _tiff_file; Log _log; }; /*! * * file_stream_device specialization for tiff images, which are based on TIFF*. */ template<> class file_stream_device< tiff_tag > : public tiff_device_base< tiff_no_log > { public: struct read_tag {}; struct write_tag {}; file_stream_device( std::string const& file_name, read_tag ) { TIFF* tiff; io_error_if( ( tiff = TIFFOpen( file_name.c_str(), "r" )) == nullptr , "file_stream_device: failed to open file" ); _tiff_file = tiff_file_t( tiff, TIFFClose ); } file_stream_device( std::string const& file_name, write_tag ) { TIFF* tiff; io_error_if( ( tiff = TIFFOpen( file_name.c_str(), "w" )) == nullptr , "file_stream_device: failed to open file" ); _tiff_file = tiff_file_t( tiff, TIFFClose ); } file_stream_device( TIFF* tiff_file ) : tiff_device_base( tiff_file ) {} }; /*! * * ostream_device specialization for tiff images. */ template<> class ostream_device< tiff_tag > : public tiff_device_base< tiff_no_log > { public: ostream_device( std::ostream & out ) : _out( out ) { TIFF* tiff; io_error_if( ( tiff = TIFFStreamOpen( "" , &_out ) ) == nullptr , "ostream_device: failed to stream" ); _tiff_file = tiff_file_t( tiff, TIFFClose ); } private: ostream_device& operator=( const ostream_device& ) { return *this; } private: std::ostream& _out; }; /*! * * ostream_device specialization for tiff images. */ template<> class istream_device< tiff_tag > : public tiff_device_base< tiff_no_log > { public: istream_device( std::istream & in ) : _in( in ) { TIFF* tiff; io_error_if( ( tiff = TIFFStreamOpen( "" , &_in ) ) == nullptr , "istream_device: failed to stream" ); _tiff_file = tiff_file_t( tiff, TIFFClose ); } private: istream_device& operator=( const istream_device& ) { return *this; } private: std::istream& _in; }; /* template< typename T, typename D > struct is_adaptable_input_device< tiff_tag, T, D > : std::false_type {}; */ template struct is_adaptable_input_device : std::true_type { using device_type = file_stream_device; }; template struct is_adaptable_output_device : std::true_type { using device_type = file_stream_device; }; template struct sample_format : std::integral_constant {}; template<> struct sample_format : std::integral_constant {}; template<> struct sample_format : std::integral_constant {}; template<> struct sample_format : std::integral_constant {}; template<> struct sample_format : std::integral_constant {}; template<> struct sample_format : std::integral_constant {}; template<> struct sample_format : std::integral_constant {}; template<> struct sample_format : std::integral_constant {}; template<> struct sample_format : std::integral_constant {}; template struct photometric_interpretation {}; template<> struct photometric_interpretation : std::integral_constant {}; template<> struct photometric_interpretation : std::integral_constant {}; template<> struct photometric_interpretation : std::integral_constant {}; template<> struct photometric_interpretation : std::integral_constant {}; } // namespace detail } // namespace gil } // namespace boost #endif