blob: 0fa2a94d64dc02924aec85c1e97d8a3055510154 [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
36/* This is the function which does the actual writing of data. If you are
37 not writing to a standard C stream, you should create a replacement
38 write_data function and use it at run time with png_set_write_fn(), rather
39 than changing the library. */
40#ifndef USE_FAR_KEYWORD
41static void
Andreas Dilger47a0c421997-05-16 02:46:07 -050042png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
Guy Schalnate5a37791996-06-05 15:50:50 -050043{
44 png_uint_32 check;
45
Andreas Dilger47a0c421997-05-16 02:46:07 -050046 check = fwrite(data, 1, length, (FILE *)(png_ptr->io_ptr));
Guy Schalnate5a37791996-06-05 15:50:50 -050047 if (check != length)
48 {
49 png_error(png_ptr, "Write Error");
50 }
51}
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
Guy Schalnate5a37791996-06-05 15:50:50 -050061static void
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" */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060066 FILE *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);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060070 io_ptr = (FILE *)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)
96 {
97 png_error(png_ptr, "Write Error");
98 }
99}
100
101#endif
102
103/* This function is called to output any data pending writing (normally
104 to disk). After png_flush is called, there should be no data pending
105 writing in any buffers. */
106#if defined(PNG_WRITE_FLUSH_SUPPORTED)
107void
108png_flush(png_structp png_ptr)
109{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500110 if (png_ptr->output_flush_fn != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500111 (*(png_ptr->output_flush_fn))(png_ptr);
112}
113
114static void
115png_default_flush(png_structp png_ptr)
116{
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600117 FILE *io_ptr;
118 io_ptr = (FILE *)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
123
124/* This function allows the application to supply new output functions for
125 libpng if standard C streams aren't being used.
126
127 This function takes as its arguments:
128 png_ptr - pointer to a png output data structure
129 io_ptr - pointer to user supplied structure containing info about
130 the output functions. May be NULL.
131 write_data_fn - pointer to a new output function which takes as its
132 arguments a pointer to a png_struct, a pointer to
133 data to be written, and a 32-bit unsigned int which is
134 the number of bytes to be written. The new write
135 function should call png_error(png_ptr, "Error msg")
136 to exit and output any fatal error messages.
137 flush_data_fn - pointer to a new flush function which takes as its
138 arguments a pointer to a png_struct. After a call to
139 the flush function, there should be no data in any buffers
140 or pending transmission. If the output method doesn't do
141 any buffering of ouput, a function prototype must still be
142 supplied although it doesn't have to do anything. If
143 PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile
144 time, output_flush_fn will be ignored, although it must be
145 supplied for compatibility. */
146void
147png_set_write_fn(png_structp png_ptr, png_voidp io_ptr,
148 png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn)
149{
150 png_ptr->io_ptr = io_ptr;
151
Andreas Dilger47a0c421997-05-16 02:46:07 -0500152 if (write_data_fn != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500153 png_ptr->write_data_fn = write_data_fn;
154 else
155 png_ptr->write_data_fn = png_default_write_data;
156
157#if defined(PNG_WRITE_FLUSH_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500158 if (output_flush_fn != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500159 png_ptr->output_flush_fn = output_flush_fn;
160 else
161 png_ptr->output_flush_fn = png_default_flush;
162#endif /* PNG_WRITE_FLUSH_SUPPORTED */
163
164 /* It is an error to read while writing a png file */
165 png_ptr->read_data_fn = NULL;
166}
167
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600168#if defined(USE_FAR_KEYWORD)
169#if defined(_MSC_VER)
170void *far_to_near(png_structp png_ptr,png_voidp ptr, int check)
171{
172 void *near_ptr;
173 void FAR *far_ptr;
174 FP_OFF(near_ptr) = FP_OFF(ptr);
175 far_ptr = (void FAR *)near_ptr;
176 if(check != 0)
177 if(FP_SEG(ptr) != FP_SEG(far_ptr))
178 png_error(png_ptr,"segment lost in conversion");
179 return(near_ptr);
180}
181# else
182void *far_to_near(png_structp png_ptr,png_voidp ptr, int check)
183{
184 void *near_ptr;
185 void FAR *far_ptr;
186 near_ptr = (void FAR *)ptr;
187 far_ptr = (void FAR *)near_ptr;
188 if(check != 0)
189 if(far_ptr != ptr)
190 png_error(png_ptr,"segment lost in conversion");
191 return(near_ptr);
192}
193# endif
194# endif