blob: db76e6b8d788924dafaf0a2ffba772bdc91a2a98 [file] [log] [blame]
The Android Open Source Project893912b2009-03-03 19:30:05 -08001
2/* pngwio.c - functions for data output
3 *
Matt Sarett9ea75692016-01-08 13:00:42 -05004 * Last changed in libpng 1.6.15 [November 20, 2014]
Sireesh Tripurarib478e662014-05-09 15:15:10 +05305 * Copyright (c) 1998-2014 Glenn Randers-Pehrson
The Android Open Source Project893912b2009-03-03 19:30:05 -08006 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
8 *
Patrick Scotta0bb96c2009-07-22 11:50:02 -04009 * 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 *
The Android Open Source Project893912b2009-03-03 19:30:05 -080013 * 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
Chris Craikb50c2172013-07-29 15:28:30 -070021#include "pngpriv.h"
22
The Android Open Source Project893912b2009-03-03 19:30:05 -080023#ifdef PNG_WRITE_SUPPORTED
24
25/* Write the data to whatever output you are using. The default routine
Patrick Scotta0bb96c2009-07-22 11:50:02 -040026 * 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
Matt Sarett9ea75692016-01-08 13:00:42 -050029 * to write more than 64K on a 16-bit machine.
Patrick Scotta0bb96c2009-07-22 11:50:02 -040030 */
The Android Open Source Project893912b2009-03-03 19:30:05 -080031
32void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -070033png_write_data(png_structrp png_ptr, png_const_bytep data, png_size_t length)
The Android Open Source Project893912b2009-03-03 19:30:05 -080034{
Chris Craikb50c2172013-07-29 15:28:30 -070035 /* NOTE: write_data_fn must not change the buffer! */
The Android Open Source Project893912b2009-03-03 19:30:05 -080036 if (png_ptr->write_data_fn != NULL )
Chris Craikb50c2172013-07-29 15:28:30 -070037 (*(png_ptr->write_data_fn))(png_ptr, png_constcast(png_bytep,data),
38 length);
39
The Android Open Source Project893912b2009-03-03 19:30:05 -080040 else
41 png_error(png_ptr, "Call to NULL write function");
42}
43
Patrick Scott5f6bd842010-06-28 16:55:16 -040044#ifdef PNG_STDIO_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -080045/* This is the function that does the actual writing of data. If you are
Patrick Scotta0bb96c2009-07-22 11:50:02 -040046 * not writing to a standard C stream, you should create a replacement
47 * write_data function and use it at run time with png_set_write_fn(), rather
48 * than changing the library.
49 */
Chris Craikb50c2172013-07-29 15:28:30 -070050void PNGCBAPI
The Android Open Source Project893912b2009-03-03 19:30:05 -080051png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
52{
Chris Craikb50c2172013-07-29 15:28:30 -070053 png_size_t check;
The Android Open Source Project893912b2009-03-03 19:30:05 -080054
Patrick Scotta0bb96c2009-07-22 11:50:02 -040055 if (png_ptr == NULL)
56 return;
Chris Craikb50c2172013-07-29 15:28:30 -070057
The Android Open Source Project893912b2009-03-03 19:30:05 -080058 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));
Chris Craikb50c2172013-07-29 15:28:30 -070059
The Android Open Source Project893912b2009-03-03 19:30:05 -080060 if (check != length)
61 png_error(png_ptr, "Write Error");
62}
The Android Open Source Project893912b2009-03-03 19:30:05 -080063#endif
64
65/* This function is called to output any data pending writing (normally
Patrick Scotta0bb96c2009-07-22 11:50:02 -040066 * to disk). After png_flush is called, there should be no data pending
67 * writing in any buffers.
68 */
Patrick Scott5f6bd842010-06-28 16:55:16 -040069#ifdef PNG_WRITE_FLUSH_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -080070void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -070071png_flush(png_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -080072{
73 if (png_ptr->output_flush_fn != NULL)
74 (*(png_ptr->output_flush_fn))(png_ptr);
75}
76
Chris Craikb50c2172013-07-29 15:28:30 -070077# ifdef PNG_STDIO_SUPPORTED
78void PNGCBAPI
The Android Open Source Project893912b2009-03-03 19:30:05 -080079png_default_flush(png_structp png_ptr)
80{
The Android Open Source Project893912b2009-03-03 19:30:05 -080081 png_FILE_p io_ptr;
Chris Craikb50c2172013-07-29 15:28:30 -070082
Patrick Scotta0bb96c2009-07-22 11:50:02 -040083 if (png_ptr == NULL)
84 return;
Chris Craikb50c2172013-07-29 15:28:30 -070085
86 io_ptr = png_voidcast(png_FILE_p, (png_ptr->io_ptr));
Patrick Scotta0bb96c2009-07-22 11:50:02 -040087 fflush(io_ptr);
The Android Open Source Project893912b2009-03-03 19:30:05 -080088}
Chris Craikb50c2172013-07-29 15:28:30 -070089# endif
The Android Open Source Project893912b2009-03-03 19:30:05 -080090#endif
91
92/* This function allows the application to supply new output functions for
Patrick Scotta0bb96c2009-07-22 11:50:02 -040093 * libpng if standard C streams aren't being used.
94 *
95 * This function takes as its arguments:
96 * png_ptr - pointer to a png output data structure
97 * io_ptr - pointer to user supplied structure containing info about
98 * the output functions. May be NULL.
99 * write_data_fn - pointer to a new output function that takes as its
100 * arguments a pointer to a png_struct, a pointer to
101 * data to be written, and a 32-bit unsigned int that is
102 * the number of bytes to be written. The new write
103 * function should call png_error(png_ptr, "Error msg")
104 * to exit and output any fatal error messages. May be
105 * NULL, in which case libpng's default function will
106 * be used.
107 * flush_data_fn - pointer to a new flush function that takes as its
108 * arguments a pointer to a png_struct. After a call to
109 * the flush function, there should be no data in any buffers
110 * or pending transmission. If the output method doesn't do
Patrick Scott5f6bd842010-06-28 16:55:16 -0400111 * any buffering of output, a function prototype must still be
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400112 * supplied although it doesn't have to do anything. If
113 * PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile
114 * time, output_flush_fn will be ignored, although it must be
115 * supplied for compatibility. May be NULL, in which case
116 * libpng's default function will be used, if
117 * PNG_WRITE_FLUSH_SUPPORTED is defined. This is not
118 * a good idea if io_ptr does not point to a standard
119 * *FILE structure.
120 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800121void PNGAPI
Chris Craikb50c2172013-07-29 15:28:30 -0700122png_set_write_fn(png_structrp png_ptr, png_voidp io_ptr,
123 png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800124{
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400125 if (png_ptr == NULL)
126 return;
127
The Android Open Source Project893912b2009-03-03 19:30:05 -0800128 png_ptr->io_ptr = io_ptr;
129
Patrick Scott5f6bd842010-06-28 16:55:16 -0400130#ifdef PNG_STDIO_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800131 if (write_data_fn != NULL)
132 png_ptr->write_data_fn = write_data_fn;
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400133
The Android Open Source Project893912b2009-03-03 19:30:05 -0800134 else
135 png_ptr->write_data_fn = png_default_write_data;
136#else
137 png_ptr->write_data_fn = write_data_fn;
138#endif
139
Patrick Scott5f6bd842010-06-28 16:55:16 -0400140#ifdef PNG_WRITE_FLUSH_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -0700141# ifdef PNG_STDIO_SUPPORTED
142
The Android Open Source Project893912b2009-03-03 19:30:05 -0800143 if (output_flush_fn != NULL)
144 png_ptr->output_flush_fn = output_flush_fn;
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400145
The Android Open Source Project893912b2009-03-03 19:30:05 -0800146 else
147 png_ptr->output_flush_fn = png_default_flush;
Chris Craikb50c2172013-07-29 15:28:30 -0700148
149# else
The Android Open Source Project893912b2009-03-03 19:30:05 -0800150 png_ptr->output_flush_fn = output_flush_fn;
Chris Craikb50c2172013-07-29 15:28:30 -0700151# endif
Sireesh Tripurarib478e662014-05-09 15:15:10 +0530152#else
153 PNG_UNUSED(output_flush_fn)
Matt Sarett9ea75692016-01-08 13:00:42 -0500154#endif /* WRITE_FLUSH */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800155
Sireesh Tripurarib478e662014-05-09 15:15:10 +0530156#ifdef PNG_READ_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800157 /* It is an error to read while writing a png file */
158 if (png_ptr->read_data_fn != NULL)
159 {
160 png_ptr->read_data_fn = NULL;
Chris Craikb50c2172013-07-29 15:28:30 -0700161
The Android Open Source Project893912b2009-03-03 19:30:05 -0800162 png_warning(png_ptr,
Chris Craikb50c2172013-07-29 15:28:30 -0700163 "Can't set both read_data_fn and write_data_fn in the"
164 " same structure");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800165 }
Sireesh Tripurarib478e662014-05-09 15:15:10 +0530166#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -0800167}
Matt Sarett9ea75692016-01-08 13:00:42 -0500168#endif /* WRITE */