summaryrefslogtreecommitdiff
path: root/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Identifications/OpeningModuleList.java
blob: c98d6f95b51d473cbe5078534a91465d31684c66 (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
/** @file
 
 The file is used to define opening module list
 
 Copyright (c) 2006, Intel Corporation
 All rights reserved. This program and the accompanying materials
 are licensed and made available under the terms and conditions of the BSD License
 which accompanies this distribution.  The full text of the license may be found at
 http://opensource.org/licenses/bsd-license.php
 
 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 
 **/
package org.tianocore.frameworkwizard.common.Identifications;

import java.util.Set;
import java.util.Vector;

import javax.swing.tree.TreePath;

import org.tianocore.ModuleSurfaceAreaDocument;
import org.tianocore.frameworkwizard.module.Identifications.ModuleIdentification;

public class OpeningModuleList {
    private Vector<OpeningModuleType> vOpeningModuleList = new Vector<OpeningModuleType>();

    public OpeningModuleList() {

    }

    public Vector<OpeningModuleType> getVOpeningModuleList() {
        return vOpeningModuleList;
    }

    public void setVOpeningModuleList(Vector<OpeningModuleType> openingModuleList) {
        vOpeningModuleList = openingModuleList;
    }

    public void insertToOpeningModuleList(ModuleIdentification id, ModuleSurfaceAreaDocument.ModuleSurfaceArea xmlMsa) {
        vOpeningModuleList.addElement(new OpeningModuleType(id, xmlMsa));
    }

    public OpeningModuleType getOpeningModuleByIndex(int index) {
        if (index > -1 && index < vOpeningModuleList.size()) {
            return vOpeningModuleList.elementAt(index);
        }
        return null;
    }

    public OpeningModuleType getOpeningModuleById(ModuleIdentification id) {
        int index = findIndexOfListById(id);
        if (index > -1) {
            return vOpeningModuleList.elementAt(index);
        }
        return null;
    }

    public int findIndexOfListById(ModuleIdentification id) {
        for (int index = 0; index < vOpeningModuleList.size(); index++) {
            if (vOpeningModuleList.elementAt(index).getId().equals(id)) {
                return index;
            }
        }
        return -1;
    }

    public void removeFromOpeningModuleListByIndex(int index) {
        if (index > -1 && index < vOpeningModuleList.size()) {
            vOpeningModuleList.removeElementAt(index);
        }
    }

    public void removeFromOpeningModuleListById(ModuleIdentification id) {
        int index = findIndexOfListById(id);
        if (index > -1) {
            vOpeningModuleList.removeElementAt(findIndexOfListById(id));
        }
    }

    public void removeAllFromOpeningModuleList() {
        vOpeningModuleList.removeAllElements();
    }

    public ModuleSurfaceAreaDocument.ModuleSurfaceArea getModuleSurfaceAreaFromId(ModuleIdentification id) {
        int index = findIndexOfListById(id);
        if (index > -1) {
            return vOpeningModuleList.elementAt(index).getXmlMsa();
        }
        return null;
    }

    public boolean existsModule(ModuleIdentification id) {
        int index = findIndexOfListById(id);
        if (index > -1) {
            return true;
        }
        return false;
    }

    public void setModuleSaved(ModuleIdentification id, boolean isSaved) {
        setModuleSaved(findIndexOfListById(id), isSaved);
    }

    public void setModuleSaved(int index, boolean isSaved) {
        if (index > -1) {
            vOpeningModuleList.elementAt(index).setSaved(isSaved);
        }
    }

    public boolean getModuleSaved(ModuleIdentification id) {
        return getModuleSaved(findIndexOfListById(id));
    }

    public boolean getModuleSaved(int index) {
        if (index > -1) {
            return vOpeningModuleList.elementAt(index).isSaved();
        }
        return true;
    }

    public void setModuleOpen(ModuleIdentification id, boolean isOpen) {
        setModuleOpen(findIndexOfListById(id), isOpen);
    }

    public void setModuleOpen(int index, boolean isOpen) {
        if (index > -1) {
            vOpeningModuleList.elementAt(index).setOpen(isOpen);
        }
    }

    public boolean getModuleOpen(ModuleIdentification id) {
        return getModuleOpen(findIndexOfListById(id));
    }

    public boolean getModuleOpen(int index) {
        if (index > -1) {
            return vOpeningModuleList.elementAt(index).isOpen();
        }
        return false;
    }

    public void setTreePathById(ModuleIdentification id, Set<TreePath> treePath) {
        int index = findIndexOfListById(id);
        if (index > -1) {
            vOpeningModuleList.elementAt(index).setTreePath(treePath);
        }
    }

    public Set<TreePath> getTreePathById(ModuleIdentification id) {
        int index = findIndexOfListById(id);
        if (index > -1) {
            return vOpeningModuleList.elementAt(index).getTreePath();
        }
        return null;
    }

    public Set<TreePath> getTreePathByIndex(int index) {
        if (index > -1) {
            return vOpeningModuleList.elementAt(index).getTreePath();
        }
        return null;
    }

    public ModuleIdentification getIdByPath(String path) {
        ModuleIdentification id = new ModuleIdentification(null, null, null, path);
        int index = findIndexOfListById(id);
        if (index > -1) {
            return vOpeningModuleList.elementAt(index).getId();
        }
        return null;
    }

    public ModuleIdentification getIdByGuidVersion(String guid, String version) {
        for (int index = 0; index < vOpeningModuleList.size(); index++) {
            ModuleIdentification id = vOpeningModuleList.elementAt(index).getId();
            if (version != null) {
                if (id.getGuid().equals(guid) && id.getVersion().equals(version)) {
                    return id;
                }
            } else {
                if (id.getGuid().equals(guid)) {
                    return id;
                }
            }
        }
        return null;
    }

    public void setNew(ModuleIdentification id, boolean isNew) {
        int index = findIndexOfListById(id);
        if (index > -1) {
            vOpeningModuleList.elementAt(index).setNew(isNew);
        }
    }

    public void closeAll() {
        for (int index = 0; index < this.size(); index++) {
            this.setModuleOpen(index, false);
            this.setModuleSaved(index, true);
        }
    }

    public int size() {
        return vOpeningModuleList.size();
    }

    public boolean isSaved() {
        for (int index = 0; index < this.size(); index++) {
            if (!this.getModuleSaved(index)) {
                return false;
            }
        }
        return true;
    }

    public boolean isOpen() {
        for (int index = 0; index < this.size(); index++) {
            if (this.getModuleOpen(index)) {
                return true;
            }
        }
        return false;
    }
    
    public void reload(int index) {
        if (index > -1) {
            vOpeningModuleList.elementAt(index).reload();
        }
    }
}