tiffiop.h 15.7 KB
Newer Older
1
/* $Id: tiffiop.h,v 1.84 2012-05-30 01:50:17 fwarmerdam Exp $ */
2 3 4 5 6

/*
 * Copyright (c) 1988-1997 Sam Leffler
 * Copyright (c) 1991-1997 Silicon Graphics, Inc.
 *
7
 * Permission to use, copy, modify, distribute, and sell this software and
8 9 10 11 12 13
 * its documentation for any purpose is hereby granted without fee, provided
 * that (i) the above copyright notices and this permission notice appear in
 * all copies of the software and related documentation, and (ii) the names of
 * Sam Leffler and Silicon Graphics may not be used in any advertising or
 * publicity relating to the software without the specific, prior written
 * permission of Sam Leffler and Silicon Graphics.
14 15 16 17 18
 *
 * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
 *
19 20 21
 * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
 * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
 * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
22 23
 * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
 * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
24 25 26 27 28 29 30 31 32 33 34
 * OF THIS SOFTWARE.
 */

#ifndef _TIFFIOP_
#define	_TIFFIOP_
/*
 * ``Library-private'' definitions.
 */

#include "tif_config.h"

35
#ifdef HAVE_FCNTL_H
36 37 38
# include <fcntl.h>
#endif

39
#ifdef HAVE_SYS_TYPES_H
40 41 42
# include <sys/types.h>
#endif

43
#ifdef HAVE_STRING_H
44 45 46
# include <string.h>
#endif

47
#ifdef HAVE_ASSERT_H
48 49
# include <assert.h>
#else
50
# define assert(x)
51 52
#endif

53 54 55 56
#ifdef HAVE_SEARCH_H
# include <search.h>
#else
extern void *lfind(const void *, const void *, size_t *, size_t,
57
           int (*)(const void *, const void *));
58 59
#endif

60
#include "tiffio.h"
61

62 63
#include "tif_dir.h"

64 65 66
#ifndef STRIP_SIZE_DEFAULT
# define STRIP_SIZE_DEFAULT 8192
#endif
67 68 69 70 71 72 73 74 75 76

#define    streq(a,b)      (strcmp(a,b) == 0)

#ifndef TRUE
#define	TRUE	1
#define	FALSE	0
#endif

typedef struct client_info {
    struct client_info *next;
77 78
    void *data;
    char *name;
79 80 81 82
} TIFFClientInfoLink;

/*
 * Typedefs for ``method pointers'' used internally.
83
 * these are depriciated and provided only for backwards compatibility
84
 */
85 86 87 88 89 90 91 92 93 94 95
typedef unsigned char tidataval_t;    /* internal image data value type */
typedef tidataval_t* tidata_t;        /* reference to internal image data */

typedef void (*TIFFVoidMethod)(TIFF*);
typedef int (*TIFFBoolMethod)(TIFF*);
typedef int (*TIFFPreMethod)(TIFF*, uint16);
typedef int (*TIFFCodeMethod)(TIFF* tif, uint8* buf, tmsize_t size, uint16 sample);
typedef int (*TIFFSeekMethod)(TIFF*, uint32);
typedef void (*TIFFPostMethod)(TIFF* tif, uint8* buf, tmsize_t size);
typedef uint32 (*TIFFStripMethod)(TIFF*, uint32);
typedef void (*TIFFTileMethod)(TIFF*, uint32*, uint32*);
96 97

