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