blob: 23d72b10e7e8a99d9db48d82a1930849df46b60c [file] [log] [blame]
The Android Open Source Project893912b2009-03-03 19:30:05 -08001
2/* pngrio.c - functions for data input
3 *
Matt Sarett96be9082016-05-03 13:29:54 -04004 * Last changed in libpng 1.6.17 [March 26, 2015]
5 * Copyright (c) 1998-2015 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 input. Users who need
14 * special handling are expected to write a function that has the same
15 * arguments as this and performs a similar function, but that possibly
16 * has a different input method. Note that you shouldn't change this
17 * function, but rather write a replacement function and then make
18 * libpng use it at run time with png_set_read_fn(...).
19 */
20
Chris Craikb50c2172013-07-29 15:28:30 -070021#include "pngpriv.h"
22
Patrick Scott5f6bd842010-06-28 16:55:16 -040023#ifdef PNG_READ_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -080024
25/* Read the data from whatever input you are using. The default routine
Patrick Scotta0bb96c2009-07-22 11:50:02 -040026 * reads from 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 reads. This should never be asked
Matt Sarett96be9082016-05-03 13:29:54 -040029 * to read 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 -080031void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -070032png_read_data(png_structrp png_ptr, png_bytep data, png_size_t length)
The Android Open Source Project893912b2009-03-03 19:30:05 -080033{
The Android Open Source Project4215dd12009-03-09 11:52:12 -070034 png_debug1(4, "reading %d bytes", (int)length);
Chris Craikb50c2172013-07-29 15:28:30 -070035
The Android Open Source Project893912b2009-03-03 19:30:05 -080036 if (png_ptr->read_data_fn != NULL)
37 (*(png_ptr->read_data_fn))(png_ptr, data, length);
Chris Craikb50c2172013-07-29 15:28:30 -070038
The Android Open Source Project893912b2009-03-03 19:30:05 -080039 else
40 png_error(png_ptr, "Call to NULL read function");
Sireesh Tripurarib0277d02014-05-09 15:39:12 +053041#ifdef PNG_INDEX_SUPPORTED
42 png_ptr->total_data_read += length;
43#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -080044}
45
Sireesh Tripurarib0277d02014-05-09 15:39:12 +053046#ifdef PNG_INDEX_SUPPORTED
47void /* PRIVATE */
48png_seek_data(png_structp png_ptr, png_uint_32 offset)
49{
50 if (png_ptr->seek_data_fn != NULL)
51 (*(png_ptr->seek_data_fn))(png_ptr, offset);
52 else
53 png_error(png_ptr, "Call to NULL seek function");
54}
55#endif
56
Patrick Scott5f6bd842010-06-28 16:55:16 -040057#ifdef PNG_STDIO_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -080058/* This is the function that does the actual reading of data. If you are
Patrick Scotta0bb96c2009-07-22 11:50:02 -040059 * not reading from a standard C stream, you should create a replacement
60 * read_data function and use it at run time with png_set_read_fn(), rather
61 * than changing the library.
62 */
Chris Craikb50c2172013-07-29 15:28:30 -070063void PNGCBAPI
The Android Open Source Project893912b2009-03-03 19:30:05 -080064png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
65{
66 png_size_t check;
67
Patrick Scotta0bb96c2009-07-22 11:50:02 -040068 if (png_ptr == NULL)
69 return;
Chris Craikb50c2172013-07-29 15:28:30 -070070
The Android Open Source Project893912b2009-03-03 19:30:05 -080071 /* fread() returns 0 on error, so it is OK to store this in a png_size_t
72 * instead of an int, which is what fread() actually returns.
73 */
Chris Craikb50c2172013-07-29 15:28:30 -070074 check = fread(data, 1, length, png_voidcast(png_FILE_p, png_ptr->io_ptr));
The Android Open Source Project893912b2009-03-03 19:30:05 -080075
76 if (check != length)
77 png_error(png_ptr, "Read Error");
78}
The Android Open Source Project893912b2009-03-03 19:30:05 -080079#endif
80
81/* This function allows the application to supply a new input function
Patrick Scotta0bb96c2009-07-22 11:50:02 -040082 * for libpng if standard C streams aren't being used.
83 *
84 * This function takes as its arguments:
Chris Craikb50c2172013-07-29 15:28:30 -070085 *
Patrick Scotta0bb96c2009-07-22 11:50:02 -040086 * png_ptr - pointer to a png input data structure
Chris Craikb50c2172013-07-29 15:28:30 -070087 *
Patrick Scotta0bb96c2009-07-22 11:50:02 -040088 * io_ptr - pointer to user supplied structure containing info about
89 * the input functions. May be NULL.
Chris Craikb50c2172013-07-29 15:28:30 -070090 *
Patrick Scotta0bb96c2009-07-22 11:50:02 -040091 * read_data_fn - pointer to a new input function that takes as its
92 * arguments a pointer to a png_struct, a pointer to
93 * a location where input data can be stored, and a 32-bit
94 * unsigned int that is the number of bytes to be read.
95 * To exit and output any fatal error messages the new write
96 * function should call png_error(png_ptr, "Error msg").
97 * May be NULL, in which case libpng's default function will
98 * be used.
99 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800100void PNGAPI
Chris Craikb50c2172013-07-29 15:28:30 -0700101png_set_read_fn(png_structrp png_ptr, png_voidp io_ptr,
The Android Open Source Project893912b2009-03-03 19:30:05 -0800102 png_rw_ptr read_data_fn)
103{
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400104 if (png_ptr == NULL)
105 return;
Chris Craikb50c2172013-07-29 15:28:30 -0700106
The Android Open Source Project893912b2009-03-03 19:30:05 -0800107 png_ptr->io_ptr = io_ptr;
108
Patrick Scott5f6bd842010-06-28 16:55:16 -0400109#ifdef PNG_STDIO_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800110 if (read_data_fn != NULL)
111 png_ptr->read_data_fn = read_data_fn;
Chris Craikb50c2172013-07-29 15:28:30 -0700112
The Android Open Source Project893912b2009-03-03 19:30:05 -0800113 else
114 png_ptr->read_data_fn = png_default_read_data;
115#else
116 png_ptr->read_data_fn = read_data_fn;
117#endif
118
Sireesh Tripurarib478e662014-05-09 15:15:10 +0530119#ifdef PNG_WRITE_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800120 /* It is an error to write to a read device */
121 if (png_ptr->write_data_fn != NULL)
122 {
123 png_ptr->write_data_fn = NULL;
124 png_warning(png_ptr,
Chris Craikb50c2172013-07-29 15:28:30 -0700125 "Can't set both read_data_fn and write_data_fn in the"
126 " same structure");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800127 }
Sireesh Tripurarib478e662014-05-09 15:15:10 +0530128#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -0800129
Patrick Scott5f6bd842010-06-28 16:55:16 -0400130#ifdef PNG_WRITE_FLUSH_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800131 png_ptr->output_flush_fn = NULL;
132#endif
133}
Sireesh Tripurarib0277d02014-05-09 15:39:12 +0530134
135#ifdef PNG_INDEX_SUPPORTED
136void PNGAPI
137png_set_seek_fn(png_structp png_ptr, png_seek_ptr seek_data_fn)
138{
139 if (png_ptr == NULL)
140 return;
141 png_ptr->seek_data_fn = seek_data_fn;
142}
143#endif
144
Matt Sarett96be9082016-05-03 13:29:54 -0400145#endif /* READ */