struct tiff {
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
    char*                tif_name;         /* name of open file */
    int                  tif_fd;           /* open file descriptor */
    int                  tif_mode;         /* open mode (O_*) */
    uint32               tif_flags;
    #define TIFF_FILLORDER   0x00003 /* natural bit fill order for machine */
    #define TIFF_DIRTYHEADER 0x00004 /* header must be written on close */
    #define TIFF_DIRTYDIRECT 0x00008 /* current directory must be written */
    #define TIFF_BUFFERSETUP 0x00010 /* data buffers setup */
    #define TIFF_CODERSETUP  0x00020 /* encoder/decoder setup done */
    #define TIFF_BEENWRITING 0x00040 /* written 1+ scanlines to file */
    #define TIFF_SWAB        0x00080 /* byte swap file information */
    #define TIFF_NOBITREV    0x00100 /* inhibit bit reversal logic */
    #define TIFF_MYBUFFER    0x00200 /* my raw data buffer; free on close */
    #define TIFF_ISTILED     0x00400 /* file is tile, not strip- based */
    #define TIFF_MAPPED      0x00800 /* file is mapped into memory */
    #define TIFF_POSTENCODE  0x01000 /* need call to postencode routine */
    #define TIFF_INSUBIFD    0x02000 /* currently writing a subifd */
    #define TIFF_UPSAMPLED   0x04000 /* library is doing data up-sampling */
    #define TIFF_STRIPCHOP   0x08000 /* enable strip chopping support */
    #define TIFF_HEADERONLY  0x10000 /* read header only, do not process the first directory */
    #define TIFF_NOREADRAW   0x20000 /* skip reading of raw uncompressed image data */
    #define TIFF_INCUSTOMIFD 0x40000 /* currently writing a custom IFD */
    #define TIFF_BIGTIFF     0x80000 /* read/write bigtiff */
121 122 123
        #define TIFF_BUF4WRITE  0x100000 /* rawcc bytes are for writing */
        #define TIFF_DIRTYSTRIP 0x200000 /* stripoffsets/stripbytecount dirty*/
        #define TIFF_PERSAMPLE  0x400000 /* get/set per sample tags as arrays */
124
        #define TIFF_BUFFERMMAP 0x800000 /* read buffer (tif_rawdata) points into mmap() memory */
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 175
    uint64               tif_diroff;       /* file offset of current directory */
    uint64               tif_nextdiroff;   /* file offset of following directory */
    uint64*              tif_dirlist;      /* list of offsets to already seen directories to prevent IFD looping */
    uint16               tif_dirlistsize;  /* number of entires in offset list */
    uint16               tif_dirnumber;    /* number of already seen directories */
    TIFFDirectory        tif_dir;          /* internal rep of current directory */
    TIFFDirectory        tif_customdir;    /* custom IFDs are separated from the main ones */
    union {
        TIFFHeaderCommon common;
        TIFFHeaderClassic classic;
        TIFFHeaderBig big;
    } tif_header;
    uint16               tif_header_size;  /* file's header block and its length */
    uint32               tif_row;          /* current scanline */
    uint16               tif_curdir;       /* current directory (index) */
    uint32               tif_curstrip;     /* current strip for read/write */
    uint64               tif_curoff;       /* current offset for read/write */
    uint64               tif_dataoff;      /* current offset for writing dir */
    /* SubIFD support */
    uint16               tif_nsubifd;      /* remaining subifds to write */
    uint64               tif_subifdoff;    /* offset for patching SubIFD link */
    /* tiling support */
    uint32               tif_col;          /* current column (offset by row too) */
    uint32               tif_curtile;      /* current tile for read/write */
    tmsize_t             tif_tilesize;     /* # of bytes in a tile */
    /* compression scheme hooks */
    int                  tif_decodestatus;
    TIFFBoolMethod       tif_fixuptags;    /* called in TIFFReadDirectory */
    TIFFBoolMethod       tif_setupdecode;  /* called once before predecode */
    TIFFPreMethod        tif_predecode;    /* pre- row/strip/tile decoding */
    TIFFBoolMethod       tif_setupencode;  /* called once before preencode */
    int                  tif_encodestatus;
    TIFFPreMethod        tif_preencode;    /* pre- row/strip/tile encoding */
    TIFFBoolMethod       tif_postencode;   /* post- row/strip/tile encoding */
    TIFFCodeMethod       tif_decoderow;    /* scanline decoding routine */
    TIFFCodeMethod       tif_encoderow;    /* scanline encoding routine */
    TIFFCodeMethod       tif_decodestrip;  /* strip decoding routine */
    TIFFCodeMethod       tif_encodestrip;  /* strip encoding routine */
    TIFFCodeMethod       tif_decodetile;   /* tile decoding routine */
    TIFFCodeMethod       tif_encodetile;   /* tile encoding routine */
    TIFFVoidMethod       tif_close;        /* cleanup-on-close routine */
    TIFFSeekMethod       tif_seek;         /* position within a strip routine */
    TIFFVoidMethod       tif_cleanup;      /* cleanup state routine */
    TIFFStripMethod      tif_defstripsize; /* calculate/constrain strip size */
    TIFFTileMethod       tif_deftilesize;  /* calculate/constrain tile size */
    uint8*               tif_data;         /* compression scheme private data */
    /* input/output buffering */
    tmsize_t             tif_scanlinesize; /* # of bytes in a scanline */
    tmsize_t             tif_scanlineskew; /* scanline skew for reading strips */
    uint8*               tif_rawdata;      /* raw data buffer */
    tmsize_t             tif_rawdatasize;  /* # of bytes in raw data buffer */
176 177
        tmsize_t             tif_rawdataoff;   /* rawdata offset within strip */
        tmsize_t             tif_rawdataloaded;/* amount of data in rawdata */
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
    uint8*               tif_rawcp;        /* current spot in raw buffer */
    tmsize_t             tif_rawcc;        /* bytes unread from raw buffer */
    /* memory-mapped file support */
    uint8*               tif_base;         /* base of mapped file */
    tmsize_t             tif_size;         /* size of mapped file region (bytes, thus tmsize_t) */
    TIFFMapFileProc      tif_mapproc;      /* map file method */
    TIFFUnmapFileProc    tif_unmapproc;    /* unmap file method */
    /* input/output callback methods */
    thandle_t            tif_clientdata;   /* callback parameter */
    TIFFReadWriteProc    tif_readproc;     /* read method */
    TIFFReadWriteProc    tif_writeproc;    /* write method */
    TIFFSeekProc         tif_seekproc;     /* lseek method */
    TIFFCloseProc        tif_closeproc;    /* close method */
    TIFFSizeProc         tif_sizeproc;     /* filesize method */
    /* post-decoding support */
    TIFFPostMethod       tif_postdecode;   /* post decoding routine */
    /* tag support */
    TIFFField**          tif_fields;       /* sorted table of registered tags */
    size_t               tif_nfields;      /* # entries in registered tag table */
    const TIFFField*     tif_foundfield;   /* cached pointer to already found tag */
    TIFFTagMethods       tif_tagmethods;   /* tag get/set/print routines */
    TIFFClientInfoLink*  tif_clientinfo;   /* extra client information. */
    /* Backward compatibility stuff. We need these two fields for
     * setting up an old tag extension scheme. */
    TIFFFieldArray*      tif_fieldscompat;
    size_t               tif_nfieldscompat;
204 205
};

