Thomas Klausner | d3bc856 | 2014-11-18 14:33:44 +0100 | [diff] [blame] | 1 | .\" zip_source_read.mdoc -- read data from zip source |
Thomas Klausner | 7ed6a92 | 2016-12-16 15:50:12 +0100 | [diff] [blame] | 2 | .\" Copyright (C) 2014-2016 Dieter Baron and Thomas Klausner |
Thomas Klausner | d3bc856 | 2014-11-18 14:33:44 +0100 | [diff] [blame] | 3 | .\" |
| 4 | .\" This file is part of libzip, a library to manipulate ZIP archives. |
| 5 | .\" The authors can be contacted at <libzip@nih.at> |
| 6 | .\" |
| 7 | .\" Redistribution and use in source and binary forms, with or without |
| 8 | .\" modification, are permitted provided that the following conditions |
| 9 | .\" are met: |
| 10 | .\" 1. Redistributions of source code must retain the above copyright |
| 11 | .\" notice, this list of conditions and the following disclaimer. |
| 12 | .\" 2. Redistributions in binary form must reproduce the above copyright |
| 13 | .\" notice, this list of conditions and the following disclaimer in |
| 14 | .\" the documentation and/or other materials provided with the |
| 15 | .\" distribution. |
| 16 | .\" 3. The names of the authors may not be used to endorse or promote |
| 17 | .\" products derived from this software without specific prior |
| 18 | .\" written permission. |
| 19 | .\" |
| 20 | .\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS |
| 21 | .\" OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 22 | .\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 23 | .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY |
| 24 | .\" DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 25 | .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE |
| 26 | .\" GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 27 | .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER |
| 28 | .\" IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 29 | .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| 30 | .\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 | .\" |
Thomas Klausner | 7ed6a92 | 2016-12-16 15:50:12 +0100 | [diff] [blame] | 32 | .Dd December 16, 2016 |
Thomas Klausner | d3bc856 | 2014-11-18 14:33:44 +0100 | [diff] [blame] | 33 | .Dt ZIP_SOURCE_READ 3 |
| 34 | .Os |
| 35 | .Sh NAME |
| 36 | .Nm zip_source_read |
| 37 | .Nd read data from zip source |
| 38 | .Sh LIBRARY |
| 39 | libzip (-lzip) |
| 40 | .Sh SYNOPSIS |
| 41 | .In zip.h |
| 42 | .Ft zip_int64_t |
Thomas Klausner | 50337cb | 2014-11-18 15:35:30 +0100 | [diff] [blame] | 43 | .Fn zip_source_read "zip_source_t *source" "void *data" "zip_uint64_t len" |
Thomas Klausner | d3bc856 | 2014-11-18 14:33:44 +0100 | [diff] [blame] | 44 | .Sh DESCRIPTION |
| 45 | The function |
| 46 | .Fn zip_source_read |
| 47 | reads up to |
| 48 | .Ar len |
Thomas Klausner | 50337cb | 2014-11-18 15:35:30 +0100 | [diff] [blame] | 49 | bytes of data from |
| 50 | .Ar source |
| 51 | at the current read offset into the buffer |
Thomas Klausner | d3bc856 | 2014-11-18 14:33:44 +0100 | [diff] [blame] | 52 | .Ar data . |
Thomas Klausner | 50337cb | 2014-11-18 15:35:30 +0100 | [diff] [blame] | 53 | .Pp |
| 54 | The zip source |
| 55 | .Ar source |
| 56 | has to be opened for reading by calling |
| 57 | .Xr zip_source_open 3 |
| 58 | first. |
Thomas Klausner | d3bc856 | 2014-11-18 14:33:44 +0100 | [diff] [blame] | 59 | .Sh RETURN VALUES |
Thomas Klausner | 4c1db35 | 2014-11-18 14:58:31 +0100 | [diff] [blame] | 60 | Upon successful completion the number of bytes read is returned. |
Thomas Klausner | 7ed6a92 | 2016-12-16 15:50:12 +0100 | [diff] [blame] | 61 | Upon reading end-of-file, zero is returned. |
Thomas Klausner | 4c1db35 | 2014-11-18 14:58:31 +0100 | [diff] [blame] | 62 | Otherwise, \-1 is returned and the error information in |
Thomas Klausner | 50337cb | 2014-11-18 15:35:30 +0100 | [diff] [blame] | 63 | .Ar source |
Thomas Klausner | 4c1db35 | 2014-11-18 14:58:31 +0100 | [diff] [blame] | 64 | is set to indicate the error. |
Thomas Klausner | d3bc856 | 2014-11-18 14:33:44 +0100 | [diff] [blame] | 65 | .Sh SEE ALSO |
| 66 | .Xr libzip 3 , |
| 67 | .Xr zip_source 3 , |
| 68 | .Xr zip_source_seek 3 , |
| 69 | .Xr zip_source_tell 3 , |
| 70 | .Xr zip_source_write 3 |
| 71 | .Sh AUTHORS |
| 72 | .An -nosplit |
| 73 | .An Dieter Baron Aq Mt dillo@nih.at |
| 74 | and |
| 75 | .An Thomas Klausner Aq Mt tk@giga.or.at |