]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/libarchive/libarchive/archive_write_filter.3
MFC r299529,r299540,r299576,r299896:
[FreeBSD/stable/10.git] / contrib / libarchive / libarchive / archive_write_filter.3
1 .\" Copyright (c) 2003-2011 Tim Kientzle
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd August 14, 2014
28 .Dt ARCHIVE_WRITE_FILTER 3
29 .Os
30 .Sh NAME
31 .Nm archive_write_add_filter_b64encode ,
32 .Nm archive_write_add_filter_by_name ,
33 .Nm archive_write_add_filter_bzip2 ,
34 .Nm archive_write_add_filter_compress ,
35 .Nm archive_write_add_filter_grzip ,
36 .Nm archive_write_add_filter_gzip ,
37 .Nm archive_write_add_filter_lrzip ,
38 .Nm archive_write_add_filter_lz4 ,
39 .Nm archive_write_add_filter_lzip ,
40 .Nm archive_write_add_filter_lzma ,
41 .Nm archive_write_add_filter_lzop ,
42 .Nm archive_write_add_filter_none ,
43 .Nm archive_write_add_filter_program ,
44 .Nm archive_write_add_filter_uuencode ,
45 .Nm archive_write_add_filter_xz
46 .Sh LIBRARY
47 Streaming Archive Library (libarchive, -larchive)
48 .Sh SYNOPSIS
49 .In archive.h
50 .Ft int
51 .Fn archive_write_add_filter_b64encode "struct archive *"
52 .Ft int
53 .Fn archive_write_add_filter_bzip2 "struct archive *"
54 .Ft int
55 .Fn archive_write_add_filter_compress "struct archive *"
56 .Ft int
57 .Fn archive_write_add_filter_grzip "struct archive *"
58 .Ft int
59 .Fn archive_write_add_filter_gzip "struct archive *"
60 .Ft int
61 .Fn archive_write_add_filter_lrzip "struct archive *"
62 .Ft int
63 .Fn archive_write_add_filter_lz4 "struct archive *"
64 .Ft int
65 .Fn archive_write_add_filter_lzip "struct archive *"
66 .Ft int
67 .Fn archive_write_add_filter_lzma "struct archive *"
68 .Ft int
69 .Fn archive_write_add_filter_lzop "struct archive *"
70 .Ft int
71 .Fn archive_write_add_filter_none "struct archive *"
72 .Ft int
73 .Fn archive_write_add_filter_program "struct archive *" "const char * cmd"
74 .Ft int
75 .Fn archive_write_add_filter_uuencode "struct archive *"
76 .Ft int
77 .Fn archive_write_add_filter_xz "struct archive *"
78 .Sh DESCRIPTION
79 .Bl -tag -width indent
80 .It Xo
81 .Fn archive_write_add_filter_bzip2 ,
82 .Fn archive_write_add_filter_compress ,
83 .Fn archive_write_add_filter_grzip ,
84 .Fn archive_write_add_filter_gzip ,
85 .Fn archive_write_add_filter_lrzip ,
86 .Fn archive_write_add_filter_lz4 ,
87 .Fn archive_write_add_filter_lzip ,
88 .Fn archive_write_add_filter_lzma ,
89 .Fn archive_write_add_filter_lzop ,
90 .Fn archive_write_add_filter_xz ,
91 .Xc
92 The resulting archive will be compressed as specified.
93 Note that the compressed output is always properly blocked.
94 .It Xo
95 .Fn archive_write_add_filter_b64encode ,
96 .Fn archive_write_add_filter_uuencode ,
97 .Xc
98 The output will be encoded as specified.
99 The encoded output is always properly blocked.
100 .It Fn archive_write_add_filter_none
101 This is never necessary.
102 It is provided only for backwards compatibility.
103 .It Fn archive_write_add_filter_program
104 The archive will be fed into the specified compression program.
105 The output of that program is blocked and written to the client
106 write callbacks.
107 .El
108 .Sh RETURN VALUES
109 These functions return
110 .Cm ARCHIVE_OK
111 on success, or
112 .Cm ARCHIVE_FATAL .
113 .\"
114 .Sh ERRORS
115 Detailed error codes and textual descriptions are available from the
116 .Fn archive_errno
117 and
118 .Fn archive_error_string
119 functions.
120 .\"
121 .Sh SEE ALSO
122 .Xr tar 1 ,
123 .Xr libarchive 3 ,
124 .Xr archive_write 3 ,
125 .Xr archive_write_format 3 ,
126 .Xr archive_write_set_options 3 ,
127 .Xr cpio 5 ,
128 .Xr mtree 5 ,
129 .Xr tar 5