206 207 208 209 210 211 212
#define isPseudoTag(t) (t > 0xffff)            /* is tag value normal or pseudo */

#define isTiled(tif) (((tif)->tif_flags & TIFF_ISTILED) != 0)
#define isMapped(tif) (((tif)->tif_flags & TIFF_MAPPED) != 0)
#define isFillOrder(tif, o) (((tif)->tif_flags & (o)) != 0)
#define isUpSampled(tif) (((tif)->tif_flags & TIFF_UPSAMPLED) != 0)
#define TIFFReadFile(tif, buf, size) \
213
    ((*(tif)->tif_readproc)((tif)->tif_clientdata,(buf),(size)))
214
#define TIFFWriteFile(tif, buf, size) \
215
    ((*(tif)->tif_writeproc)((tif)->tif_clientdata,(buf),(size)))
216
#define TIFFSeekFile(tif, off, whence) \
217
    ((*(tif)->tif_seekproc)((tif)->tif_clientdata,(off),(whence)))
218
#define TIFFCloseFile(tif) \
219
    ((*(tif)->tif_closeproc)((tif)->tif_clientdata))
220
#define TIFFGetFileSize(tif) \
221
    ((*(tif)->tif_sizeproc)((tif)->tif_clientdata))
222
#define TIFFMapFileContents(tif, paddr, psize) \
223
    ((*(tif)->tif_mapproc)((tif)->tif_clientdata,(paddr),(psize)))
