rawTherapee/libraw/libraw_datastream.h
Lawrence Lee 4c61b7d3c3 Squashed 'rtengine/libraw/' changes from 1ef70158d..12b0e5d60
12b0e5d60 Snapshot 202403
a4c9b1981 loop parameters in remove_trailing_spaces
e231b01a4 CR3-Qstep table: avoid wrong 64-bit code generation
21368133a 0.21.2 release
a6f212a4a tag type => tag size mapping fixed
41506ef73 cubic_spline: better handling of non-integer data
17294b5fd extra metadata check in arq_load_raw
47d9dd8e2 Better incorrect data handling in cubic_spline
3baa51068 skip invalid pattern in xtrans_interpolate
eaf63bf5f Check HL recovery coeffs before processing
a14574080 limit wavelet denoise minimum size
4e597e4e9 Merge pull request #594 from pinotree/path_max
086dcb9a6 raw-identify: use fallback if PATH_MAX not available
0e105f9f8 additional check against corrupted ljpeg layout
0c8b68e9f Disable color conversion for Canon 16-bit thumbnails
cd1abd695 docs/changelog: explained the case when no thumbnail is found in specific file
6fffd414b rename swapXX to libraw_swapXX to avoid name conflict
af78ae48a Check against corrupted LJPEG header in Canon sRAW decoder
ba780e600 Limit embedded color profile allocation/read size
122bf7c5b Wrong alloc result check for 16-bit bitmap thumbnail
e6dd2709e check pana_data/buffer offset before use
ae2dc5884 Check P1 quadrant linearization coeff[15] against zero
f2998bacc avoid integer overflow in buffer space check
443b7fb51 prevent buffer overrun in buffer_datastream::scanf_one
35a6d3615 ensure correct T.tlength for 16b bitmap thumbnails(2)
b69ea8be5 ensure correct T.tlength for 16b bitmap thumbnails
2b6eca897 Do not run sraw decoder on (crafted) bayer files
68808b57f better striped thumbnails handling
9ab70f6dc do not set shrink flag for 3/4 component images
32425dd96 allow more decoders for fuji-rotated RAWs
REVERT: 1ef70158d 0.21.2 release
REVERT: 62f042366 tag type => tag size mapping fixed
REVERT: ee087e3fe cubic_spline: better handling of non-integer data
REVERT: af755b991 extra metadata check in arq_load_raw
REVERT: 0fadd8819 Better incorrect data handling in cubic_spline
REVERT: d7fb66053 skip invalid pattern in xtrans_interpolate
REVERT: d059ed280 Check HL recovery coeffs before processing
REVERT: 104730519 limit wavelet denoise minimum size
REVERT: cae09838e raw-identify: use fallback if PATH_MAX not available
REVERT: d6c677608 additional check against corrupted ljpeg layout
REVERT: 1001a6ac1 Disable color conversion for Canon 16-bit thumbnails
REVERT: a5130b01b docs/changelog: explained the case when no thumbnail is found in specific file
REVERT: 600c0c63d rename swapXX to libraw_swapXX to avoid name conflict
REVERT: 299c8a11b Check against corrupted LJPEG header in Canon sRAW decoder
REVERT: ec8671ad9 Limit embedded color profile allocation/read size
REVERT: 5229d5942 Wrong alloc result check for 16-bit bitmap thumbnail
REVERT: b278b775f check pana_data/buffer offset before use
REVERT: 7f4b8d3af Check P1 quadrant linearization coeff[15] against zero
REVERT: e942a7db6 avoid integer overflow in buffer space check
REVERT: f6a57cfb8 prevent buffer overrun in buffer_datastream::scanf_one
REVERT: 3e62ed304 ensure correct T.tlength for 16b bitmap thumbnails(2)
REVERT: 8e52d81cd ensure correct T.tlength for 16b bitmap thumbnails
REVERT: 8e1af15e2 Do not run sraw decoder on (crafted) bayer files
REVERT: 0ace959c2 better striped thumbnails handling
REVERT: 477e0719f do not set shrink flag for 3/4 component images
REVERT: c8efae6c5 allow more decoders for fuji-rotated RAWs

