All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jadx.plugins.input.javaconvert.ConvertResult Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
package jadx.plugins.input.javaconvert;

import java.io.Closeable;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.List;
import java.util.stream.Stream;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class ConvertResult implements Closeable {
	private static final Logger LOG = LoggerFactory.getLogger(ConvertResult.class);

	private final List converted = new ArrayList<>();
	private final List tmpPaths = new ArrayList<>();

	public List getConverted() {
		return converted;
	}

	public void addConvertedFiles(List paths) {
		converted.addAll(paths);
	}

	public void addTempPath(Path path) {
		tmpPaths.add(path);
	}

	public boolean isEmpty() {
		return converted.isEmpty();
	}

	@Override
	public void close() {
		for (Path tmpPath : tmpPaths) {
			try {
				delete(tmpPath);
			} catch (Exception e) {
				LOG.warn("Failed to delete temp path: {}", tmpPath, e);
			}
		}
	}

	@SuppressWarnings("ResultOfMethodCallIgnored")
	private static void delete(Path path) throws IOException {
		if (Files.isRegularFile(path)) {
			Files.delete(path);
			return;
		}
		if (Files.isDirectory(path)) {
			try (Stream pathStream = Files.walk(path)) {
				pathStream
						.sorted(Comparator.reverseOrder())
						.map(Path::toFile)
						.forEach(File::delete);
			}
		}
	}

	@Override
	public String toString() {
		return "ConvertResult{converted=" + converted + ", tmpPaths=" + tmpPaths + '}';
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy