1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-06 10:20:54 +00:00
plantuml/src/net/sourceforge/plantuml/ant/CheckZipTask.java

146 lines
3.7 KiB
Java
Raw Normal View History

2018-11-26 18:46:50 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2018-11-26 18:46:50 +00:00
*
* Project Info: http://plantuml.com
2022-08-17 17:34:24 +00:00
*
2018-11-26 18:46:50 +00:00
* If you like this project or if you find it useful, you can support us at:
2022-08-17 17:34:24 +00:00
*
2018-11-26 18:46:50 +00:00
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
2022-08-17 17:34:24 +00:00
*
2018-11-26 18:46:50 +00:00
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
*
* Original Author: Arnaud Roques
*
*
*/
package net.sourceforge.plantuml.ant;
2020-05-30 15:20:23 +00:00
import java.io.FileNotFoundException;
2018-11-26 18:46:50 +00:00
import java.io.IOException;
2020-05-30 15:20:23 +00:00
import java.io.InputStream;
2018-11-26 18:46:50 +00:00
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Task;
import org.apache.tools.ant.types.FileList;
import org.apache.tools.ant.types.FileSet;
2022-08-17 17:34:24 +00:00
import net.sourceforge.plantuml.log.Logme;
2020-05-30 15:20:23 +00:00
import net.sourceforge.plantuml.security.SFile;
import net.sourceforge.plantuml.security.SecurityUtils;
2018-11-26 18:46:50 +00:00
public class CheckZipTask extends Task {
// ::remove folder when WASM
2018-11-26 18:46:50 +00:00
private String zipfile = null;
2021-05-14 08:42:57 +00:00
private List<FileSet> filesets = new ArrayList<>();
private List<FileList> filelists = new ArrayList<>();
2018-11-26 18:46:50 +00:00
/**
* Add a set of files to touch
*/
public void addFileset(FileSet set) {
filesets.add(set);
}
/**
* Add a filelist to touch
*/
public void addFilelist(FileList list) {
filelists.add(list);
}
// The method executing the task
@Override
public void execute() throws BuildException {
myLog("Check " + zipfile);
try {
2020-05-30 15:20:23 +00:00
loadZipFile(new SFile(zipfile));
2018-11-26 18:46:50 +00:00
for (FileList fileList : filelists) {
manageFileList(fileList);
}
} catch (IOException e) {
2022-08-17 17:34:24 +00:00
Logme.error(e);
2018-11-26 18:46:50 +00:00
throw new BuildException(e.toString());
}
}
private void manageFileList(FileList fileList) {
boolean error = false;
final String[] srcFiles = fileList.getFiles(getProject());
for (String s : srcFiles) {
if (isPresentInFile(s) == false) {
myLog("Missing " + s);
error = true;
}
}
if (error) {
throw new BuildException("Some entries are missing in the zipfile");
}
}
private boolean isPresentInFile(String s) {
return entries.contains(s);
}
2021-05-14 08:42:57 +00:00
private final List<String> entries = new ArrayList<>();
2018-11-26 18:46:50 +00:00
2020-05-30 15:20:23 +00:00
private void loadZipFile(SFile file) throws IOException {
2018-11-26 18:46:50 +00:00
this.entries.clear();
2020-05-30 15:20:23 +00:00
final InputStream tmp = file.openFile();
if (tmp == null) {
throw new FileNotFoundException();
}
try (
final PrintWriter pw = SecurityUtils.createPrintWriter("tmp.txt");
final ZipInputStream zis = new ZipInputStream(tmp);
) {
ZipEntry ze = zis.getNextEntry();
while (ze != null) {
final String fileName = ze.getName();
this.entries.add(fileName);
if (fileName.endsWith("/") == false) {
pw.println("<file name=\"" + fileName + "\" />");
}
ze = zis.getNextEntry();
2018-11-26 18:46:50 +00:00
}
}
}
private synchronized void myLog(String s) {
this.log(s);
}
public void setZipfile(String s) {
this.zipfile = s;
}
}