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