forked from codehaus-plexus/plexus-archiver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTarUnArchiver.java
184 lines (166 loc) · 5.57 KB
/
TarUnArchiver.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
package org.codehaus.plexus.archiver.tar;
/**
*
* Copyright 2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import org.apache.commons.compress.archivers.tar.TarArchiveEntry;
import org.apache.commons.compress.archivers.tar.TarArchiveInputStream;
import org.apache.commons.compress.compressors.bzip2.BZip2CompressorInputStream;
import org.apache.commons.compress.compressors.xz.XZCompressorInputStream;
import org.codehaus.plexus.archiver.AbstractUnArchiver;
import org.codehaus.plexus.archiver.ArchiverException;
import org.codehaus.plexus.archiver.util.Streams;
import org.codehaus.plexus.util.IOUtil;
import org.iq80.snappy.SnappyInputStream;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.zip.GZIPInputStream;
/**
* @author <a href="mailto:[email protected]">Emmanuel Venisse</a>
* @version $Revision$ $Date$
*/
public class TarUnArchiver
extends AbstractUnArchiver
{
public TarUnArchiver()
{
}
public TarUnArchiver( File sourceFile )
{
super( sourceFile );
}
/**
* compression method
*/
private UntarCompressionMethod compression = UntarCompressionMethod.NONE;
/**
* Set decompression algorithm to use; default=none.
* <p/>
* Allowable values are
* <ul>
* <li>none - no compression</li>
* <li>gzip - Gzip compression</li>
* <li>bzip2 - Bzip2 compression</li>
* <li>snappy - Snappy compression</li>
* <li>xz - Xz compression</li>
* </ul>
*
* @param method compression method
*/
public void setCompression( UntarCompressionMethod method )
{
compression = method;
}
/**
* No encoding support in Untar.
*/
public void setEncoding( String encoding )
{
getLogger().warn( "The TarUnArchiver doesn't support the encoding attribute" );
}
protected void execute()
throws ArchiverException
{
execute( getSourceFile(), getDestDirectory() );
}
protected void execute( String path, File outputDirectory )
{
execute( new File( path ), getDestDirectory() );
}
protected void execute( File sourceFile, File destDirectory )
throws ArchiverException
{
TarArchiveInputStream tis = null;
try
{
getLogger().info( "Expanding: " + sourceFile + " into " + destDirectory );
TarFile tarFile = new TarFile( sourceFile );
tis = new TarArchiveInputStream(
decompress( compression, sourceFile, new BufferedInputStream( new FileInputStream( sourceFile ) ) ) );
TarArchiveEntry te;
while ( ( te = tis.getNextTarEntry() ) != null )
{
TarResource fileInfo = new TarResource( tarFile, te );
if ( isSelected( te.getName(), fileInfo ) )
{
final String symlinkDestination = te.isSymbolicLink() ? te.getLinkName() : null;
extractFile( sourceFile, destDirectory, tis, te.getName(), te.getModTime(), te.isDirectory(),
te.getMode() != 0 ? te.getMode() : null, symlinkDestination );
}
}
getLogger().debug( "expand complete" );
}
catch ( IOException ioe )
{
throw new ArchiverException( "Error while expanding " + sourceFile.getAbsolutePath(), ioe );
}
finally
{
IOUtil.close( tis );
}
}
/**
* This method wraps the input stream with the
* corresponding decompression method
*
* @param file provides location information for BuildException
* @param istream input stream
* @return input stream with on-the-fly decompression
* @throws IOException thrown by GZIPInputStream constructor
*/
private InputStream decompress( UntarCompressionMethod compression, final File file, final InputStream istream )
throws IOException, ArchiverException
{
if ( compression == UntarCompressionMethod.GZIP )
{
return Streams.bufferedInputStream( new GZIPInputStream( istream ) );
}
else if ( compression == UntarCompressionMethod.BZIP2 )
{
return new BZip2CompressorInputStream( istream );
}
else if ( compression == UntarCompressionMethod.SNAPPY )
{
return new SnappyInputStream( istream, true );
}
else if (compression == UntarCompressionMethod.XZ)
{
return new XZCompressorInputStream(istream);
}
return istream;
}
/**
* Valid Modes for Compression attribute to Untar Task
*/
public static enum UntarCompressionMethod
{
NONE( "none" ),
GZIP( "gzip" ),
BZIP2( "bzip2" ),
SNAPPY( "snappy" ),
XZ("xz");
final String value;
/**
* Constructor
*/
UntarCompressionMethod( String value )
{
this.value = value;
}
}
}