224
#define TIFFUnmapFileContents(tif, addr, size) \
225
    ((*(tif)->tif_unmapproc)((tif)->tif_clientdata,(addr),(size)))
226 227 228 229 230

/*
 * Default Read/Seek/Write definitions.
 */
#ifndef ReadOK
231
#define ReadOK(tif, buf, size) \
232
    (TIFFReadFile((tif),(buf),(size))==(size))
233 234
#endif
#ifndef SeekOK
235
#define SeekOK(tif, off) \
236
    (TIFFSeekFile((tif),(off),SEEK_SET)==(off))
237 238
#endif
#ifndef WriteOK
239
#define WriteOK(tif, buf, size) \
240
    (TIFFWriteFile((tif),(buf),(size))==(size))
241 242 243
#endif

/* NB: the uint32 casts are to silence certain ANSI-C compilers */
244
#define TIFFhowmany_32(x, y) (((uint32)x < (0xffffffff - (uint32)(y-1))) ? \
245 246
               ((((uint32)(x))+(((uint32)(y))-1))/((uint32)(y))) : \
               0U)
247 248 249 250 251
#define TIFFhowmany8_32(x) (((x)&0x07)?((uint32)(x)>>3)+1:(uint32)(x)>>3)
#define TIFFroundup_32(x, y) (TIFFhowmany_32(x,y)*(y))
#define TIFFhowmany_64(x, y) ((((uint64)(x))+(((uint64)(y))-1))/((uint64)(y)))
#define TIFFhowmany8_64(x) (((x)&0x07)?((uint64)(x)>>3)+1:(uint64)(x)>>3)
#define TIFFroundup_64(x, y) (TIFFhowmany_64(x,y)*(y))
252

253
/* Safe multiply which returns zero if there is an integer overflow */
254
#define TIFFSafeMultiply(t,v,m) ((((t)(m) != (t)0) && (((t)(((v)*(m))/(m))) == (t)(v))) ? (t)((v)*(m)) : (t)0)
255

256 257 258
#define TIFFmax(A,B) ((A)>(B)?(A):(B))
#define TIFFmin(A,B) ((A)<(B)?(A):(B))

259 260
#define TIFFArrayCount(a) (sizeof (a) / sizeof ((a)[0]))

