pngio.c
上传用户:zlh9724
上传日期:2007-01-04
资源大小:1991k
文件大小:10k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. /* pngio.c - stub functions for i/o and memory allocation
  2. libpng 1.0 beta 2 - version 0.87
  3.    For conditions of distribution and use, see copyright notice in png.h
  4. Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
  5.    January 15, 1996
  6.    This file provides a location for all input/output.  Users which need
  7. special handling are expected to write functions which have the same
  8. arguments as these, and perform similar functions, but possibly have
  9. different I/O methods.  Note that you shouldn't change these functions,
  10. but rather write replacement functions and then change them at run
  11. time with png_set_write_fn(...) or png_set_read_fn(...), etc */
  12. #define PNG_INTERNAL
  13. #include "png.h"
  14. /* Write the data to whatever output you are using.  The default routine
  15. writes to a file pointer.  Note that this routine sometimes gets called
  16. with very small lengths, so you should implement some kind of simple
  17. buffering if you are using unbuffered writes.  This should never be asked
  18. to write more then 64K on a 16 bit machine.  The cast to png_size_t is
  19. there to quiet warnings of certain compilers. */
  20. void
  21. png_write_data(png_structp png_ptr, png_bytep data, png_uint_32 length)
  22. {
  23. if (png_ptr->write_data_fn)
  24. (*(png_ptr->write_data_fn))(png_ptr, data, length);
  25. else
  26. png_error(png_ptr, "Call to NULL write function");
  27. }
  28. /* This is the function which does the actual writing of data.  If you are
  29. not writing to a standard C stream, you should create a replacement
  30. write_data function and use it at run time with png_set_write_fn(), rather
  31. than changing the library. */
  32. #ifndef USE_FAR_KEYWORD
  33. void
  34. png_default_write_data(png_structp png_ptr, png_bytep data, png_uint_32 length)
  35. {
  36.    png_uint_32 check;
  37.    check = fwrite(data, 1, (png_size_t)length, png_ptr->fp);
  38.    if (check != length)
  39.    {
  40.       png_error(png_ptr, "Write Error");
  41.    }
  42. }
  43. #else
  44. /* this is the model-independent version. Since the standard I/O library
  45.    can't handle far buffers in the medium and small models, we have to copy
  46. the data.
  47. */
  48. #define NEAR_BUF_SIZE 1024
  49. #define MIN(a,b) (a <= b ? a : b)
  50. #ifdef _MSC_VER
  51. /* for FP_OFF */
  52. #include <dos.h>
  53. #endif
  54. void
  55. png_default_write_data(png_structp png_ptr, png_bytep data, png_uint_32 length)
  56. {
  57.    png_uint_32 check;
  58.    png_byte *n_data;
  59.    /* Check if data really is near. If so, use usual code. */
  60. #ifdef _MSC_VER
  61. /* do it this way just to quiet warning */
  62.    FP_OFF(n_data) = FP_OFF(data);
  63. if (FP_SEG(n_data) == FP_SEG(data))
  64. #else
  65. /* this works in MSC also but with lost segment warning */
  66.    n_data = (png_byte *)data;
  67. if ((png_bytep)n_data == data)
  68. #endif
  69.    {
  70.       check = fwrite(n_data, 1, (png_size_t)length, png_ptr->fp);
  71.    }
  72. else
  73.    {
  74.       png_byte buf[NEAR_BUF_SIZE];
  75.       png_size_t written, remaining, err;
  76.       check = 0;
  77.       remaining = (png_size_t)length;
  78. do
  79. {
  80. written = MIN(NEAR_BUF_SIZE, remaining);
  81. png_memcpy(buf, data, written); /* copy far buffer to near buffer */
  82.          err = fwrite(buf, 1, written, png_ptr->fp);
  83. if (err != written)
  84.             break;
  85. else
  86.             check += err;
  87.          data += written;
  88.          remaining -= written;
  89.       }
  90. while (remaining != 0);
  91. }
  92. if (check != length)
  93. {
  94. png_error(png_ptr, "Write Error");
  95. }
  96. }
  97. #endif
  98. /* Read the data from whatever input you are using.  The default routine
  99. reads from a file pointer.  Note that this routine sometimes gets called
  100. with very small lengths, so you should implement some kind of simple
  101. buffering if you are using unbuffered reads.  This should never be asked
  102. to read more then 64K on a 16 bit machine.  The cast to png_size_t is
  103. there to quiet some compilers */
  104. void
  105. png_read_data(png_structp png_ptr, png_bytep data, png_uint_32 length)
  106. {
  107. #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
  108. if (png_ptr->read_mode == PNG_READ_PUSH_MODE)
  109. {
  110.     png_push_fill_buffer(png_ptr, data, length);
  111. }
  112.    else
  113. #endif
  114. {
  115. if (png_ptr->read_data_fn)
  116. (*(png_ptr->read_data_fn))(png_ptr, data, length);
  117. else
  118. png_error(png_ptr, "Call to NULL read function");
  119. }
  120. }
  121. /* This is the function which does the actual reading of data.  If you are
  122. not reading from a standard C stream, you should create a replacement
  123. read_data function and use it at run time with png_set_read_fn(), rather
  124. than changing the library. */
  125. #ifndef USE_FAR_KEYWORD
  126. void
  127. png_default_read_data(png_structp png_ptr, png_bytep data, png_uint_32 length)
  128. {
  129.    png_uint_32 check;
  130.    check = fread(data, 1, (size_t)length, png_ptr->fp);
  131.    if (check != length)
  132.    {
  133.       png_error(png_ptr, "Read Error");
  134.    }
  135. }
  136. #else
  137. void
  138. png_default_read_data(png_structp png_ptr, png_bytep data, png_uint_32 length)
  139. {
  140.    png_uint_32 check;
  141.    png_byte *n_data;
  142.    /* Check if data really is near. If so, use usual code. */
  143. #ifdef _MSC_VER
  144.    /* do it this way just to quiet warning */
  145.    FP_OFF(n_data) = FP_OFF(data);
  146. if (FP_SEG(n_data) == FP_SEG(data))
  147. #else
  148.    /* this works in MSC also but with lost segment warning */
  149.    n_data = (png_byte *)data;
  150.    if ((png_bytep)n_data == data)
  151. #endif
  152.    {
  153.       check = fread(n_data, 1, (size_t)length, png_ptr->fp);
  154. }
  155.    else
  156.    {
  157.       png_byte buf[NEAR_BUF_SIZE];
  158.       png_size_t read, remaining, err;
  159.       check = 0;
  160.       remaining = (png_size_t)length;
  161.       do
  162.       {
  163. read = MIN(NEAR_BUF_SIZE, remaining);
  164.          err = fread(buf, 1, read, png_ptr->fp);
  165. png_memcpy(data, buf, read); /* copy far buffer to near buffer */
  166.          if(err != read)
  167.             break;
  168.          else
  169.             check += err;
  170.          data += read;
  171. remaining -= read;
  172. }
  173. while (remaining != 0);
  174. }
  175. if (check != length)
  176. {
  177. png_error(png_ptr, "read Error");
  178. }
  179. }
  180. #endif
  181. /* This function is called to output any data pending writing (normally
  182. to disk.  After png_flush is called, there should be no data pending
  183. writing in any buffers. */
  184. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  185. void
  186. png_flush(png_structp png_ptr)
  187. {
  188. if (png_ptr->output_flush_fn)
  189. (*(png_ptr->output_flush_fn))(png_ptr);
  190. }
  191. void
  192. png_default_flush(png_structp png_ptr)
  193. {
  194. if (png_ptr->fp)
  195. fflush(png_ptr->fp);
  196. }
  197. #endif
  198. /* This function allows the application to supply new output functions for
  199. libpng if standard C streams aren't being used.
  200. This function takes as its arguments:
  201. png_ptr       - pointer to a png output data structure
  202. io_ptr        - pointer to user supplied structure containing info about
  203.  the output functions.  May be NULL.
  204. write_data_fn - pointer to a new output function which takes as its
  205.  arguments a pointer to a png_struct, a pointer to
  206.  data to be written, and a 32-bit unsigned int which is
  207.  the number of bytes to be written.  The new write
  208.  function should call png_error(png_ptr, "Error msg")
  209.  to exit and output any fatal error messages.
  210. flush_data_fn - pointer to a new flush function which takes as its
  211.  arguments a pointer to a png_struct.  After a call to
  212.  the flush function, there should be no data in any buffers
  213.  or pending transmission.  If the output method doesn't do
  214.  any buffering of ouput, a function prototype must still be
  215.  supplied although it doesn't have to do anything.  If
  216.  PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile
  217.  time, output_flush_fn will be ignored, although it must be
  218.  supplied for compatibility. */
  219. void
  220. png_set_write_fn(png_structp png_ptr, png_voidp io_ptr,
  221. png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn)
  222. {
  223. png_ptr->io_ptr = io_ptr;
  224. if (write_data_fn)
  225. png_ptr->write_data_fn = write_data_fn;
  226. else
  227. png_ptr->write_data_fn = png_default_write_data;
  228. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  229. if (output_flush_fn)
  230. png_ptr->output_flush_fn = output_flush_fn;
  231. else
  232. png_ptr->output_flush_fn = png_default_flush;
  233. #endif /* PNG_WRITE_FLUSH_SUPPORTED */
  234. /* It is an error to read while writing a png file */
  235. png_ptr->read_data_fn = NULL;
  236. }
  237. /* This function allows the application to supply a new input function
  238. for libpng if standard C streams aren't being used.
  239. This function takes as its arguments:
  240. png_ptr      - pointer to a png input data structure
  241. io_ptr       - pointer to user supplied structure containing info about
  242. the input functions.  May be NULL.
  243. read_data_fn - pointer to a new input function which takes as it's
  244. arguments a pointer to a png_struct, a pointer to
  245. a location where input data can be stored, and a 32-bit
  246. unsigned int which is the number of bytes to be read.
  247. To exit and output any fatal error messages the new write
  248.                   function should call png_error(png_ptr, "Error msg"). */
  249. void
  250. png_set_read_fn(png_structp png_ptr, png_voidp io_ptr,
  251. png_rw_ptr read_data_fn)
  252. {
  253. png_ptr->io_ptr = io_ptr;
  254. if (read_data_fn)
  255. png_ptr->read_data_fn = read_data_fn;
  256. else
  257. png_ptr->read_data_fn = png_default_read_data;
  258. /* It is an error to write to a read device */
  259. png_ptr->write_data_fn = NULL;
  260. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  261. png_ptr->output_flush_fn = NULL;
  262. #endif /* PNG_WRITE_FLUSH_SUPPORTED */
  263. }
  264. /* This function returns a pointer to the io_ptr associated with the user
  265. functions.  The application should free any memory associated with this
  266. pointer before png_write_destroy and png_read_destroy are called. */
  267. png_voidp
  268. png_get_io_ptr(png_structp png_ptr)
  269. {
  270. return png_ptr->io_ptr;
  271. }
  272. /* Initialize the default input/output functions for the png file.  If you
  273. change the read, or write routines, you can call either png_set_read_fn()
  274.    or png_set_write_fn() instead of png_init_io(). */
  275. void
  276. png_init_io(png_structp png_ptr, FILE *fp)
  277. {
  278. png_ptr->fp = fp;
  279. png_ptr->read_data_fn = png_default_read_data;
  280. png_ptr->write_data_fn = png_default_write_data;
  281. #ifdef PNG_WRITE_FLUSH_SUPPORTED
  282. png_ptr->output_flush_fn = png_default_flush;
  283. #endif
  284. }