3d652607ced54487fd01555f6c9c9a17406a0bf1
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.vendorsoftwareproduct.types.candidateheat;
22
23 import org.apache.commons.collections4.CollectionUtils;
24
25 import java.util.Collection;
26 import java.util.HashSet;
27 import java.util.Set;
28
29 /**
30  * @author Avrahamg
31  * @since December 25, 2016
32  */
33 public class AnalyzedZipHeatFiles {
34   private Set<String> nestedFiles = new HashSet<>();
35   private Set<String> otherNonModuleFiles = new HashSet<>();
36   private Set<String> moduleFiles = new HashSet<>();
37
38   public void addNestedFile(String fileName)
39   {
40     nestedFiles.add(fileName);
41     moduleFiles.remove(fileName);
42   }
43
44   public void addNestedFiles(Collection<String> fileNames)
45   {
46     nestedFiles.addAll(fileNames);
47     moduleFiles.removeAll(fileNames);
48   }
49
50   public void addOtherNonModuleFile(String fileName)
51   {
52     otherNonModuleFiles.add(fileName);
53     moduleFiles.remove(fileName);
54   }
55
56   public void addOtherNonModuleFiles(Collection<String> fileNames)
57   {
58     otherNonModuleFiles.addAll(fileNames);
59     moduleFiles.removeAll(fileNames);
60   }
61
62   public void addModuleFile(String fileName)
63   {
64     moduleFiles.add(fileName);
65   }
66
67   public Collection<String> getFilesNotEligbleForModules()
68   {
69     return CollectionUtils.union(this.getNestedFiles(), this.getOtherNonModuleFiles());
70   }
71
72   public Set<String> getNestedFiles() {
73     return nestedFiles;
74   }
75
76   public Set<String> getOtherNonModuleFiles() {
77     return otherNonModuleFiles;
78   }
79
80   public Set<String> getModuleFiles() {
81     return moduleFiles;
82   }
83 }