261 262 263
#if defined(__cplusplus)
extern "C" {
#endif
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
extern int _TIFFgetMode(const char* mode, const char* module);
extern int _TIFFNoRowEncode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
extern int _TIFFNoStripEncode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
extern int _TIFFNoTileEncode(TIFF*, uint8* pp, tmsize_t cc, uint16 s);
extern int _TIFFNoRowDecode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
extern int _TIFFNoStripDecode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
extern int _TIFFNoTileDecode(TIFF*, uint8* pp, tmsize_t cc, uint16 s);
extern void _TIFFNoPostDecode(TIFF* tif, uint8* buf, tmsize_t cc);
extern int _TIFFNoPreCode(TIFF* tif, uint16 s);
extern int _TIFFNoSeek(TIFF* tif, uint32 off);
extern void _TIFFSwab16BitData(TIFF* tif, uint8* buf, tmsize_t cc);
extern void _TIFFSwab24BitData(TIFF* tif, uint8* buf, tmsize_t cc);
extern void _TIFFSwab32BitData(TIFF* tif, uint8* buf, tmsize_t cc);
extern void _TIFFSwab64BitData(TIFF* tif, uint8* buf, tmsize_t cc);
extern int TIFFFlushData1(TIFF* tif);
extern int TIFFDefaultDirectory(TIFF* tif);
extern void _TIFFSetDefaultCompressionState(TIFF* tif);
extern int _TIFFRewriteField(TIFF *, uint16, TIFFDataType, tmsize_t, void *);
extern int TIFFSetCompressionScheme(TIFF* tif, int scheme);
extern int TIFFSetDefaultCompressionState(TIFF* tif);
extern uint32 _TIFFDefaultStripSize(TIFF* tif, uint32 s);
extern void _TIFFDefaultTileSize(TIFF* tif, uint32* tw, uint32* th);
extern int _TIFFDataSize(TIFFDataType type);

extern void _TIFFsetByteArray(void**, void*, uint32);
extern void _TIFFsetString(char**, char*);
extern void _TIFFsetShortArray(uint16**, uint16*, uint32);
extern void _TIFFsetLongArray(uint32**, uint32*, uint32);
extern void _TIFFsetFloatArray(float**, float*, uint32);
extern void _TIFFsetDoubleArray(double**, double*, uint32);

extern void _TIFFprintAscii(FILE*, const char*);
extern void _TIFFprintAsciiTag(FILE*, const char*, const char*);

extern TIFFErrorHandler _TIFFwarningHandler;
extern TIFFErrorHandler _TIFFerrorHandler;
extern TIFFErrorHandlerExt _TIFFwarningHandlerExt;
extern TIFFErrorHandlerExt _TIFFerrorHandlerExt;

extern uint32 _TIFFMultiply32(TIFF*, uint32, uint32, const char*);
extern uint64 _TIFFMultiply64(TIFF*, uint64, uint64, const char*);
extern void* _TIFFCheckMalloc(TIFF*, tmsize_t, tmsize_t, const char*);
extern void* _TIFFCheckRealloc(TIFF*, void*, tmsize_t, tmsize_t, const char*);

extern double _TIFFUInt64ToDouble(uint64);
extern float _TIFFUInt64ToFloat(uint64);

extern int TIFFInitDumpMode(TIFF*, int);
312
#ifdef PACKBITS_SUPPORT
313
extern int TIFFInitPackBits(TIFF*, int);
314 315
#endif
#ifdef CCITT_SUPPORT
316 317
extern int TIFFInitCCITTRLE(TIFF*, int), TIFFInitCCITTRLEW(TIFF*, int);
extern int TIFFInitCCITTFax3(TIFF*, int), TIFFInitCCITTFax4(TIFF*, int);
318 319
#endif
#ifdef THUNDER_SUPPORT
320
extern int TIFFInitThunderScan(TIFF*, int);
321 322
#endif
#ifdef NEXT_SUPPORT
323
extern int TIFFInitNeXT(TIFF*, int);
324 325
#endif
#ifdef LZW_SUPPORT
326
extern int TIFFInitLZW(TIFF*, int);
327 328
#endif
#ifdef OJPEG_SUPPORT
329
extern int TIFFInitOJPEG(TIFF*, int);
330 331
#endif
#ifdef JPEG_SUPPORT
332
extern int TIFFInitJPEG(TIFF*, int);
333 334
#endif
#ifdef JBIG_SUPPORT
335
extern int TIFFInitJBIG(TIFF*, int);
336 337
#endif
#ifdef ZIP_SUPPORT
338
extern int TIFFInitZIP(TIFF*, int);
339 340
#endif
#ifdef PIXARLOG_SUPPORT
341
extern int TIFFInitPixarLog(TIFF*, int);
342 343
#endif
#ifdef LOGLUV_SUPPORT
344 345 346 347
extern int TIFFInitSGILog(TIFF*, int);
#endif
#ifdef LZMA_SUPPORT
extern int TIFFInitLZMA(TIFF*, int);
348 349
#endif
#ifdef VMS
350
extern const TIFFCodec _TIFFBuiltinCODECS[];
351
#else
352
extern TIFFCodec _TIFFBuiltinCODECS[];
353 354 355 356 357 358 359 360
#endif

#if defined(__cplusplus)
}
#endif
#endif /* _TIFFIOP_ */

/* vim: set ts=8 sts=8 sw=8 noet: */
361 362 363 364 365 366 367
/*
 * Local Variables:
 * mode: c
 * c-basic-offset: 8
 * fill-column: 78
 * End:
 */