aboutsummaryrefslogtreecommitdiffstats
path: root/jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/utils/JarExtractor.java
blob: 44feaa3747435506b90860edce04194b3768889d (plain)
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
package org.openecomp.sdc.toscaparser.utils;

import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Enumeration;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;

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

import com.google.common.io.MoreFiles;
import com.google.common.io.RecursiveDeleteOption;

public class JarExtractor {

    private static final Logger LOGGER = LoggerFactory.getLogger(JarExtractor.class);
    private static final String PYTHON_DEPENDENCIES_PATH = "Lib/site-packages";
    private static final String TEMP_DIR_PREFIX = "__tosca__";

    public Path extractPyhtonPackages() throws IOException {
        String codePath = getCodePath();
        if (!isRunningInJar(codePath)) {
            LOGGER.info("#extractPyhtonPackages - Nothing to extract, we're not running in a jar file.");
            return null;
        }

        Path tempDirPath = createTempDirectory();
        String tempDirName = tempDirPath.toString();
        extractJarDirectory(codePath, tempDirName);
        LOGGER.info("#extractPyhtonPackages - End. Extracted python dependencies to {}", tempDirName);
        return tempDirPath;
    }

    private Path createTempDirectory() throws IOException {
        Path tempDir = Files.createTempDirectory(TEMP_DIR_PREFIX);
        LOGGER.debug("#createTempDirectory - tempDir created: {}", tempDir);
        return tempDir;
    }

    private void extractJarDirectory(String jarDir, String tempDir) throws IOException {
        try (JarFile jarFile = new JarFile(jarDir)) {
            Enumeration<JarEntry> entries = jarFile.entries();
            while (entries.hasMoreElements()) {
                JarEntry entry = entries.nextElement();
                if (shouldExtract(entry)) {
                    extract(jarFile, entry, tempDir);
                }
            }
        }
    }

    private void extract(JarFile jarFile, JarEntry entry, String tempDirName) throws IOException {
        try (InputStream source = jarFile.getInputStream(entry)) {
            Path targetPath = Paths.get(tempDirName, entry.getName());
            Files.createDirectories(targetPath.getParent());
            Files.copy(source, targetPath);
        }
    }

    private boolean shouldExtract(JarEntry entry) {
        return !entry.isDirectory() && entry.getName()
                .startsWith(PYTHON_DEPENDENCIES_PATH);
    }

    private String getCodePath() {
        String codePath = this.getClass()
                .getProtectionDomain()
                .getCodeSource()
                .getLocation()
                .getFile();
        LOGGER.debug("#getCodePath - codePath: {}", codePath);
        return codePath;
    }

    private boolean isRunningInJar(String path) {
        return path.endsWith(".jar");
    }
    
    public void deleteDirectory(Path path) throws IOException {
        MoreFiles.deleteRecursively(path, RecursiveDeleteOption.ALLOW_INSECURE);
        LOGGER.info("#deleteDirectory - deleted temp directory: {}", path);
    }
}