blob: 8c1cab34f7076a56601a57edbb3d9da48a5018ed [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-Pehrsonf5ea1b72011-01-06 06:42:51 -06004 * Last changed in libpng 1.5.0 [January 6, 2011]
Glenn Randers-Pehrson64b863c2011-01-04 09:57:06 -06005 * Copyright (c) 1998-2011 Glenn Randers-Pehrson
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -05006 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06008 *
Glenn Randers-Pehrsonbfbf8652009-06-26 21:46:52 -05009 * This code is released under the libpng license.
Glenn Randers-Pehrsonc332bbc2009-06-25 13:43:50 -050010 * For conditions of distribution and use, see the disclaimer
Glenn Randers-Pehrson037023b2009-06-24 10:27:36 -050011 * and license in png.h
Glenn Randers-Pehrson3e61d792009-06-24 09:31:28 -050012 *
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -050013 * 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
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060017 * functions, but rather write replacement functions and then change
18 * them at run time with png_set_write_fn(...).
19 */
Guy Schalnate5a37791996-06-05 15:50:50 -050020
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -050021#include "pngpriv.h"
Guy Schalnate5a37791996-06-05 15:50:50 -050022
Glenn Randers-Pehrsonc3cd22b2010-03-08 21:10:25 -060023#ifdef PNG_WRITE_SUPPORTED
24
Guy Schalnate5a37791996-06-05 15:50:50 -050025/* Write the data to whatever output you are using. The default routine
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050026 * 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 */
Guy Schalnate5a37791996-06-05 15:50:50 -050031
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050032void /* PRIVATE */
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -050033png_write_data(png_structp png_ptr, png_const_bytep data, png_size_t length)
Guy Schalnate5a37791996-06-05 15:50:50 -050034{
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -050035 /* NOTE: write_data_fn must not change the buffer! */
Andreas Dilger47a0c421997-05-16 02:46:07 -050036 if (png_ptr->write_data_fn != NULL )
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -050037 (*(png_ptr->write_data_fn))(png_ptr, (png_bytep)data, length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050038
Guy Schalnate5a37791996-06-05 15:50:50 -050039 else
40 png_error(png_ptr, "Call to NULL write function");
41}
42
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -050043#ifdef PNG_STDIO_SUPPORTED
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -050044/* This is the function that does the actual writing of data. If you are
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050045 * 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 */
Glenn Randers-Pehrsoneae8e362010-03-12 17:36:53 -060049void PNGCBAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -050050png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
Guy Schalnate5a37791996-06-05 15:50:50 -050051{
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -050052 png_size_t check;
Guy Schalnate5a37791996-06-05 15:50:50 -050053
Glenn Randers-Pehrsond8eb62f2009-05-30 20:19:20 -050054 if (png_ptr == NULL)
55 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050056
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -050057 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050058
Guy Schalnate5a37791996-06-05 15:50:50 -050059 if (check != length)
Guy Schalnate5a37791996-06-05 15:50:50 -050060 png_error(png_ptr, "Write Error");
Guy Schalnate5a37791996-06-05 15:50:50 -050061}
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -060062#endif
Guy Schalnate5a37791996-06-05 15:50:50 -050063
64/* This function is called to output any data pending writing (normally
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050065 * to disk). After png_flush is called, there should be no data pending
66 * writing in any buffers.
67 */
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -050068#ifdef PNG_WRITE_FLUSH_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050069void /* PRIVATE */
Guy Schalnate5a37791996-06-05 15:50:50 -050070png_flush(png_structp png_ptr)
71{
Andreas Dilger47a0c421997-05-16 02:46:07 -050072 if (png_ptr->output_flush_fn != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -050073 (*(png_ptr->output_flush_fn))(png_ptr);
74}
75
Glenn Randers-Pehrson6f6a91a2010-03-06 13:54:59 -060076# ifdef PNG_STDIO_SUPPORTED
Glenn Randers-Pehrsoneae8e362010-03-12 17:36:53 -060077void PNGCBAPI
Guy Schalnate5a37791996-06-05 15:50:50 -050078png_default_flush(png_structp png_ptr)
79{
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -050080 png_FILE_p io_ptr;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050081
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050082 if (png_ptr == NULL)
83 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050084
John Bowlerbaeb6d12011-11-26 18:21:02 -060085 io_ptr = png_voidcast(png_FILE_p, (png_ptr->io_ptr));
Glenn Randers-Pehrson8fb550c2009-03-21 08:15:32 -050086 fflush(io_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -050087}
Glenn Randers-Pehrson6f6a91a2010-03-06 13:54:59 -060088# endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -060089#endif
Guy Schalnate5a37791996-06-05 15:50:50 -050090
91/* This function allows the application to supply new output functions for
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050092 * libpng if standard C streams aren't being used.
93 *
94 * This function takes as its arguments:
95 * png_ptr - pointer to a png output data structure
96 * io_ptr - pointer to user supplied structure containing info about
97 * the output functions. May be NULL.
98 * write_data_fn - pointer to a new output function that takes as its
99 * arguments a pointer to a png_struct, a pointer to
100 * data to be written, and a 32-bit unsigned int that is
101 * the number of bytes to be written. The new write
102 * function should call png_error(png_ptr, "Error msg")
103 * to exit and output any fatal error messages. May be
104 * NULL, in which case libpng's default function will
105 * be used.
106 * flush_data_fn - pointer to a new flush function that takes as its
107 * arguments a pointer to a png_struct. After a call to
108 * the flush function, there should be no data in any buffers
109 * or pending transmission. If the output method doesn't do
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500110 * any buffering of output, a function prototype must still be
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500111 * supplied although it doesn't have to do anything. If
112 * PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile
113 * time, output_flush_fn will be ignored, although it must be
114 * supplied for compatibility. May be NULL, in which case
115 * libpng's default function will be used, if
116 * PNG_WRITE_FLUSH_SUPPORTED is defined. This is not
117 * a good idea if io_ptr does not point to a standard
118 * *FILE structure.
119 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500120void PNGAPI
Guy Schalnate5a37791996-06-05 15:50:50 -0500121png_set_write_fn(png_structp png_ptr, png_voidp io_ptr,
Glenn Randers-Pehrson6f6a91a2010-03-06 13:54:59 -0600122 png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn)
Guy Schalnate5a37791996-06-05 15:50:50 -0500123{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500124 if (png_ptr == NULL)
125 return;
126
Guy Schalnate5a37791996-06-05 15:50:50 -0500127 png_ptr->io_ptr = io_ptr;
128
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500129#ifdef PNG_STDIO_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500130 if (write_data_fn != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500131 png_ptr->write_data_fn = write_data_fn;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500132
Guy Schalnate5a37791996-06-05 15:50:50 -0500133 else
Glenn Randers-Pehrson25d82242002-05-01 11:51:26 -0500134 png_ptr->write_data_fn = png_default_write_data;
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600135#else
136 png_ptr->write_data_fn = write_data_fn;
137#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500138
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500139#ifdef PNG_WRITE_FLUSH_SUPPORTED
Glenn Randers-Pehrson6f6a91a2010-03-06 13:54:59 -0600140# ifdef PNG_STDIO_SUPPORTED
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500141
Andreas Dilger47a0c421997-05-16 02:46:07 -0500142 if (output_flush_fn != NULL)
Guy Schalnate5a37791996-06-05 15:50:50 -0500143 png_ptr->output_flush_fn = output_flush_fn;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500144
Guy Schalnate5a37791996-06-05 15:50:50 -0500145 else
Glenn Randers-Pehrson25d82242002-05-01 11:51:26 -0500146 png_ptr->output_flush_fn = png_default_flush;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500147
Glenn Randers-Pehrson6f6a91a2010-03-06 13:54:59 -0600148# else
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600149 png_ptr->output_flush_fn = output_flush_fn;
Glenn Randers-Pehrson6f6a91a2010-03-06 13:54:59 -0600150# endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500151#endif /* PNG_WRITE_FLUSH_SUPPORTED */
152
153 /* It is an error to read while writing a png file */
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500154 if (png_ptr->read_data_fn != NULL)
155 {
156 png_ptr->read_data_fn = NULL;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500157
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500158 png_warning(png_ptr,
Glenn Randers-Pehrson92a3ef42010-03-31 21:50:21 -0500159 "Can't set both read_data_fn and write_data_fn in the"
160 " same structure");
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500161 }
Guy Schalnate5a37791996-06-05 15:50:50 -0500162}
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500163#endif /* PNG_WRITE_SUPPORTED */