tif_zip.c
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:10k
源码类别:

打印编程

开发平台:

Visual C++

  1. /* $Id: tif_zip.c,v 1.10 2006/03/16 12:38:24 dron Exp $ */
  2. /*
  3.  * Copyright (c) 1995-1997 Sam Leffler
  4.  * Copyright (c) 1995-1997 Silicon Graphics, Inc.
  5.  *
  6.  * Permission to use, copy, modify, distribute, and sell this software and 
  7.  * its documentation for any purpose is hereby granted without fee, provided
  8.  * that (i) the above copyright notices and this permission notice appear in
  9.  * all copies of the software and related documentation, and (ii) the names of
  10.  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  11.  * publicity relating to the software without the specific, prior written
  12.  * permission of Sam Leffler and Silicon Graphics.
  13.  * 
  14.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  15.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  16.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  17.  * 
  18.  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  19.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  20.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  21.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  22.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  23.  * OF THIS SOFTWARE.
  24.  */
  25. #include "tiffiop.h"
  26. #ifdef ZIP_SUPPORT
  27. /*
  28.  * TIFF Library.
  29.  *
  30.  * ZIP (aka Deflate) Compression Support
  31.  *
  32.  * This file is simply an interface to the zlib library written by
  33.  * Jean-loup Gailly and Mark Adler.  You must use version 1.0 or later
  34.  * of the library: this code assumes the 1.0 API and also depends on
  35.  * the ability to write the zlib header multiple times (one per strip)
  36.  * which was not possible with versions prior to 0.95.  Note also that
  37.  * older versions of this codec avoided this bug by supressing the header
  38.  * entirely.  This means that files written with the old library cannot
  39.  * be read; they should be converted to a different compression scheme
  40.  * and then reconverted.
  41.  *
  42.  * The data format used by the zlib library is described in the files
  43.  * zlib-3.1.doc, deflate-1.1.doc and gzip-4.1.doc, available in the
  44.  * directory ftp://ftp.uu.net/pub/archiving/zip/doc.  The library was
  45.  * last found at ftp://ftp.uu.net/pub/archiving/zip/zlib/zlib-0.99.tar.gz.
  46.  */
  47. #include "tif_predict.h"
  48. #include "../zip/zlib.h"
  49. #include <stdio.h>
  50. /*
  51.  * Sigh, ZLIB_VERSION is defined as a string so there's no
  52.  * way to do a proper check here.  Instead we guess based
  53.  * on the presence of #defines that were added between the
  54.  * 0.95 and 1.0 distributions.
  55.  */
  56. #if !defined(Z_NO_COMPRESSION) || !defined(Z_DEFLATED)
  57. #error "Antiquated ZLIB software; you must use version 1.0 or later"
  58. #endif
  59. /*
  60.  * State block for each open TIFF
  61.  * file using ZIP compression/decompression.
  62.  */
  63. typedef struct {
  64. TIFFPredictorState predict;
  65. z_stream stream;
  66. int zipquality; /* compression level */
  67. int state; /* state flags */
  68. #define ZSTATE_INIT 0x1 /* zlib setup successfully */
  69. TIFFVGetMethod vgetparent; /* super-class method */
  70. TIFFVSetMethod vsetparent; /* super-class method */
  71. } ZIPState;
  72. #define ZState(tif) ((ZIPState*) (tif)->tif_data)
  73. #define DecoderState(tif) ZState(tif)
  74. #define EncoderState(tif) ZState(tif)
  75. static int ZIPEncode(TIFF*, tidata_t, tsize_t, tsample_t);
  76. static int ZIPDecode(TIFF*, tidata_t, tsize_t, tsample_t);
  77. static int
  78. ZIPSetupDecode(TIFF* tif)
  79. {
  80. ZIPState* sp = DecoderState(tif);
  81. static const char module[] = "ZIPSetupDecode";
  82. assert(sp != NULL);
  83. if (inflateInit(&sp->stream) != Z_OK) {
  84. TIFFErrorExt(tif->tif_clientdata, module, "%s: %s", tif->tif_name, sp->stream.msg);
  85. return (0);
  86. } else {
  87. sp->state |= ZSTATE_INIT;
  88. return (1);
  89. }
  90. }
  91. /*
  92.  * Setup state for decoding a strip.
  93.  */
  94. static int
  95. ZIPPreDecode(TIFF* tif, tsample_t s)
  96. {
  97. ZIPState* sp = DecoderState(tif);
  98. (void) s;
  99. assert(sp != NULL);
  100. sp->stream.next_in = tif->tif_rawdata;
  101. sp->stream.avail_in = tif->tif_rawcc;
  102. return (inflateReset(&sp->stream) == Z_OK);
  103. }
  104. static int
  105. ZIPDecode(TIFF* tif, tidata_t op, tsize_t occ, tsample_t s)
  106. {
  107. ZIPState* sp = DecoderState(tif);
  108. static const char module[] = "ZIPDecode";
  109. (void) s;
  110. assert(sp != NULL);
  111. sp->stream.next_out = op;
  112. sp->stream.avail_out = occ;
  113. do {
  114. int state = inflate(&sp->stream, Z_PARTIAL_FLUSH);
  115. if (state == Z_STREAM_END)
  116. break;
  117. if (state == Z_DATA_ERROR) {
  118. TIFFErrorExt(tif->tif_clientdata, module,
  119.     "%s: Decoding error at scanline %d, %s",
  120.     tif->tif_name, tif->tif_row, sp->stream.msg);
  121. if (inflateSync(&sp->stream) != Z_OK)
  122. return (0);
  123. continue;
  124. }
  125. if (state != Z_OK) {
  126. TIFFErrorExt(tif->tif_clientdata, module, "%s: zlib error: %s",
  127.     tif->tif_name, sp->stream.msg);
  128. return (0);
  129. }
  130. } while (sp->stream.avail_out > 0);
  131. if (sp->stream.avail_out != 0) {
  132. TIFFErrorExt(tif->tif_clientdata, module,
  133.     "%s: Not enough data at scanline %d (short %d bytes)",
  134.     tif->tif_name, tif->tif_row, sp->stream.avail_out);
  135. return (0);
  136. }
  137. return (1);
  138. }
  139. static int
  140. ZIPSetupEncode(TIFF* tif)
  141. {
  142. ZIPState* sp = EncoderState(tif);
  143. static const char module[] = "ZIPSetupEncode";
  144. assert(sp != NULL);
  145. if (deflateInit(&sp->stream, sp->zipquality) != Z_OK) {
  146. TIFFErrorExt(tif->tif_clientdata, module, "%s: %s", tif->tif_name, sp->stream.msg);
  147. return (0);
  148. } else {
  149. sp->state |= ZSTATE_INIT;
  150. return (1);
  151. }
  152. }
  153. /*
  154.  * Reset encoding state at the start of a strip.
  155.  */
  156. static int
  157. ZIPPreEncode(TIFF* tif, tsample_t s)
  158. {
  159. ZIPState *sp = EncoderState(tif);
  160. (void) s;
  161. assert(sp != NULL);
  162. sp->stream.next_out = tif->tif_rawdata;
  163. sp->stream.avail_out = tif->tif_rawdatasize;
  164. return (deflateReset(&sp->stream) == Z_OK);
  165. }
  166. /*
  167.  * Encode a chunk of pixels.
  168.  */
  169. static int
  170. ZIPEncode(TIFF* tif, tidata_t bp, tsize_t cc, tsample_t s)
  171. {
  172. ZIPState *sp = EncoderState(tif);
  173. static const char module[] = "ZIPEncode";
  174. (void) s;
  175. sp->stream.next_in = bp;
  176. sp->stream.avail_in = cc;
  177. do {
  178. if (deflate(&sp->stream, Z_NO_FLUSH) != Z_OK) {
  179. TIFFErrorExt(tif->tif_clientdata, module, "%s: Encoder error: %s",
  180.     tif->tif_name, sp->stream.msg);
  181. return (0);
  182. }
  183. if (sp->stream.avail_out == 0) {
  184. tif->tif_rawcc = tif->tif_rawdatasize;
  185. TIFFFlushData1(tif);
  186. sp->stream.next_out = tif->tif_rawdata;
  187. sp->stream.avail_out = tif->tif_rawdatasize;
  188. }
  189. } while (sp->stream.avail_in > 0);
  190. return (1);
  191. }
  192. /*
  193.  * Finish off an encoded strip by flushing the last
  194.  * string and tacking on an End Of Information code.
  195.  */
  196. static int
  197. ZIPPostEncode(TIFF* tif)
  198. {
  199. ZIPState *sp = EncoderState(tif);
  200. static const char module[] = "ZIPPostEncode";
  201. int state;
  202. sp->stream.avail_in = 0;
  203. do {
  204. state = deflate(&sp->stream, Z_FINISH);
  205. switch (state) {
  206. case Z_STREAM_END:
  207. case Z_OK:
  208.     if ((int)sp->stream.avail_out != (int)tif->tif_rawdatasize)
  209.                     {
  210.     tif->tif_rawcc =
  211. tif->tif_rawdatasize - sp->stream.avail_out;
  212.     TIFFFlushData1(tif);
  213.     sp->stream.next_out = tif->tif_rawdata;
  214.     sp->stream.avail_out = tif->tif_rawdatasize;
  215.     }
  216.     break;
  217. default:
  218. TIFFErrorExt(tif->tif_clientdata, module, "%s: zlib error: %s",
  219. tif->tif_name, sp->stream.msg);
  220.     return (0);
  221. }
  222. } while (state != Z_STREAM_END);
  223. return (1);
  224. }
  225. static void
  226. ZIPCleanup(TIFF* tif)
  227. {
  228. ZIPState* sp = ZState(tif);
  229. assert(sp != 0);
  230. (void)TIFFPredictorCleanup(tif);
  231. tif->tif_tagmethods.vgetfield = sp->vgetparent;
  232. tif->tif_tagmethods.vsetfield = sp->vsetparent;
  233. if (sp->state&ZSTATE_INIT) {
  234. /* NB: avoid problems in the library */
  235. if (tif->tif_mode == O_RDONLY)
  236. inflateEnd(&sp->stream);
  237. else
  238. deflateEnd(&sp->stream);
  239. }
  240. _TIFFfree(sp);
  241. tif->tif_data = NULL;
  242. _TIFFSetDefaultCompressionState(tif);
  243. }
  244. static int
  245. ZIPVSetField(TIFF* tif, ttag_t tag, va_list ap)
  246. {
  247. ZIPState* sp = ZState(tif);
  248. static const char module[] = "ZIPVSetField";
  249. switch (tag) {
  250. case TIFFTAG_ZIPQUALITY:
  251. sp->zipquality = va_arg(ap, int);
  252. if (tif->tif_mode != O_RDONLY && (sp->state&ZSTATE_INIT)) {
  253. if (deflateParams(&sp->stream,
  254.     sp->zipquality, Z_DEFAULT_STRATEGY) != Z_OK) {
  255. TIFFErrorExt(tif->tif_clientdata, module, "%s: zlib error: %s",
  256.     tif->tif_name, sp->stream.msg);
  257. return (0);
  258. }
  259. }
  260. return (1);
  261. default:
  262. return (*sp->vsetparent)(tif, tag, ap);
  263. }
  264. /*NOTREACHED*/
  265. }
  266. static int
  267. ZIPVGetField(TIFF* tif, ttag_t tag, va_list ap)
  268. {
  269. ZIPState* sp = ZState(tif);
  270. switch (tag) {
  271. case TIFFTAG_ZIPQUALITY:
  272. *va_arg(ap, int*) = sp->zipquality;
  273. break;
  274. default:
  275. return (*sp->vgetparent)(tif, tag, ap);
  276. }
  277. return (1);
  278. }
  279. static const TIFFFieldInfo zipFieldInfo[] = {
  280.     { TIFFTAG_ZIPQUALITY,  0, 0, TIFF_ANY, FIELD_PSEUDO,
  281.       TRUE, FALSE, "" },
  282. };
  283. int
  284. TIFFInitZIP(TIFF* tif, int scheme)
  285. {
  286. ZIPState* sp;
  287. assert( (scheme == COMPRESSION_DEFLATE)
  288. || (scheme == COMPRESSION_ADOBE_DEFLATE));
  289. /*
  290.  * Allocate state block so tag methods have storage to record values.
  291.  */
  292. tif->tif_data = (tidata_t) _TIFFmalloc(sizeof (ZIPState));
  293. if (tif->tif_data == NULL)
  294. goto bad;
  295. sp = ZState(tif);
  296. sp->stream.zalloc = NULL;
  297. sp->stream.zfree = NULL;
  298. sp->stream.opaque = NULL;
  299. sp->stream.data_type = Z_BINARY;
  300. /*
  301.  * Merge codec-specific tag information and
  302.  * override parent get/set field methods.
  303.  */
  304. _TIFFMergeFieldInfo(tif, zipFieldInfo, TIFFArrayCount(zipFieldInfo));
  305. sp->vgetparent = tif->tif_tagmethods.vgetfield;
  306. tif->tif_tagmethods.vgetfield = ZIPVGetField; /* hook for codec tags */
  307. sp->vsetparent = tif->tif_tagmethods.vsetfield;
  308. tif->tif_tagmethods.vsetfield = ZIPVSetField; /* hook for codec tags */
  309. /* Default values for codec-specific fields */
  310. sp->zipquality = Z_DEFAULT_COMPRESSION; /* default comp. level */
  311. sp->state = 0;
  312. /*
  313.  * Install codec methods.
  314.  */
  315. tif->tif_setupdecode = ZIPSetupDecode;
  316. tif->tif_predecode = ZIPPreDecode;
  317. tif->tif_decoderow = ZIPDecode;
  318. tif->tif_decodestrip = ZIPDecode;
  319. tif->tif_decodetile = ZIPDecode;
  320. tif->tif_setupencode = ZIPSetupEncode;
  321. tif->tif_preencode = ZIPPreEncode;
  322. tif->tif_postencode = ZIPPostEncode;
  323. tif->tif_encoderow = ZIPEncode;
  324. tif->tif_encodestrip = ZIPEncode;
  325. tif->tif_encodetile = ZIPEncode;
  326. tif->tif_cleanup = ZIPCleanup;
  327. /*
  328.  * Setup predictor setup.
  329.  */
  330. (void) TIFFPredictorInit(tif);
  331. return (1);
  332. bad:
  333. TIFFErrorExt(tif->tif_clientdata, "TIFFInitZIP",
  334.      "No space for ZIP state block");
  335. return (0);
  336. }
  337. #endif /* ZIP_SUPORT */
  338. /* vim: set ts=8 sts=8 sw=8 noet: */