git-subtree-dir: rtengine/libraw
git-subtree-split: 12b0e5d60c57bb795382fda8494fc45f683550b8
2024-04-13 22:44:59 -07:00

394 lines
10 KiB
C

/* -*- C -*-
* File: libraw_datastream.h
* Copyright 2008-2024 LibRaw LLC (info@libraw.org)
* Created: Sun Jan 18 13:07:35 2009
*
* LibRaw Data stream interface
LibRaw is free software; you can redistribute it and/or modify
it under the terms of the one of two licenses as you choose:
1. GNU LESSER GENERAL PUBLIC LICENSE version 2.1
(See file LICENSE.LGPL provided in LibRaw distribution archive for details).
2. COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
(See file LICENSE.CDDL provided in LibRaw distribution archive for details).
*/
#ifndef __LIBRAW_DATASTREAM_H
#define __LIBRAW_DATASTREAM_H
#include <stdio.h>
#include <sys/types.h>
#include <errno.h>
#include <string.h>
#ifndef __cplusplus
#else /* __cplusplus */
#if defined _WIN32
#ifndef LIBRAW_NO_WINSOCK2
#include <winsock2.h>
#endif
#endif
/* No unique_ptr on Apple ?? */
#if __cplusplus >= 201103L || (defined(_CPPLIB_VER) && _CPPLIB_VER >= 520) || \
(defined(_MSC_VER) && _MSVC_LANG >= 201103L)
/* OK - use unique_ptr unless LIBRAW_USE_AUTOPTR defined externally*/
#else
/* Force to use auto_ptr */
#ifndef LIBRAW_USE_AUTOPTR
#define LIBRAW_USE_AUTOPTR
#endif
#endif
#include "libraw_const.h"
#include "libraw_types.h"
#include <fstream>
#include <memory>
#include <vector>
#if defined(_WIN32) && (_MSC_VER) >= 1500
#define WIN32SECURECALLS
#endif
#ifdef USE_DNGSDK
#if defined LIBRAW_WIN32_CALLS
#define qWinOS 1
#define qMacOS 0
#elif defined(__APPLE__)
#define qWinOS 0
#define qMacOS 1
#else
/* define OS types for DNG here */
#endif
#define qDNGXMPDocOps 0
#define qDNGUseLibJPEG 1
#define qDNGXMPFiles 0
#define qDNGExperimental 1
#define qDNGThreadSafe 1
#include "dng_stream.h"
#endif /* DNGSDK */
#define IOERROR() \
do \
{ \
throw LIBRAW_EXCEPTION_IO_EOF; \
} while (0)
class LibRaw_buffer_datastream;
class LibRaw_bit_buffer;
class DllDef LibRaw_abstract_datastream
{
public:
LibRaw_abstract_datastream() { };
virtual ~LibRaw_abstract_datastream(void) { }
virtual int valid() = 0;
virtual int read(void *, size_t, size_t) = 0;
virtual int seek(INT64, int) = 0;
virtual INT64 tell() = 0;
virtual INT64 size() = 0;
virtual int get_char() = 0;
virtual char *gets(char *, int) = 0;
virtual int scanf_one(const char *, void *) = 0;
virtual int eof() = 0;
virtual int jpeg_src(void *);
virtual void buffering_off() {}
/* reimplement in subclass to use parallel access in xtrans_load_raw() if
* OpenMP is not used */
virtual int lock() { return 1; } /* success */
virtual void unlock() {}
virtual const char *fname() { return NULL; };
#ifdef LIBRAW_WIN32_UNICODEPATHS
virtual const wchar_t *wfname() { return NULL; };
#endif
};
#ifndef LIBRAW_NO_IOSTREAMS_DATASTREAM
#ifdef LIBRAW_WIN32_DLLDEFS
#ifdef LIBRAW_USE_AUTOPTR
template class DllDef std::auto_ptr<std::streambuf>;
#else
template class DllDef std::unique_ptr<std::streambuf>;
#endif
#endif
class DllDef LibRaw_file_datastream : public LibRaw_abstract_datastream
{
protected:
#ifdef LIBRAW_USE_AUTOPTR
std::auto_ptr<std::streambuf> f; /* will close() automatically through dtor */
#else
std::unique_ptr<std::streambuf> f;
#endif
std::string filename;
INT64 _fsize;
#ifdef LIBRAW_WIN32_UNICODEPATHS
std::wstring wfilename;
#endif
public:
virtual ~LibRaw_file_datastream();
LibRaw_file_datastream(const char *fname);
#ifdef LIBRAW_WIN32_UNICODEPATHS
LibRaw_file_datastream(const wchar_t *fname);
#endif
virtual int valid();
virtual int read(void *ptr, size_t size, size_t nmemb);
virtual int eof();
virtual int seek(INT64 o, int whence);
virtual INT64 tell();
virtual INT64 size() { return _fsize; }
virtual int get_char() {return f->sbumpc();}
virtual char *gets(char *str, int sz);
virtual int scanf_one(const char *fmt, void *val);
virtual const char *fname();
#ifdef LIBRAW_WIN32_UNICODEPATHS
virtual const wchar_t *wfname();
#endif
};
#endif
#if defined (LIBRAW_NO_IOSTREAMS_DATASTREAM) && defined (LIBRAW_WIN32_CALLS)
struct DllDef LibRaw_bufio_params
{
static int bufsize;
static void set_bufsize(int bs);
};
class buffer_t : public std::vector<unsigned char>
{
public:
INT64 _bstart, _bend;
buffer_t() : std::vector<unsigned char>(LibRaw_bufio_params::bufsize), _bstart(0), _bend(0) {}
int charOReof(INT64 _fpos)
{
if (_bstart < 0LL || _bend < 0LL || _bend < _bstart || _fpos < 0LL)
return -1;
if ((_bend - _bstart) > (INT64)size())
return -1;
if (_fpos >= _bstart && _fpos < _bend)
return data()[_fpos - _bstart];
return -1;
}
bool contains(INT64 _fpos, INT64& contains)
{
if (_bstart < 0LL || _bend < 0LL || _bend < _bstart || _fpos < 0LL)
{
contains = 0;
return false;
}
if ((_bend - _bstart) > (INT64)size())
{
contains = 0;
return false;
}
if (_fpos >= _bstart && _fpos < _bend)
{
contains = _bend - _fpos;
return true;
}
contains = 0;
return false;
}
};
class DllDef LibRaw_bigfile_buffered_datastream : public LibRaw_abstract_datastream
{
public:
LibRaw_bigfile_buffered_datastream(const char *fname);
#ifdef LIBRAW_WIN32_UNICODEPATHS
LibRaw_bigfile_buffered_datastream(const wchar_t *fname);
#endif
virtual ~LibRaw_bigfile_buffered_datastream();
virtual int valid();
virtual void buffering_off() { buffered = 0; }
virtual int read(void *ptr, size_t size, size_t nmemb);
virtual int eof();
virtual int seek(INT64 o, int whence);
virtual INT64 tell();
virtual INT64 size() { return _fsize; }
virtual char *gets(char *str, int sz);
virtual int scanf_one(const char *fmt, void *val);
virtual const char *fname();
#ifdef LIBRAW_WIN32_UNICODEPATHS
virtual const wchar_t *wfname();
#endif
virtual int get_char()
{
int r = iobuffers[0].charOReof(_fpos);
if (r >= 0)
{
_fpos++;
return r;
}
unsigned char c;
r = read(&c, 1, 1);
return r > 0 ? c : r;
}
protected:
INT64 readAt(void *ptr, size_t size, INT64 off);
bool fillBufferAt(int buf, INT64 off);
int selectStringBuffer(INT64 len, INT64& contains);
HANDLE fhandle;
INT64 _fsize;
INT64 _fpos; /* current file position; current buffer start position */
#ifdef LIBRAW_WIN32_UNICODEPATHS
std::wstring wfilename;
#endif
std::string filename;
buffer_t iobuffers[2];
int buffered;
};
#endif
class DllDef LibRaw_buffer_datastream : public LibRaw_abstract_datastream
{
public:
LibRaw_buffer_datastream(const void *buffer, size_t bsize);
virtual ~LibRaw_buffer_datastream();
virtual int valid();
virtual int jpeg_src(void *jpegdata);
virtual int read(void *ptr, size_t sz, size_t nmemb);
virtual int eof();
virtual int seek(INT64 o, int whence);
virtual INT64 tell();
virtual INT64 size() { return streamsize; }
virtual char *gets(char *s, int sz);
virtual int scanf_one(const char *fmt, void *val);
virtual int get_char()
{
if (streampos >= streamsize) return -1;
return buf[streampos++];
}
private:
unsigned char *buf;
size_t streampos, streamsize;
};
class DllDef LibRaw_bigfile_datastream : public LibRaw_abstract_datastream
{
public:
LibRaw_bigfile_datastream(const char *fname);
#ifdef LIBRAW_WIN32_UNICODEPATHS
LibRaw_bigfile_datastream(const wchar_t *fname);
#endif
virtual ~LibRaw_bigfile_datastream();
virtual int valid();
virtual int read(void *ptr, size_t size, size_t nmemb);
virtual int eof();
virtual int seek(INT64 o, int whence);
virtual INT64 tell();
virtual INT64 size() { return _fsize; }
virtual char *gets(char *str, int sz);
virtual int scanf_one(const char *fmt, void *val);
virtual const char *fname();
#ifdef LIBRAW_WIN32_UNICODEPATHS
virtual const wchar_t *wfname();
#endif
virtual int get_char()
{
#ifndef LIBRAW_WIN32_CALLS
return getc_unlocked(f);
#else
return fgetc(f);
#endif
}
protected:
FILE *f;
std::string filename;
INT64 _fsize;
#ifdef LIBRAW_WIN32_UNICODEPATHS
std::wstring wfilename;
#endif
};
#ifdef LIBRAW_WIN32_CALLS
class DllDef LibRaw_windows_datastream : public LibRaw_buffer_datastream
{
public:
/* ctor: high level constructor opens a file by name */
LibRaw_windows_datastream(const TCHAR *sFile);
/* ctor: construct with a file handle - caller is responsible for closing the
* file handle */
LibRaw_windows_datastream(HANDLE hFile);
/* dtor: unmap and close the mapping handle */
virtual ~LibRaw_windows_datastream();
virtual INT64 size() { return cbView_; }
protected:
void Open(HANDLE hFile);
inline void reconstruct_base()
{
/* this subterfuge is to overcome the private-ness of
* LibRaw_buffer_datastream */
(LibRaw_buffer_datastream &)*this =
LibRaw_buffer_datastream(pView_, (size_t)cbView_);
}
HANDLE hMap_; /* handle of the file mapping */
void *pView_; /* pointer to the mapped memory */
__int64 cbView_; /* size of the mapping in bytes */
};
#endif
#ifdef USE_DNGSDK
class libraw_dng_stream : public dng_stream
{
public:
libraw_dng_stream(LibRaw_abstract_datastream *p)
: dng_stream((dng_abort_sniffer *)NULL, kBigBufferSize, 0),
parent_stream(p)
{
if (parent_stream)
{
parent_stream->buffering_off();
off = parent_stream->tell();
parent_stream->seek(0UL, SEEK_SET); /* seek to start */
}
}
~libraw_dng_stream()
{
if (parent_stream)
parent_stream->seek(off, SEEK_SET);
}
virtual uint64 DoGetLength()
{
if (parent_stream)
return parent_stream->size();
return 0;
}
virtual void DoRead(void *data, uint32 count, uint64 offset)
{
if (parent_stream)
{
parent_stream->seek(offset, SEEK_SET);
parent_stream->read(data, 1, count);
}
}
private:
libraw_dng_stream(const libraw_dng_stream &stream);
libraw_dng_stream &operator=(const libraw_dng_stream &stream);
LibRaw_abstract_datastream *parent_stream;
INT64 off;
};
#endif
#endif /* cplusplus */
#endif