dbf-halloween2015

annotate libs/libpng/pngrio.c @ 1:c3f5c32cb210

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