pngrio.c
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:6k
源码类别:

界面编程

开发平台:

Visual C++

  1. /* pngrio.c - functions for data input
  2.  *
  3.  * Last changed in libpng 1.2.30 [August 15, 2008]
  4.  * For conditions of distribution and use, see copyright notice in png.h
  5.  * Copyright (c) 1998-2008 Glenn Randers-Pehrson
  6.  * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
  7.  * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
  8.  *
  9.  * This file provides a location for all input.  Users who need
  10.  * special handling are expected to write a function that has the same
  11.  * arguments as this and performs a similar function, but that possibly
  12.  * has a different input method.  Note that you shouldn't change this
  13.  * function, but rather write a replacement function and then make
  14.  * libpng use it at run time with png_set_read_fn(...).
  15.  */
  16. #define PNG_INTERNAL
  17. #include "png.h"
  18. #if defined(PNG_READ_SUPPORTED)
  19. /* Read the data from whatever input you are using.  The default routine
  20.    reads from a file pointer.  Note that this routine sometimes gets called
  21.    with very small lengths, so you should implement some kind of simple
  22.    buffering if you are using unbuffered reads.  This should never be asked
  23.    to read more then 64K on a 16 bit machine. */
  24. void /* PRIVATE */
  25. png_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
  26. {
  27.    png_debug1(4, "reading %d bytes", (int)length);
  28.    if (png_ptr->read_data_fn != NULL)
  29.       (*(png_ptr->read_data_fn))(png_ptr, data, length);
  30.    else
  31.       png_error(png_ptr, "Call to NULL read function");
  32. }
  33. #if !defined(PNG_NO_STDIO)
  34. /* This is the function that does the actual reading of data.  If you are
  35.    not reading from a standard C stream, you should create a replacement
  36.    read_data function and use it at run time with png_set_read_fn(), rather
  37.    than changing the library. */
  38. #ifndef USE_FAR_KEYWORD
  39. void PNGAPI
  40. png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
  41. {
  42.    png_size_t check;
  43.    if (png_ptr == NULL) return;
  44.    /* fread() returns 0 on error, so it is OK to store this in a png_size_t
  45.     * instead of an int, which is what fread() actually returns.
  46.     */
  47. #if defined(_WIN32_WCE)
  48.    if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
  49.       check = 0;
  50. #else
  51.    check = (png_size_t)fread(data, (png_size_t)1, length,
  52.       (png_FILE_p)png_ptr->io_ptr);
  53. #endif
  54.    if (check != length)
  55.       png_error(png_ptr, "Read Error");
  56. }
  57. #else
  58. /* this is the model-independent version. Since the standard I/O library
  59.    can't handle far buffers in the medium and small models, we have to copy
  60.    the data.
  61. */
  62. #define NEAR_BUF_SIZE 1024
  63. #define MIN(a,b) (a <= b ? a : b)
  64. static void PNGAPI
  65. png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
  66. {
  67.    int check;
  68.    png_byte *n_data;
  69.    png_FILE_p io_ptr;
  70.    if (png_ptr == NULL) return;
  71.    /* Check if data really is near. If so, use usual code. */
  72.    n_data = (png_byte *)CVT_PTR_NOCHECK(data);
  73.    io_ptr = (png_FILE_p)CVT_PTR(png_ptr->io_ptr);
  74.    if ((png_bytep)n_data == data)
  75.    {
  76. #if defined(_WIN32_WCE)
  77.       if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
  78.          check = 0;
  79. #else
  80.       check = fread(n_data, 1, length, io_ptr);
  81. #endif
  82.    }
  83.    else
  84.    {
  85.       png_byte buf[NEAR_BUF_SIZE];
  86.       png_size_t read, remaining, err;
  87.       check = 0;
  88.       remaining = length;
  89.       do
  90.       {
  91.          read = MIN(NEAR_BUF_SIZE, remaining);
  92. #if defined(_WIN32_WCE)
  93.          if ( !ReadFile((HANDLE)(io_ptr), buf, read, &err, NULL) )
  94.             err = 0;
  95. #else
  96.          err = fread(buf, (png_size_t)1, read, io_ptr);
  97. #endif
  98.          png_memcpy(data, buf, read); /* copy far buffer to near buffer */
  99.          if (err != read)
  100.             break;
  101.          else
  102.             check += err;
  103.          data += read;
  104.          remaining -= read;
  105.       }
  106.       while (remaining != 0);
  107.    }
  108.    if ((png_uint_32)check != (png_uint_32)length)
  109.       png_error(png_ptr, "read Error");
  110. }
  111. #endif
  112. #endif
  113. /* This function allows the application to supply a new input function
  114.    for libpng if standard C streams aren't being used.
  115.    This function takes as its arguments:
  116.    png_ptr      - pointer to a png input data structure
  117.    io_ptr       - pointer to user supplied structure containing info about
  118.                   the input functions.  May be NULL.
  119.    read_data_fn - pointer to a new input function that takes as its
  120.                   arguments a pointer to a png_struct, a pointer to
  121.                   a location where input data can be stored, and a 32-bit
  122.                   unsigned int that is the number of bytes to be read.
  123.                   To exit and output any fatal error messages the new write
  124.                   function should call png_error(png_ptr, "Error msg"). */
  125. void PNGAPI
  126. png_set_read_fn(png_structp png_ptr, png_voidp io_ptr,
  127.    png_rw_ptr read_data_fn)
  128. {
  129.    if (png_ptr == NULL) return;
  130.    png_ptr->io_ptr = io_ptr;
  131. #if !defined(PNG_NO_STDIO)
  132.    if (read_data_fn != NULL)
  133.       png_ptr->read_data_fn = read_data_fn;
  134.    else
  135.       png_ptr->read_data_fn = png_default_read_data;
  136. #else
  137.    png_ptr->read_data_fn = read_data_fn;
  138. #endif
  139.    /* It is an error to write to a read device */
  140.    if (png_ptr->write_data_fn != NULL)
  141.    {
  142.       png_ptr->write_data_fn = NULL;
  143.       png_warning(png_ptr,
  144.          "It's an error to set both read_data_fn and write_data_fn in the ");
  145.       png_warning(png_ptr,
  146.          "same structure.  Resetting write_data_fn to NULL.");
  147.    }
  148. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  149.    png_ptr->output_flush_fn = NULL;
  150. #endif
  151. }
  152. #endif /* PNG_READ_SUPPORTED */