blob: 9ba61851740d3780a17a2bc07a2900007e45986e [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 *
Glenn Randers-Pehrsond60b8fa2006-04-20 21:31:14 -05004 * Last changed in libpng 1.4.0 April 20, 2006
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06005 * For conditions of distribution and use, see copyright notice in png.h
Glenn Randers-Pehrsond60b8fa2006-04-20 21:31:14 -05006 * Copyright (c) 1998-2006 Glenn Randers-Pehrson
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -05007 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
8 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06009 *
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -050010 * This file provides a location for all output. Users who need
11 * special handling are expected to write functions that have the same
12 * arguments as these and perform similar functions, but that possibly
13 * use different output methods. Note that you shouldn't change these
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060014 * 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
Guy Schalnate5a37791996-06-05 15:50:50 -050018#include "png.h"
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -050019#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -050020#include "pngpriv.h"
Guy Schalnate5a37791996-06-05 15:50:50 -050021
22/* Write the data to whatever output you are using. The default routine
23 writes to a file pointer. Note that this routine sometimes gets called
24 with very small lengths, so you should implement some kind of simple
25 buffering if you are using unbuffered writes. This should never be asked
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -050026 to write more than 64K on a 16 bit machine. */
Guy Schalnate5a37791996-06-05 15:50:50 -050027
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050028void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -050029png_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
Guy Schalnate5a37791996-06-05 15:50:50 -050030{
Andreas Dilger47a0c421997-05-16 02:46:07 -050031 if (png_ptr->write_data_fn != NULL )
Guy Schalnate5a37791996-06-05 15:50:50 -050032 (*(png_ptr->write_data_fn))(png_ptr, data, length);
33 else
34 png_error(png_ptr, "Call to NULL write function");
35}
36
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -060037#if !defined(PNG_NO_STDIO)
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -050038/* This is the function that does the actual writing of data. If you are
Guy Schalnate5a37791996-06-05 15:50:50 -050039 not writing to a standard C stream, you should create a replacement
40 write_data function and use it at run time with png_set_write_fn(), rather
41 than changing the library. */
42#ifndef USE_FAR_KEYWORD
Glenn Randers-Pehrson25d82242002-05-01 11:51:26 -050043void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -050044png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
Guy Schalnate5a37791996-06-05 15:50:50 -050045{
46 png_uint_32 check;
47
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -050048 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));
Guy Schalnate5a37791996-06-05 15:50:50 -050049 if (check != length)
Guy Schalnate5a37791996-06-05 15:50:50 -050050 png_error(png_ptr, "Write Error");
Guy Schalnate5a37791996-06-05 15:50:50 -050051}
52#else
53/* this is the model-independent version. Since the standard I/O library
54 can't handle far buffers in the medium and small models, we have to copy
55 the data.
56*/
57
58#define NEAR_BUF_SIZE 1024
59#define MIN(a,b) (a <= b ? a : b)
60
Glenn Randers-Pehrson25d82242002-05-01 11:51:26 -050061void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -050062png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
Guy Schalnate5a37791996-06-05 15:50:50 -050063{
64 png_uint_32 check;
Andreas Dilger47a0c421997-05-16 02:46:07 -050065 png_byte *near_data; /* Needs to be "png_byte *" instead of "png_bytep" */
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -050066 png_FILE_p io_ptr;
Guy Schalnate5a37791996-06-05 15:50:50 -050067
68 /* Check if data really is near. If so, use usual code. */
Andreas Dilger47a0c421997-05-16 02:46:07 -050069 near_data = (png_byte *)CVT_PTR_NOCHECK(data);
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -050070 io_ptr = (png_FILE_p)CVT_PTR(png_ptr->io_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -050071 if ((png_bytep)near_data == data)
Guy Schalnate5a37791996-06-05 15:50:50 -050072 {
Andreas Dilger47a0c421997-05-16 02:46:07 -050073 check = fwrite(near_data, 1, length, io_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -050074 }
75 else
76 {
77 png_byte buf[NEAR_BUF_SIZE];
78 png_size_t written, remaining, err;
79 check = 0;
Andreas Dilger47a0c421997-05-16 02:46:07 -050080 remaining = length;
Guy Schalnate5a37791996-06-05 15:50:50 -050081 do
82 {
83 written = MIN(NEAR_BUF_SIZE, remaining);
84 png_memcpy(buf, data, written); /* copy far buffer to near buffer */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060085 err = fwrite(buf, 1, written, io_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -050086 if (err != written)
87 break;
88 else
89 check += err;
90 data += written;
91 remaining -= written;
92 }
93 while (remaining != 0);
94 }
95 if (check != length)
Guy Schalnate5a37791996-06-05 15:50:50 -050096 png_error(png_ptr, "Write Error");
Guy Schalnate5a37791996-06-05 15:50:50 -050097}
98
99#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600100#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500101
102/* This function is called to output any data pending writing (normally
103 to disk). After png_flush is called, there should be no data pending
104 writing in any buffers. */
105#if defined(PNG_WRITE_FLUSH_SUPPORTED)
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500106void /* PRIVATE */
Guy Schalnate5a37791996-06-05 15:50:50 -0500107png_flush(png_structp png_ptr)
108{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500109 if (png_ptr->output_flush_fn != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500110 (*(png_ptr->output_flush_fn))(png_ptr);
111}
112
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600113#if !defined(PNG_NO_STDIO)
Glenn Randers-Pehrson25d82242002-05-01 11:51:26 -0500114void PNGAPI
Guy Schalnate5a37791996-06-05 15:50:50 -0500115png_default_flush(png_structp png_ptr)
116{
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500117 png_FILE_p io_ptr;
118 io_ptr = (png_FILE_p)CVT_PTR((png_ptr->io_ptr));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500119 if (io_ptr != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600120 fflush(io_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500121}
122#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600123#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500124
125/* This function allows the application to supply new output functions for
126 libpng if standard C streams aren't being used.
127
128 This function takes as its arguments:
129 png_ptr - pointer to a png output data structure
130 io_ptr - pointer to user supplied structure containing info about
131 the output functions. May be NULL.
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500132 write_data_fn - pointer to a new output function that takes as its
Guy Schalnate5a37791996-06-05 15:50:50 -0500133 arguments a pointer to a png_struct, a pointer to
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500134 data to be written, and a 32-bit unsigned int that is
Guy Schalnate5a37791996-06-05 15:50:50 -0500135 the number of bytes to be written. The new write
136 function should call png_error(png_ptr, "Error msg")
137 to exit and output any fatal error messages.
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500138 flush_data_fn - pointer to a new flush function that takes as its
Guy Schalnate5a37791996-06-05 15:50:50 -0500139 arguments a pointer to a png_struct. After a call to
140 the flush function, there should be no data in any buffers
141 or pending transmission. If the output method doesn't do
142 any buffering of ouput, a function prototype must still be
143 supplied although it doesn't have to do anything. If
144 PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile
145 time, output_flush_fn will be ignored, although it must be
146 supplied for compatibility. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500147void PNGAPI
Guy Schalnate5a37791996-06-05 15:50:50 -0500148png_set_write_fn(png_structp png_ptr, png_voidp io_ptr,
149 png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn)
150{
151 png_ptr->io_ptr = io_ptr;
152
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600153#if !defined(PNG_NO_STDIO)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500154 if (write_data_fn != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500155 png_ptr->write_data_fn = write_data_fn;
156 else
Glenn Randers-Pehrson25d82242002-05-01 11:51:26 -0500157 png_ptr->write_data_fn = png_default_write_data;
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600158#else
159 png_ptr->write_data_fn = write_data_fn;
160#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500161
162#if defined(PNG_WRITE_FLUSH_SUPPORTED)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600163#if !defined(PNG_NO_STDIO)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500164 if (output_flush_fn != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500165 png_ptr->output_flush_fn = output_flush_fn;
166 else
Glenn Randers-Pehrson25d82242002-05-01 11:51:26 -0500167 png_ptr->output_flush_fn = png_default_flush;
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600168#else
169 png_ptr->output_flush_fn = output_flush_fn;
170#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500171#endif /* PNG_WRITE_FLUSH_SUPPORTED */
172
173 /* It is an error to read while writing a png file */
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500174 if (png_ptr->read_data_fn != NULL)
175 {
176 png_ptr->read_data_fn = NULL;
177 png_warning(png_ptr,
178 "Attempted to set both read_data_fn and write_data_fn in");
179 png_warning(png_ptr,
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500180 "the same structure. Resetting read_data_fn to NULL");
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500181 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500182}
183
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600184#if defined(USE_FAR_KEYWORD)
185#if defined(_MSC_VER)
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600186void *png_far_to_near(png_structp png_ptr,png_voidp ptr, int check)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600187{
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600188 void *near_ptr;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600189 void FAR *far_ptr;
190 FP_OFF(near_ptr) = FP_OFF(ptr);
191 far_ptr = (void FAR *)near_ptr;
192 if(check != 0)
193 if(FP_SEG(ptr) != FP_SEG(far_ptr))
194 png_error(png_ptr,"segment lost in conversion");
195 return(near_ptr);
196}
197# else
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600198void *png_far_to_near(png_structp png_ptr,png_voidp ptr, int check)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600199{
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600200 void *near_ptr;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600201 void FAR *far_ptr;
202 near_ptr = (void FAR *)ptr;
203 far_ptr = (void FAR *)near_ptr;
204 if(check != 0)
205 if(far_ptr != ptr)
206 png_error(png_ptr,"segment lost in conversion");
207 return(near_ptr);
208}
209# endif
210# endif
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500211#endif /* PNG_WRITE_SUPPORTED */