blob: 497c5caee21e7c0fac46a9c9cb3b7e30ab914456 [file] [log] [blame]
Guy Schalnate5a37791996-06-05 15:50:50 -05001
2/* pngwio.c - functions for data output
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003 *
4 * libpng 1.00.97
5 * For conditions of distribution and use, see copyright notice in png.h
6 * Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
7 * Copyright (c) 1996, 1997 Andreas Dilger
8 * May 28, 1997
9 *
10 * This file provides a location for all output. Users which need
11 * special handling are expected to write functions which have the same
12 * arguments as these, and perform similar functions, but possibly use
13 * different output methods. Note that you shouldn't change these
14 * functions, but rather write replacement functions and then change
15 * them at run time with png_set_write_fn(...).
16 */
Guy Schalnate5a37791996-06-05 15:50:50 -050017
18#define PNG_INTERNAL
19#include "png.h"
20
21/* Write the data to whatever output you are using. The default routine
22 writes to a file pointer. Note that this routine sometimes gets called
23 with very small lengths, so you should implement some kind of simple
24 buffering if you are using unbuffered writes. This should never be asked
Andreas Dilger47a0c421997-05-16 02:46:07 -050025 to write more then 64K on a 16 bit machine. */
Guy Schalnate5a37791996-06-05 15:50:50 -050026
27void
Andreas Dilger47a0c421997-05-16 02:46:07 -050028png_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
Guy Schalnate5a37791996-06-05 15:50:50 -050029{
Andreas Dilger47a0c421997-05-16 02:46:07 -050030 if (png_ptr->write_data_fn != NULL )
Guy Schalnate5a37791996-06-05 15:50:50 -050031 (*(png_ptr->write_data_fn))(png_ptr, data, length);
32 else
33 png_error(png_ptr, "Call to NULL write function");
34}
35
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -060036#if !defined(PNG_NO_STDIO)
Guy Schalnate5a37791996-06-05 15:50:50 -050037/* This is the function which does the actual writing of data. If you are
38 not writing to a standard C stream, you should create a replacement
39 write_data function and use it at run time with png_set_write_fn(), rather
40 than changing the library. */
41#ifndef USE_FAR_KEYWORD
42static void
Andreas Dilger47a0c421997-05-16 02:46:07 -050043png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
Guy Schalnate5a37791996-06-05 15:50:50 -050044{
45 png_uint_32 check;
46
Andreas Dilger47a0c421997-05-16 02:46:07 -050047 check = fwrite(data, 1, length, (FILE *)(png_ptr->io_ptr));
Guy Schalnate5a37791996-06-05 15:50:50 -050048 if (check != length)
49 {
50 png_error(png_ptr, "Write Error");
51 }
52}
53#else
54/* this is the model-independent version. Since the standard I/O library
55 can't handle far buffers in the medium and small models, we have to copy
56 the data.
57*/
58
59#define NEAR_BUF_SIZE 1024
60#define MIN(a,b) (a <= b ? a : b)
61
Guy Schalnate5a37791996-06-05 15:50:50 -050062static void
Andreas Dilger47a0c421997-05-16 02:46:07 -050063png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
Guy Schalnate5a37791996-06-05 15:50:50 -050064{
65 png_uint_32 check;
Andreas Dilger47a0c421997-05-16 02:46:07 -050066 png_byte *near_data; /* Needs to be "png_byte *" instead of "png_bytep" */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060067 FILE *io_ptr;
Guy Schalnate5a37791996-06-05 15:50:50 -050068
69 /* Check if data really is near. If so, use usual code. */
Andreas Dilger47a0c421997-05-16 02:46:07 -050070 near_data = (png_byte *)CVT_PTR_NOCHECK(data);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060071 io_ptr = (FILE *)CVT_PTR(png_ptr->io_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -050072 if ((png_bytep)near_data == data)
Guy Schalnate5a37791996-06-05 15:50:50 -050073 {
Andreas Dilger47a0c421997-05-16 02:46:07 -050074 check = fwrite(near_data, 1, length, io_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -050075 }
76 else
77 {
78 png_byte buf[NEAR_BUF_SIZE];
79 png_size_t written, remaining, err;
80 check = 0;
Andreas Dilger47a0c421997-05-16 02:46:07 -050081 remaining = length;
Guy Schalnate5a37791996-06-05 15:50:50 -050082 do
83 {
84 written = MIN(NEAR_BUF_SIZE, remaining);
85 png_memcpy(buf, data, written); /* copy far buffer to near buffer */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060086 err = fwrite(buf, 1, written, io_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -050087 if (err != written)
88 break;
89 else
90 check += err;
91 data += written;
92 remaining -= written;
93 }
94 while (remaining != 0);
95 }
96 if (check != length)
97 {
98 png_error(png_ptr, "Write Error");
99 }
100}
101
102#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600103#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500104
105/* This function is called to output any data pending writing (normally
106 to disk). After png_flush is called, there should be no data pending
107 writing in any buffers. */
108#if defined(PNG_WRITE_FLUSH_SUPPORTED)
109void
110png_flush(png_structp png_ptr)
111{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500112 if (png_ptr->output_flush_fn != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500113 (*(png_ptr->output_flush_fn))(png_ptr);
114}
115
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600116#if !defined(PNG_NO_STDIO)
Guy Schalnate5a37791996-06-05 15:50:50 -0500117static void
118png_default_flush(png_structp png_ptr)
119{
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600120 FILE *io_ptr;
121 io_ptr = (FILE *)CVT_PTR((png_ptr->io_ptr));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500122 if (io_ptr != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600123 fflush(io_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500124}
125#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600126#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500127
128/* This function allows the application to supply new output functions for
129 libpng if standard C streams aren't being used.
130
131 This function takes as its arguments:
132 png_ptr - pointer to a png output data structure
133 io_ptr - pointer to user supplied structure containing info about
134 the output functions. May be NULL.
135 write_data_fn - pointer to a new output function which takes as its
136 arguments a pointer to a png_struct, a pointer to
137 data to be written, and a 32-bit unsigned int which is
138 the number of bytes to be written. The new write
139 function should call png_error(png_ptr, "Error msg")
140 to exit and output any fatal error messages.
141 flush_data_fn - pointer to a new flush function which takes as its
142 arguments a pointer to a png_struct. After a call to
143 the flush function, there should be no data in any buffers
144 or pending transmission. If the output method doesn't do
145 any buffering of ouput, a function prototype must still be
146 supplied although it doesn't have to do anything. If
147 PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile
148 time, output_flush_fn will be ignored, although it must be
149 supplied for compatibility. */
150void
151png_set_write_fn(png_structp png_ptr, png_voidp io_ptr,
152 png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn)
153{
154 png_ptr->io_ptr = io_ptr;
155
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600156#if !defined(PNG_NO_STDIO)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500157 if (write_data_fn != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500158 png_ptr->write_data_fn = write_data_fn;
159 else
160 png_ptr->write_data_fn = png_default_write_data;
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600161#else
162 png_ptr->write_data_fn = write_data_fn;
163#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500164
165#if defined(PNG_WRITE_FLUSH_SUPPORTED)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600166#if !defined(PNG_NO_STDIO)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500167 if (output_flush_fn != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500168 png_ptr->output_flush_fn = output_flush_fn;
169 else
170 png_ptr->output_flush_fn = png_default_flush;
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600171#else
172 png_ptr->output_flush_fn = output_flush_fn;
173#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500174#endif /* PNG_WRITE_FLUSH_SUPPORTED */
175
176 /* It is an error to read while writing a png file */
177 png_ptr->read_data_fn = NULL;
178}
179
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600180#if defined(USE_FAR_KEYWORD)
181#if defined(_MSC_VER)
182void *far_to_near(png_structp png_ptr,png_voidp ptr, int check)
183{
184 void *near_ptr;
185 void FAR *far_ptr;
186 FP_OFF(near_ptr) = FP_OFF(ptr);
187 far_ptr = (void FAR *)near_ptr;
188 if(check != 0)
189 if(FP_SEG(ptr) != FP_SEG(far_ptr))
190 png_error(png_ptr,"segment lost in conversion");
191 return(near_ptr);
192}
193# else
194void *far_to_near(png_structp png_ptr,png_voidp ptr, int check)
195{
196 void *near_ptr;
197 void FAR *far_ptr;
198 near_ptr = (void FAR *)ptr;
199 far_ptr = (void FAR *)near_ptr;
200 if(check != 0)
201 if(far_ptr != ptr)
202 png_error(png_ptr,"segment lost in conversion");
203 return(near_ptr);
204}
205# endif
206# endif