initial import
[dosrtxon] / libs / imago / libpng / pngwio.c
1 \r
2 /* pngwio.c - functions for data output\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 output.  Users who need\r
11  * special handling are expected to write functions that have the same\r
12  * arguments as these and perform similar functions, but that possibly\r
13  * use different output methods.  Note that you shouldn't change these\r
14  * functions, but rather write replacement functions and then change\r
15  * them at run time with png_set_write_fn(...).\r
16  */\r
17 \r
18 #define PNG_INTERNAL\r
19 #include "png.h"\r
20 #ifdef PNG_WRITE_SUPPORTED\r
21 \r
22 /* Write the data to whatever output you are using.  The default routine\r
23    writes to 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 writes.  This should never be asked\r
26    to write more than 64K on a 16 bit machine.  */\r
27 \r
28 void /* PRIVATE */\r
29 png_write_data(png_structp png_ptr, png_bytep data, png_size_t length)\r
30 {\r
31    if (png_ptr->write_data_fn != NULL )\r
32       (*(png_ptr->write_data_fn))(png_ptr, data, length);\r
33    else\r
34       png_error(png_ptr, "Call to NULL write function");\r
35 }\r
36 \r
37 #if !defined(PNG_NO_STDIO)\r
38 /* This is the function that does the actual writing of data.  If you are\r
39    not writing to a standard C stream, you should create a replacement\r
40    write_data function and use it at run time with png_set_write_fn(), rather\r
41    than changing the library. */\r
42 #ifndef USE_FAR_KEYWORD\r
43 void PNGAPI\r
44 png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length)\r
45 {\r
46    png_uint_32 check;\r
47 \r
48    if (png_ptr == NULL) return;\r
49 #if defined(_WIN32_WCE)\r
50    if ( !WriteFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )\r
51       check = 0;\r
52 #else\r
53    check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));\r
54 #endif\r
55    if (check != length)\r
56       png_error(png_ptr, "Write Error");\r
57 }\r
58 #else\r
59 /* this is the model-independent version. Since the standard I/O library\r
60    can't handle far buffers in the medium and small models, we have to copy\r
61    the data.\r
62 */\r
63 \r
64 #define NEAR_BUF_SIZE 1024\r
65 #define MIN(a,b) (a <= b ? a : b)\r
66 \r
67 void PNGAPI\r
68 png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length)\r
69 {\r
70    png_uint_32 check;\r
71    png_byte *near_data;  /* Needs to be "png_byte *" instead of "png_bytep" */\r
72    png_FILE_p io_ptr;\r
73 \r
74    if (png_ptr == NULL) return;\r
75    /* Check if data really is near. If so, use usual code. */\r
76    near_data = (png_byte *)CVT_PTR_NOCHECK(data);\r
77    io_ptr = (png_FILE_p)CVT_PTR(png_ptr->io_ptr);\r
78    if ((png_bytep)near_data == data)\r
79    {\r
80 #if defined(_WIN32_WCE)\r
81       if ( !WriteFile(io_ptr, near_data, length, &check, NULL) )\r
82          check = 0;\r
83 #else\r
84       check = fwrite(near_data, 1, length, io_ptr);\r
85 #endif\r
86    }\r
87    else\r
88    {\r
89       png_byte buf[NEAR_BUF_SIZE];\r
90       png_size_t written, remaining, err;\r
91       check = 0;\r
92       remaining = length;\r
93       do\r
94       {\r
95          written = MIN(NEAR_BUF_SIZE, remaining);\r
96          png_memcpy(buf, data, written); /* copy far buffer to near buffer */\r
97 #if defined(_WIN32_WCE)\r
98          if ( !WriteFile(io_ptr, buf, written, &err, NULL) )\r
99             err = 0;\r
100 #else\r
101          err = fwrite(buf, 1, written, io_ptr);\r
102 #endif\r
103          if (err != written)\r
104             break;\r
105          else\r
106             check += err;\r
107          data += written;\r
108          remaining -= written;\r
109       }\r
110       while (remaining != 0);\r
111    }\r
112    if (check != length)\r
113       png_error(png_ptr, "Write Error");\r
114 }\r
115 \r
116 #endif\r
117 #endif\r
118 \r
119 /* This function is called to output any data pending writing (normally\r
120    to disk).  After png_flush is called, there should be no data pending\r
121    writing in any buffers. */\r
122 #if defined(PNG_WRITE_FLUSH_SUPPORTED)\r
123 void /* PRIVATE */\r
124 png_flush(png_structp png_ptr)\r
125 {\r
126    if (png_ptr->output_flush_fn != NULL)\r
127       (*(png_ptr->output_flush_fn))(png_ptr);\r
128 }\r
129 \r
130 #if !defined(PNG_NO_STDIO)\r
131 void PNGAPI\r
132 png_default_flush(png_structp png_ptr)\r
133 {\r
134 #if !defined(_WIN32_WCE)\r
135    png_FILE_p io_ptr;\r
136 #endif\r
137    if (png_ptr == NULL) return;\r
138 #if !defined(_WIN32_WCE)\r
139    io_ptr = (png_FILE_p)CVT_PTR((png_ptr->io_ptr));\r
140    if (io_ptr != NULL)\r
141       fflush(io_ptr);\r
142 #endif\r
143 }\r
144 #endif\r
145 #endif\r
146 \r
147 /* This function allows the application to supply new output functions for\r
148    libpng if standard C streams aren't being used.\r
149 \r
150    This function takes as its arguments:\r
151    png_ptr       - pointer to a png output data structure\r
152    io_ptr        - pointer to user supplied structure containing info about\r
153                    the output functions.  May be NULL.\r
154    write_data_fn - pointer to a new output function that takes as its\r
155                    arguments a pointer to a png_struct, a pointer to\r
156                    data to be written, and a 32-bit unsigned int that is\r
157                    the number of bytes to be written.  The new write\r
158                    function should call png_error(png_ptr, "Error msg")\r
159                    to exit and output any fatal error messages.\r
160    flush_data_fn - pointer to a new flush function that takes as its\r
161                    arguments a pointer to a png_struct.  After a call to\r
162                    the flush function, there should be no data in any buffers\r
163                    or pending transmission.  If the output method doesn't do\r
164                    any buffering of ouput, a function prototype must still be\r
165                    supplied although it doesn't have to do anything.  If\r
166                    PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile\r
167                    time, output_flush_fn will be ignored, although it must be\r
168                    supplied for compatibility. */\r
169 void PNGAPI\r
170 png_set_write_fn(png_structp png_ptr, png_voidp io_ptr,\r
171    png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn)\r
172 {\r
173    if (png_ptr == NULL) return;\r
174    png_ptr->io_ptr = io_ptr;\r
175 \r
176 #if !defined(PNG_NO_STDIO)\r
177    if (write_data_fn != NULL)\r
178       png_ptr->write_data_fn = write_data_fn;\r
179    else\r
180       png_ptr->write_data_fn = png_default_write_data;\r
181 #else\r
182    png_ptr->write_data_fn = write_data_fn;\r
183 #endif\r
184 \r
185 #if defined(PNG_WRITE_FLUSH_SUPPORTED)\r
186 #if !defined(PNG_NO_STDIO)\r
187    if (output_flush_fn != NULL)\r
188       png_ptr->output_flush_fn = output_flush_fn;\r
189    else\r
190       png_ptr->output_flush_fn = png_default_flush;\r
191 #else\r
192    png_ptr->output_flush_fn = output_flush_fn;\r
193 #endif\r
194 #endif /* PNG_WRITE_FLUSH_SUPPORTED */\r
195 \r
196    /* It is an error to read while writing a png file */\r
197    if (png_ptr->read_data_fn != NULL)\r
198    {\r
199       png_ptr->read_data_fn = NULL;\r
200       png_warning(png_ptr,\r
201          "Attempted to set both read_data_fn and write_data_fn in");\r
202       png_warning(png_ptr,\r
203          "the same structure.  Resetting read_data_fn to NULL.");\r
204    }\r
205 }\r
206 \r
207 #if defined(USE_FAR_KEYWORD)\r
208 #if defined(_MSC_VER)\r
209 void *png_far_to_near(png_structp png_ptr, png_voidp ptr, int check)\r
210 {\r
211    void *near_ptr;\r
212    void FAR *far_ptr;\r
213    FP_OFF(near_ptr) = FP_OFF(ptr);\r
214    far_ptr = (void FAR *)near_ptr;\r
215    if (check != 0)\r
216       if (FP_SEG(ptr) != FP_SEG(far_ptr))\r
217          png_error(png_ptr, "segment lost in conversion");\r
218    return(near_ptr);\r
219 }\r
220 #  else\r
221 void *png_far_to_near(png_structp png_ptr, png_voidp ptr, int check)\r
222 {\r
223    void *near_ptr;\r
224    void FAR *far_ptr;\r
225    near_ptr = (void FAR *)ptr;\r
226    far_ptr = (void FAR *)near_ptr;\r
227    if (check != 0)\r
228       if (far_ptr != ptr)\r
229          png_error(png_ptr, "segment lost in conversion");\r
230    return(near_ptr);\r
231 }\r
232 #   endif\r
233 #   endif\r
234 #endif /* PNG_WRITE_SUPPORTED */\r