blob: 38f7fd49d68ef354ee5559fe1223c70952392e4d [file] [log] [blame]
The Android Open Source Project893912b2009-03-03 19:30:05 -08001
2/* pngrio.c - functions for data input
3 *
Matt Sarett9b1fe632015-11-25 10:21:17 -05004 * 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 Sarett9b1fe632015-11-25 10:21:17 -050029 * 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");
41}
42
Patrick Scott5f6bd842010-06-28 16:55:16 -040043#ifdef PNG_STDIO_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -080044/* This is the function that does the actual reading of data. If you are
Patrick Scotta0bb96c2009-07-22 11:50:02 -040045 * not reading from a standard C stream, you should create a replacement
46 * read_data function and use it at run time with png_set_read_fn(), rather
47 * than changing the library.
48 */
Chris Craikb50c2172013-07-29 15:28:30 -070049void PNGCBAPI
The Android Open Source Project893912b2009-03-03 19:30:05 -080050png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
51{
52 png_size_t check;
53
Patrick Scotta0bb96c2009-07-22 11:50:02 -040054 if (png_ptr == NULL)
55 return;
Chris Craikb50c2172013-07-29 15:28:30 -070056
The Android Open Source Project893912b2009-03-03 19:30:05 -080057 /* fread() returns 0 on error, so it is OK to store this in a png_size_t
58 * instead of an int, which is what fread() actually returns.
59 */
Chris Craikb50c2172013-07-29 15:28:30 -070060 check = fread(data, 1, length, png_voidcast(png_FILE_p, png_ptr->io_ptr));
The Android Open Source Project893912b2009-03-03 19:30:05 -080061
62 if (check != length)
63 png_error(png_ptr, "Read Error");
64}
The Android Open Source Project893912b2009-03-03 19:30:05 -080065#endif
66
67/* This function allows the application to supply a new input function
Patrick Scotta0bb96c2009-07-22 11:50:02 -040068 * for libpng if standard C streams aren't being used.
69 *
70 * This function takes as its arguments:
Chris Craikb50c2172013-07-29 15:28:30 -070071 *
Patrick Scotta0bb96c2009-07-22 11:50:02 -040072 * png_ptr - pointer to a png input data structure
Chris Craikb50c2172013-07-29 15:28:30 -070073 *
Patrick Scotta0bb96c2009-07-22 11:50:02 -040074 * io_ptr - pointer to user supplied structure containing info about
75 * the input functions. May be NULL.
Chris Craikb50c2172013-07-29 15:28:30 -070076 *
Patrick Scotta0bb96c2009-07-22 11:50:02 -040077 * read_data_fn - pointer to a new input function that takes as its
78 * arguments a pointer to a png_struct, a pointer to
79 * a location where input data can be stored, and a 32-bit
80 * unsigned int that is the number of bytes to be read.
81 * To exit and output any fatal error messages the new write
82 * function should call png_error(png_ptr, "Error msg").
83 * May be NULL, in which case libpng's default function will
84 * be used.
85 */
The Android Open Source Project893912b2009-03-03 19:30:05 -080086void PNGAPI
Chris Craikb50c2172013-07-29 15:28:30 -070087png_set_read_fn(png_structrp png_ptr, png_voidp io_ptr,
The Android Open Source Project893912b2009-03-03 19:30:05 -080088 png_rw_ptr read_data_fn)
89{
Patrick Scotta0bb96c2009-07-22 11:50:02 -040090 if (png_ptr == NULL)
91 return;
Chris Craikb50c2172013-07-29 15:28:30 -070092
The Android Open Source Project893912b2009-03-03 19:30:05 -080093 png_ptr->io_ptr = io_ptr;
94
Patrick Scott5f6bd842010-06-28 16:55:16 -040095#ifdef PNG_STDIO_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -080096 if (read_data_fn != NULL)
97 png_ptr->read_data_fn = read_data_fn;
Chris Craikb50c2172013-07-29 15:28:30 -070098
The Android Open Source Project893912b2009-03-03 19:30:05 -080099 else
100 png_ptr->read_data_fn = png_default_read_data;
101#else
102 png_ptr->read_data_fn = read_data_fn;
103#endif
104
Sireesh Tripurarib478e662014-05-09 15:15:10 +0530105#ifdef PNG_WRITE_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800106 /* It is an error to write to a read device */
107 if (png_ptr->write_data_fn != NULL)
108 {
109 png_ptr->write_data_fn = NULL;
110 png_warning(png_ptr,
Chris Craikb50c2172013-07-29 15:28:30 -0700111 "Can't set both read_data_fn and write_data_fn in the"
112 " same structure");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800113 }
Sireesh Tripurarib478e662014-05-09 15:15:10 +0530114#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -0800115
Patrick Scott5f6bd842010-06-28 16:55:16 -0400116#ifdef PNG_WRITE_FLUSH_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800117 png_ptr->output_flush_fn = NULL;
118#endif
119}
Matt Sarett9b1fe632015-11-25 10:21:17 -0500120#endif /* READ */