-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathPlexusIoZipFileResourceCollection.java
251 lines (210 loc) · 7.84 KB
/
PlexusIoZipFileResourceCollection.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/*
* Copyright 2007 The Codehaus 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.
*/
package org.codehaus.plexus.archiver.zip;
import java.io.Closeable;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.net.URLClassLoader;
import java.nio.charset.Charset;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.jar.JarFile;
import org.apache.commons.compress.archivers.zip.ZipArchiveEntry;
import org.apache.commons.compress.archivers.zip.ZipFile;
import org.codehaus.plexus.components.io.functions.SymlinkDestinationSupplier;
import org.codehaus.plexus.components.io.resources.AbstractPlexusIoArchiveResourceCollection;
import org.codehaus.plexus.components.io.resources.EncodingSupported;
import org.codehaus.plexus.components.io.resources.PlexusIoResource;
import org.codehaus.plexus.components.io.resources.PlexusIoURLResource;
public class PlexusIoZipFileResourceCollection
extends AbstractPlexusIoArchiveResourceCollection
implements EncodingSupported
{
/**
* The zip file resource collections role hint.
*/
public static final String ROLE_HINT = "zipFile";
/**
* The zip file resource collections role hint for jar files.
*/
public static final String JAR_ROLE_HINT = "jarFile";
private Charset charset = Charset.forName( "UTF-8" );
public PlexusIoZipFileResourceCollection()
{
}
@Override
public boolean isConcurrentAccessSupported()
{
// Maybe we could support concurrent some time in the future
return false;
}
@Override
protected Iterator<PlexusIoResource> getEntries()
throws IOException
{
final File f = getFile();
if ( f == null )
{
throw new IOException( "The zip file has not been set." );
}
final URLClassLoader urlClassLoader = new URLClassLoader( new URL[]
{
f.toURI().toURL()
}, null )
{
@Override
public URL getResource( String name )
{
return findResource( name );
}
};
final URL url = new URL( "jar:" + f.toURI().toURL() + "!/" );
final JarFile jarFile = new JarFile( f );
final ZipFile zipFile = new ZipFile( f, charset != null ? charset.name() : "UTF8" );
final Enumeration<ZipArchiveEntry> en = zipFile.getEntriesInPhysicalOrder();
return new ZipFileResourceIterator( en, url, jarFile, zipFile, urlClassLoader );
}
private static class ZipFileResourceIterator
implements Iterator<PlexusIoResource>, Closeable
{
private class ZipFileResource
extends PlexusIoURLResource
{
private final JarFile jarFile;
private ZipFileResource( JarFile jarFile, ZipArchiveEntry entry )
{
super( entry.getName(),
entry.getTime() == -1 ? PlexusIoResource.UNKNOWN_MODIFICATION_DATE : entry.getTime(),
entry.isDirectory() ? PlexusIoResource.UNKNOWN_RESOURCE_SIZE : entry.getSize(),
!entry.isDirectory(), entry.isDirectory(), true );
this.jarFile = jarFile;
}
@Override
public InputStream getContents() throws IOException {
// Uses the JarFile to get the input stream for the entry.
// The super method will do the same, why overriding it?
// But it will create new JarFile for every entry
// and that could be very expensive in some cases (when the JAR is signed).
// Enabling the URLConnection cache would solve the problem
// but the cache is global and shared during the build so
// if the AJR file changed during the causes another problem
// (see plexus-io#2).
// Using local JarFile instance solves the two issues -
// JarFile is initialized once so there is no performance penalty
// and it is local so if the file changed during the build
// would not be a problem.
// And we know the URL returned by getURL is part of the JAR
// because that is how we constructed it.
return jarFile.getInputStream( jarFile.getEntry( getName() ) );
}
@Override
public URL getURL()
throws IOException
{
String spec = getName();
if ( spec.startsWith( "/" ) )
{
// Code path for PLXCOMP-170. Note that urlClassloader does not seem to produce correct
// urls for this. Which again means files loaded via this path cannot have file names
// requiring url encoding
spec = "./" + spec;
return new URL( url, spec );
}
return urlClassLoader.getResource( spec );
}
}
private class ZipFileSymlinkResource
extends ZipFileResource
implements SymlinkDestinationSupplier
{
private final ZipArchiveEntry entry;
private ZipFileSymlinkResource( JarFile jarFile, ZipArchiveEntry entry )
{
super( jarFile, entry );
this.entry = entry;
}
@Override
public String getSymlinkDestination()
throws IOException
{
return zipFile.getUnixSymlink( entry );
}
@Override
public boolean isSymbolicLink()
{
return true;
}
}
private final Enumeration<ZipArchiveEntry> en;
private final URL url;
private final JarFile jarFile;
private final ZipFile zipFile;
private final URLClassLoader urlClassLoader;
public ZipFileResourceIterator( Enumeration<ZipArchiveEntry> en, URL url, JarFile jarFile, ZipFile zipFile,
URLClassLoader urlClassLoader )
{
this.en = en;
this.url = url;
this.jarFile = jarFile;
this.zipFile = zipFile;
this.urlClassLoader = urlClassLoader;
}
@Override
public boolean hasNext()
{
return en.hasMoreElements();
}
@Override
public PlexusIoResource next()
{
final ZipArchiveEntry entry = en.nextElement();
return entry.isUnixSymlink()
? new ZipFileSymlinkResource( jarFile, entry )
: new ZipFileResource( jarFile, entry );
}
@Override
public void remove()
{
throw new UnsupportedOperationException( "Removing isn't implemented." );
}
@Override
public void close()
throws IOException
{
try
{
urlClassLoader.close();
}
finally
{
try
{
zipFile.close();
} finally
{
jarFile.close();
}
}
}
}
@Override
public void setEncoding( Charset charset )
{
this.charset = charset;
}
}