-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZipTask.php
317 lines (273 loc) · 8.62 KB
/
ZipTask.php
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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<?php
/**
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information please see
* <http://phing.info>.
*/
namespace Phing\Task\Ext\Archive;
use Exception;
use Phing\Exception\BuildException;
use Phing\Io\IOException;
use Phing\Io\File;
use Phing\Io\SourceFileScanner;
use Phing\Mapper\MergeMapper;
use Phing\Project;
use Phing\Task\System\MatchingTask;
use Phing\Type\FileSet;
use ZipArchive;
/**
* Creates a zip archive using PHP ZipArchive extension/
*
* @author Michiel Rook <[email protected]>
* @package phing.tasks.ext
* @since 2.1.0
*/
class ZipTask extends MatchingTask
{
/**
* @var File
*/
private $zipFile;
/**
* @var File
*/
private $baseDir;
/**
* Whether to include empty dirs in the archive.
*/
private $includeEmpty = true;
private $filesets = [];
private $ignoreLinks = false;
/**
* File path prefix in zip archive
*
* @var string
*/
private $prefix = null;
/**
* Comment for zip archive.
*
* @var string $comment
*/
private $comment = '';
/**
* Add a new fileset.
*
* @return ZipFileSet
*/
public function createFileSet()
{
$this->fileset = new ZipFileSet();
$this->filesets[] = $this->fileset;
return $this->fileset;
}
/**
* Add a new fileset.
*
* @param ZipFileSet $fileset
*/
public function addZipFileSet(ZipFileSet $fileset)
{
$this->filesets[] = $fileset;
}
/**
* Set is the name/location of where to create the zip file.
*
* @param File $destFile The output of the zip
*/
public function setDestFile(File $destFile)
{
$this->zipFile = $destFile;
}
/**
* This is the base directory to look in for things to zip.
*
* @param File $baseDir
*/
public function setBasedir(File $baseDir)
{
$this->baseDir = $baseDir;
}
/**
* Sets the file path prefix for file in the zip file.
*
* @param string $prefix Prefix
*
* @return void
*/
public function setPrefix($prefix)
{
$this->prefix = $prefix;
}
/**
* Set the include empty dirs flag.
*
* @param boolean Flag if empty dirs should be tarred too
* @return void
*/
public function setIncludeEmptyDirs($bool)
{
$this->includeEmpty = (bool) $bool;
}
/**
* Set the ignore symlinks flag.
*
* @param boolean $bool Flag if symlinks should be ignored
* @return void
*/
public function setIgnoreLinks($bool)
{
$this->ignoreLinks = (bool) $bool;
}
/**
* Add a comment to the zip archive.
*
* @param string $text
*
* @return void
*/
public function setComment($text)
{
$this->comment = $text;
}
/**
* do the work
*
* @throws BuildException
*/
public function main()
{
if (!extension_loaded('zip')) {
throw new BuildException("Zip extension is required");
}
if ($this->zipFile === null) {
throw new BuildException("zipfile attribute must be set!", $this->getLocation());
}
if ($this->zipFile->exists() && $this->zipFile->isDirectory()) {
throw new BuildException("zipfile is a directory!", $this->getLocation());
}
if ($this->zipFile->exists() && !$this->zipFile->canWrite()) {
throw new BuildException("Can not write to the specified zipfile!", $this->getLocation());
}
try {
if ($this->baseDir !== null) {
if (!$this->baseDir->exists()) {
throw new BuildException(
"basedir '" . (string) $this->baseDir . "' does not exist!",
$this->getLocation()
);
}
if (empty($this->filesets)) {
// add the main fileset to the list of filesets to process.
$mainFileSet = new ZipFileSet($this->fileset);
$mainFileSet->setDir($this->baseDir);
$this->filesets[] = $mainFileSet;
}
}
if (empty($this->filesets)) {
throw new BuildException(
"You must supply either a basedir "
. "attribute or some nested filesets.",
$this->getLocation()
);
}
// check if zip is out of date with respect to each
// fileset
if ($this->areFilesetsUpToDate()) {
$this->log("Nothing to do: " . $this->zipFile->__toString() . " is up to date.", Project::MSG_INFO);
return;
}
$this->log("Building zip: " . $this->zipFile->__toString(), Project::MSG_INFO);
$zip = new ZipArchive();
$res = $zip->open($this->zipFile->getAbsolutePath(), ZipArchive::CREATE);
if ($res !== true) {
throw new Exception("ZipArchive::open() failed with code " . $res);
}
if ($this->comment !== '') {
$isCommented = $zip->setArchiveComment($this->comment);
if ($isCommented === false) {
$this->log("Could not add a comment for the Archive.", Project::MSG_INFO);
}
}
$this->addFilesetsToArchive($zip);
$zip->close();
} catch (IOException $ioe) {
$msg = "Problem creating ZIP: " . $ioe->getMessage();
throw new BuildException($msg, $ioe, $this->getLocation());
}
}
/**
* @param array $files array of filenames
* @param File $dir
* @return boolean
*/
private function archiveIsUpToDate($files, $dir)
{
$sfs = new SourceFileScanner($this);
$mm = new MergeMapper();
$mm->setTo($this->zipFile->getAbsolutePath());
return count($sfs->restrict($files, $dir, null, $mm)) == 0;
}
/**
* @return array
* @throws BuildException
*/
public function areFilesetsUpToDate()
{
/**
* @var FileSet $fs
*/
foreach ($this->filesets as $fs) {
$files = $fs->getIterator($this->includeEmpty);
if (!$this->archiveIsUpToDate($files, $fs->getDir($this->project))) {
return false;
}
for ($i = 0, $fcount = count($files); $i < $fcount; $i++) {
if ($this->zipFile->equals(new File($fs->getDir($this->project), $files[$i]))) {
throw new BuildException("A zip file cannot include itself", $this->getLocation());
}
}
}
return true;
}
/**
* @param $zip
*/
private function addFilesetsToArchive($zip)
{
foreach ($this->filesets as $fs) {
$fsBasedir = (null != $this->baseDir) ? $this->baseDir :
$fs->getDir($this->project);
$files = $fs->getIterator($this->includeEmpty);
foreach ($files as $file) {
$f = new File($fsBasedir, $file);
$pathInZip = $this->prefix
. $f->getPathWithoutBase($fsBasedir);
$pathInZip = str_replace('\\', '/', $pathInZip);
if ($this->ignoreLinks && $f->isLink()) {
continue;
}
if ($f->isDirectory()) {
if ($pathInZip != '.') {
$zip->addEmptyDir($pathInZip);
}
} else {
$zip->addFile($f->getAbsolutePath(), $pathInZip);
}
$this->log("Adding " . $f->getPath() . " as " . $pathInZip . " to archive.", Project::MSG_VERBOSE);
}
}
}
}