summaryrefslogtreecommitdiffstats
path: root/openecomp-be/tools/compile-helper-plugin/src/main/java/org/openecomp/sdc/onboarding/BuildState.java
blob: 888622f959ec75ae9968acc846bcd5b1829cebb4 (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
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
/*
 * Copyright © 2018 European Support Limited
 *
 * 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 a "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.openecomp.sdc.onboarding;

import static org.openecomp.sdc.onboarding.Constants.RESOURCES_CHANGED;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.function.BiFunction;
import java.util.function.Function;
import java.util.stream.Stream;
import org.apache.maven.project.MavenProject;

public class BuildState {

    private static Map<String, Long> fullBuildData = new HashMap<>();
    private static Map<String, Long> fullResourceBuildData = new HashMap<>();
    private static Map<String, Object> moduleBuildData = new HashMap<>();
    private static Map<String, Object> resourceBuildData = new HashMap<>();

    private static File buildStateFile;
    private static File resourceStateFile;
    private File moduleBuildDataFile;
    private File resourceBuildDataFile;
    private MavenProject project;
    private String buildStateFilePath;
    private String resourceStateFilePath;

    private void readFullBuildState() {
        buildStateFile = initialize(this::getBuildStateFile, fullBuildData,
                buildStateFilePath.substring(0, buildStateFilePath.indexOf('/')), project);
    }

    private void readResourceBuildState() {
        resourceStateFile = initialize(this::getResourceStateFile, fullResourceBuildData,
                resourceStateFilePath.substring(0, resourceStateFilePath.indexOf('/')), project);

    }

    private File initialize(BiFunction<String, MavenProject, File> funct, Map store, String moduleCoordinate,
            MavenProject proj) {
        File file = funct.apply(moduleCoordinate, proj);
        file.getParentFile().mkdirs();
        try (FileInputStream fis = new FileInputStream(file); ObjectInputStream ois = new ObjectInputStream(fis);) {
            if (store.isEmpty()) {
                store.putAll(HashMap.class.cast(ois.readObject()));
            }
        } catch (Exception e) {
            store.clear();
        }
        return file;
    }

    private void writeFullBuildState() throws IOException {
        writeState(buildStateFile, fullBuildData);
    }

    private void writeFullResourceBuildState() throws IOException {
        writeState(resourceStateFile, fullResourceBuildData);
    }

    private void writeState(File file, Map store) throws IOException {
        try (FileOutputStream fos = new FileOutputStream(file); ObjectOutputStream oos = new ObjectOutputStream(fos)) {
            oos.writeObject(store);
        }
    }

    private File getBuildStateFile(String moduleCoordinate, MavenProject proj) {
        return getStateFile(moduleCoordinate, proj, buildStateFilePath);
    }

    private File getResourceStateFile(String moduleCoordinate, MavenProject proj) {
        return getStateFile(moduleCoordinate, proj, resourceStateFilePath);
    }

    private File getStateFile(String moduleCoordinate, MavenProject proj, String filePath) {
        return new File(getTopParentProject(moduleCoordinate, proj).getBasedir(),
                filePath.substring(filePath.indexOf('/') + 1));
    }

    private MavenProject getTopParentProject(String moduleCoordinate, MavenProject proj) {
        if (getModuleCoordinate(proj).equals(moduleCoordinate) || proj.getParent() == null) {
            return proj;
        } else {
            return getTopParentProject(moduleCoordinate, proj.getParent());
        }
    }

    private String getModuleCoordinate(MavenProject project) {
        return project.getGroupId() + ":" + project.getArtifactId();
    }

    void addModuleBuildTime(String moduleCoordinates, Long buildTime) {
        Long lastTime = fullBuildData.put(moduleCoordinates, buildTime);
        try {
            if (lastTime == null || !lastTime.equals(buildTime)) {
                writeFullBuildState();
            }
        } catch (IOException ignored) {
            // ignored. No need to handle. System will take care.
        }
    }

    void addResourceBuildTime(String moduleCoordinates, Long buildTime) {
        if (project.getProperties().containsKey(RESOURCES_CHANGED)) {
            Long lastTime = fullResourceBuildData.put(moduleCoordinates, buildTime);
            try {
                writeFullResourceBuildState();
            } catch (IOException ignored) {
                // ignored. No need to handle. System will take care.
            }
        }
    }

    void addModuleBuildData(String moduleCoordinates, Map moduleBuildDependencies) {
        moduleBuildData.put(moduleCoordinates, moduleBuildDependencies);
    }

    Map<String, Object> readModuleBuildData() {
        return readBuildData(moduleBuildDataFile);
    }

    void saveModuleBuildData(String moduleCoordinate) {
        saveBuildData(moduleBuildDataFile, moduleBuildData.get(moduleCoordinate));
    }

    void saveResourceBuildData(String moduleCoordinate) {
        saveBuildData(resourceBuildDataFile, resourceBuildData.get(moduleCoordinate));
    }

    private void saveBuildData(File file, Object dataToSave) {
        file.getParentFile().mkdirs();
        if (dataToSave != null) {
            try (FileOutputStream fos = new FileOutputStream(file);
                 ObjectOutputStream ois = new ObjectOutputStream(fos)) {
                ois.writeObject(dataToSave);
            } catch (IOException ignored) {
                //ignored. do nothing. system will take care.
            }
        }
    }

    Map<String, Object> readResourceBuildData() {
        return readBuildData(resourceBuildDataFile);
    }

    private Map<String, Object> readBuildData(File file) {
        try (FileInputStream fis = new FileInputStream(file); ObjectInputStream ois = new ObjectInputStream(fis)) {
            return HashMap.class.cast(ois.readObject());
        } catch (Exception e) {
            return new HashMap<>();
        }
    }

    void addResourceBuildData(String moduleCoordinates, Map currentModuleResourceBuildData) {
        resourceBuildData.put(moduleCoordinates, currentModuleResourceBuildData);
    }

    Long getBuildTime(String moduleCoordinates) {
        if (fullBuildData.isEmpty()) {
            readFullBuildState();
            readResourceBuildState();
        }
        Long buildTime = fullBuildData.get(moduleCoordinates);
        return buildTime == null ? 0 : buildTime;
    }

    Long getResourceBuildTime(String moduleCoordinates) {
        Long resourceBuildTime = fullResourceBuildData.get(moduleCoordinates);
        return resourceBuildTime == null ? 0 : resourceBuildTime;
    }

    boolean isCompileMust(String moduleCoordinates, Collection<String> dependencies) {
        return isMust(this::getBuildTime, moduleCoordinates, dependencies);
    }

    boolean isTestMust(String moduleCoordinates, Collection<String> dependencies) {
        return isMust(this::getResourceBuildTime, moduleCoordinates, dependencies);
    }

    private boolean isMust(Function<String, Long> funct, String moduleCoordinates, Collection<String> dependencies) {
        Long time = funct.apply(moduleCoordinates);
        if (time == null || time == 0) {
            return true;
        }
        for (String module : dependencies) {
            Long buildTime = funct.apply(module);
            if (buildTime >= time) {
                return true;
            }
        }
        return false;
    }

    void markModuleDirty(File file) throws IOException {
        if (file.exists()) {
            Stream<String> lines = Files.lines(file.toPath());
            Iterator<String> itr = lines.iterator();
            while (itr.hasNext()) {
                String line = itr.next();
                Path path = Paths.get(line);
                if (path.toFile().exists()) {
                    if (path.toFile().setLastModified(System.currentTimeMillis())) {
                        break;
                    } else {
                        continue;
                    }
                }
            }
        }
    }

}