pngrio.c
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:5k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. /* pngrio.c - functions for data input
  2.  *
  3.  * Last changed in libpng 1.2.9 April 14, 2006
  4.  * For conditions of distribution and use, see copyright notice in png.h
  5.  * Copyright (c) 1998-2006 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 bytesn", (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.    /* fread() returns 0 on error, so it is OK to store this in a png_size_t
  44.     * instead of an int, which is what fread() actually returns.
  45.     */
  46. #if defined(_WIN32_WCE)
  47.    if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
  48.       check = 0;
  49. #else
  50.    check = (png_size_t)fread(data, (png_size_t)1, length,
  51.       (png_FILE_p)png_ptr->io_ptr);
  52. #endif
  53.    if (check != length)
  54.       png_error(png_ptr, "Read Error");
  55. }
  56. #else
  57. /* this is the model-independent version. Since the standard I/O library
  58.    can't handle far buffers in the medium and small models, we have to copy
  59.    the data.
  60. */
  61. #define NEAR_BUF_SIZE 1024
  62. #define MIN(a,b) (a <= b ? a : b)
  63. static void PNGAPI
  64. png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
  65. {
  66.    int check;
  67.    png_byte *n_data;
  68.    png_FILE_p io_ptr;
  69.    /* Check if data really is near. If so, use usual code. */
  70.    n_data = (png_byte *)CVT_PTR_NOCHECK(data);
  71.    io_ptr = (png_FILE_p)CVT_PTR(png_ptr->io_ptr);
  72.    if ((png_bytep)n_data == data)
  73.    {
  74. #if defined(_WIN32_WCE)
  75.       if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
  76.          check = 0;
  77. #else
  78.       check = fread(n_data, 1, length, io_ptr);
  79. #endif
  80.    }
  81.    else
  82.    {
  83.       png_byte buf[NEAR_BUF_SIZE];
  84.       png_size_t read, remaining, err;
  85.       check = 0;
  86.       remaining = length;
  87.       do
  88.       {
  89.          read = MIN(NEAR_BUF_SIZE, remaining);
  90. #if defined(_WIN32_WCE)
  91.          if ( !ReadFile((HANDLE)(io_ptr), buf, read, &err, NULL) )
  92.             err = 0;
  93. #else
  94.          err = fread(buf, (png_size_t)1, read, io_ptr);
  95. #endif
  96.          png_memcpy(data, buf, read); /* copy far buffer to near buffer */
  97.          if(err != read)
  98.             break;
  99.          else
  100.             check += err;
  101.          data += read;
  102.          remaining -= read;
  103.       }
  104.       while (remaining != 0);
  105.    }
  106.    if ((png_uint_32)check != (png_uint_32)length)
  107.       png_error(png_ptr, "read Error");
  108. }
  109. #endif
  110. #endif
  111. /* This function allows the application to supply a new input function
  112.    for libpng if standard C streams aren't being used.
  113.    This function takes as its arguments:
  114.    png_ptr      - pointer to a png input data structure
  115.    io_ptr       - pointer to user supplied structure containing info about
  116.                   the input functions.  May be NULL.
  117.    read_data_fn - pointer to a new input function that takes as its
  118.                   arguments a pointer to a png_struct, a pointer to
  119.                   a location where input data can be stored, and a 32-bit
  120.                   unsigned int that is the number of bytes to be read.
  121.                   To exit and output any fatal error messages the new write
  122.                   function should call png_error(png_ptr, "Error msg"). */
  123. void PNGAPI
  124. png_set_read_fn(png_structp png_ptr, png_voidp io_ptr,
  125.    png_rw_ptr read_data_fn)
  126. {
  127.    png_ptr->io_ptr = io_ptr;
  128. #if !defined(PNG_NO_STDIO)
  129.    if (read_data_fn != NULL)
  130.       png_ptr->read_data_fn = read_data_fn;
  131.    else
  132.       png_ptr->read_data_fn = png_default_read_data;
  133. #else
  134.    png_ptr->read_data_fn = read_data_fn;
  135. #endif
  136.    /* It is an error to write to a read device */
  137.    if (png_ptr->write_data_fn != NULL)
  138.    {
  139.       png_ptr->write_data_fn = NULL;
  140.       png_warning(png_ptr,
  141.          "It's an error to set both read_data_fn and write_data_fn in the ");
  142.       png_warning(png_ptr,
  143.          "same structure.  Resetting write_data_fn to NULL.");
  144.    }
  145. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  146.    png_ptr->output_flush_fn = NULL;
  147. #endif
  148. }
  149. #endif /* PNG_READ_SUPPORTED */