added page flipping/scrolling VBE calls
[dosrtxon] / libs / imago / libpng / pngrio.c
1 \r
2 /* pngrio.c - functions for data input\r
3  *\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
9  *\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
16  */\r
17 \r
18 #define PNG_INTERNAL\r
19 #include "png.h"\r
20 #if defined(PNG_READ_SUPPORTED)\r
21 \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
27 void /* PRIVATE */\r
28 png_read_data(png_structp png_ptr, png_bytep data, png_size_t length)\r
29 {\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
33    else\r
34       png_error(png_ptr, "Call to NULL read function");\r
35 }\r
36 \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
43 void PNGAPI\r
44 png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length)\r
45 {\r
46    png_size_t check;\r
47 \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
51     */\r
52 #if defined(_WIN32_WCE)\r
53    if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )\r
54       check = 0;\r
55 #else\r
56    check = (png_size_t)fread(data, (png_size_t)1, length,\r
57       (png_FILE_p)png_ptr->io_ptr);\r
58 #endif\r
59 \r
60    if (check != length)\r
61       png_error(png_ptr, "Read Error");\r
62 }\r
63 #else\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
66    the data.\r
67 */\r
68 \r
69 #define NEAR_BUF_SIZE 1024\r
70 #define MIN(a,b) (a <= b ? a : b)\r
71 \r
72 static void PNGAPI\r
73 png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length)\r
74 {\r
75    int check;\r
76    png_byte *n_data;\r
77    png_FILE_p io_ptr;\r
78 \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
84    {\r
85 #if defined(_WIN32_WCE)\r
86       if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )\r
87          check = 0;\r
88 #else\r
89       check = fread(n_data, 1, length, io_ptr);\r
90 #endif\r
91    }\r
92    else\r
93    {\r
94       png_byte buf[NEAR_BUF_SIZE];\r
95       png_size_t read, remaining, err;\r
96       check = 0;\r
97       remaining = length;\r
98       do\r
99       {\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
103             err = 0;\r
104 #else\r
105          err = fread(buf, (png_size_t)1, read, io_ptr);\r
106 #endif\r
107          png_memcpy(data, buf, read); /* copy far buffer to near buffer */\r
108          if (err != read)\r
109             break;\r
110          else\r
111             check += err;\r
112          data += read;\r
113          remaining -= read;\r
114       }\r
115       while (remaining != 0);\r
116    }\r
117    if ((png_uint_32)check != (png_uint_32)length)\r
118       png_error(png_ptr, "read Error");\r
119 }\r
120 #endif\r
121 #endif\r
122 \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
125 \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
136 void PNGAPI\r
137 png_set_read_fn(png_structp png_ptr, png_voidp io_ptr,\r
138    png_rw_ptr read_data_fn)\r
139 {\r
140    if (png_ptr == NULL) return;\r
141    png_ptr->io_ptr = io_ptr;\r
142 \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
146    else\r
147       png_ptr->read_data_fn = png_default_read_data;\r
148 #else\r
149    png_ptr->read_data_fn = read_data_fn;\r
150 #endif\r
151 \r
152    /* It is an error to write to a read device */\r
153    if (png_ptr->write_data_fn != NULL)\r
154    {\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
160    }\r
161 \r
162 #if defined(PNG_WRITE_FLUSH_SUPPORTED)\r
163    png_ptr->output_flush_fn = NULL;\r
164 #endif\r
165 }\r
166 #endif /* PNG_READ_SUPPORTED */\r