Thomas Klausner | 896cd8c | 2011-03-17 23:39:56 +0100 | [diff] [blame] | 1 | .\" zip_set_file_compression.mdoc -- set compression method and its flags |
Thomas Klausner | 504e2c2 | 2012-01-17 12:34:33 +0100 | [diff] [blame] | 2 | .\" Copyright (C) 2012 Dieter Baron and Thomas Klausner |
Thomas Klausner | b293437 | 2011-03-17 23:29:12 +0100 | [diff] [blame] | 3 | .\" |
| 4 | .\" This file is part of libzip, a library to manipulate ZIP files. |
| 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 | 9bbb9e8 | 2012-05-01 22:20:09 +0200 | [diff] [blame] | 32 | .Dd May 1, 2012 |
Thomas Klausner | 896cd8c | 2011-03-17 23:39:56 +0100 | [diff] [blame] | 33 | .Dt ZIP_SET_FILE_COMPRESSION 3 |
Thomas Klausner | b293437 | 2011-03-17 23:29:12 +0100 | [diff] [blame] | 34 | .Os |
| 35 | .Sh NAME |
Thomas Klausner | 896cd8c | 2011-03-17 23:39:56 +0100 | [diff] [blame] | 36 | .Nm zip_set_file_compression |
Thomas Klausner | 504e2c2 | 2012-01-17 12:34:33 +0100 | [diff] [blame] | 37 | .Nd set compression method for file in zip |
Thomas Klausner | b293437 | 2011-03-17 23:29:12 +0100 | [diff] [blame] | 38 | .Sh LIBRARY |
| 39 | libzip (-lzip) |
| 40 | .Sh SYNOPSIS |
| 41 | .In zip.h |
| 42 | .Ft int |
Dieter Baron | 1d9dfeb | 2014-09-28 23:02:54 +0200 | [diff] [blame] | 43 | .Fn zip_set_file_compression "zip_t *archive" "zip_uint64_t index" \ |
Dieter Baron | 538e398 | 2012-02-27 11:07:40 +0100 | [diff] [blame] | 44 | "zip_int32_t comp" "zip_uint32_t comp_flags" |
Thomas Klausner | b293437 | 2011-03-17 23:29:12 +0100 | [diff] [blame] | 45 | .Sh DESCRIPTION |
| 46 | The |
Thomas Klausner | 896cd8c | 2011-03-17 23:39:56 +0100 | [diff] [blame] | 47 | .Fn zip_set_file_compression |
Thomas Klausner | b293437 | 2011-03-17 23:29:12 +0100 | [diff] [blame] | 48 | function sets the compression method for the file at position |
| 49 | .Ar index |
| 50 | in the zip archive to |
Thomas Klausner | 896cd8c | 2011-03-17 23:39:56 +0100 | [diff] [blame] | 51 | .Ar comp |
Thomas Klausner | b293437 | 2011-03-17 23:29:12 +0100 | [diff] [blame] | 52 | with the compression method specific |
Thomas Klausner | 9bbb9e8 | 2012-05-01 22:20:09 +0200 | [diff] [blame] | 53 | .Ar comp_flags . |
Thomas Klausner | 852cb3d | 2011-03-17 23:34:57 +0100 | [diff] [blame] | 54 | The |
Thomas Klausner | 896cd8c | 2011-03-17 23:39:56 +0100 | [diff] [blame] | 55 | .Ar comp |
Thomas Klausner | 852cb3d | 2011-03-17 23:34:57 +0100 | [diff] [blame] | 56 | is the same as returned by |
Thomas Klausner | b293437 | 2011-03-17 23:29:12 +0100 | [diff] [blame] | 57 | .Xr zip_stat 3 . |
Thomas Klausner | 852cb3d | 2011-03-17 23:34:57 +0100 | [diff] [blame] | 58 | For the |
Thomas Klausner | 896cd8c | 2011-03-17 23:39:56 +0100 | [diff] [blame] | 59 | .Ar comp |
Thomas Klausner | 504e2c2 | 2012-01-17 12:34:33 +0100 | [diff] [blame] | 60 | argument, currently only the following values are supported: |
| 61 | .Bl -tag -width ZIP_CM_DEFLATE_XX |
| 62 | .It Dv ZIP_CM_DEFAULT |
| 63 | default compression; currently the same as |
| 64 | .Dv ZIP_CM_DEFLATE . |
| 65 | .It Dv ZIP_CM_STORE |
| 66 | Store the file uncompressed. |
| 67 | .It Dv ZIP_CM_DEFLATE |
| 68 | Deflate the file with the |
| 69 | .Xr zlib 3 |
| 70 | algorithm and default options |
| 71 | .El |
Thomas Klausner | 852cb3d | 2011-03-17 23:34:57 +0100 | [diff] [blame] | 72 | .Pp |
Thomas Klausner | 9bbb9e8 | 2012-05-01 22:20:09 +0200 | [diff] [blame] | 73 | The |
| 74 | .Ar comp_flags |
| 75 | argument is currently ignored. |
| 76 | .\" For the comp_flags argument, the lower 4 bits define the compression |
Thomas Klausner | 504e2c2 | 2012-01-17 12:34:33 +0100 | [diff] [blame] | 77 | .\" level. |
| 78 | .\" 0 is fastest compression, 15 is highest compression |
| 79 | .\" .Dv ZIP_COMP_FL_DEFAULT |
| 80 | .\" can be used to specify that the default shall be used. |
| 81 | .\" Further compression method specific flags will be added over time. |
| 82 | .Pp |
| 83 | The current compression method for a file in a zip archive can be |
| 84 | determined using |
| 85 | .Xr zip_stat 3 . |
Thomas Klausner | b293437 | 2011-03-17 23:29:12 +0100 | [diff] [blame] | 86 | .Sh RETURN VALUES |
| 87 | Upon successful completion 0 is returned. |
| 88 | Otherwise, \-1 is returned and the error information in |
| 89 | .Ar archive |
| 90 | is set to indicate the error. |
| 91 | .Sh ERRORS |
Thomas Klausner | 896cd8c | 2011-03-17 23:39:56 +0100 | [diff] [blame] | 92 | .Fn zip_set_file_compression |
Thomas Klausner | b293437 | 2011-03-17 23:29:12 +0100 | [diff] [blame] | 93 | fails if: |
| 94 | .Bl -tag -width Er |
| 95 | .It Bq Er ZIP_ER_INVAL |
| 96 | .Ar index |
| 97 | is not a valid file index in |
| 98 | .Ar archive , |
| 99 | or the argument combination is invalid. |
Thomas Klausner | 504e2c2 | 2012-01-17 12:34:33 +0100 | [diff] [blame] | 100 | .It Bq Er ZIP_ER_COMPNOTSUPP |
| 101 | Unsupported compression method requested. |
| 102 | .It Bq Er ZIP_ER_RDONLY |
| 103 | Read-only zip file, no changes allowed. |
Thomas Klausner | b293437 | 2011-03-17 23:29:12 +0100 | [diff] [blame] | 104 | .El |
| 105 | .Sh SEE ALSO |
| 106 | .Xr libzip 3 , |
| 107 | .Xr zip_stat 3 |
| 108 | .Sh AUTHORS |
| 109 | .An -nosplit |
Thomas Klausner | 0acbab4 | 2013-07-28 23:29:08 +0200 | [diff] [blame] | 110 | .An Dieter Baron Aq Mt dillo@nih.at |
Thomas Klausner | b293437 | 2011-03-17 23:29:12 +0100 | [diff] [blame] | 111 | and |
Thomas Klausner | 0acbab4 | 2013-07-28 23:29:08 +0200 | [diff] [blame] | 112 | .An Thomas Klausner Aq Mt tk@giga.or.at |