]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFrameworkModules.java
update ModuleSA PCD editor.
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / platform / ui / FpdFrameworkModules.java
1 package org.tianocore.frameworkwizard.platform.ui;
2
3 import java.awt.BorderLayout;
4
5 import javax.swing.JFrame;
6 import javax.swing.JOptionPane;
7 import javax.swing.JPanel;
8 import javax.swing.JSplitPane;
9 import javax.swing.JLabel;
10 import javax.swing.JScrollPane;
11 import javax.swing.JTable;
12 import javax.swing.JButton;
13 import javax.swing.ListSelectionModel;
14 import javax.swing.table.DefaultTableModel;
15
16 import org.tianocore.PlatformSurfaceAreaDocument;
17 import org.tianocore.frameworkwizard.common.Identifications.OpeningPlatformType;
18 import org.tianocore.frameworkwizard.common.ui.IInternalFrame;
19 import org.tianocore.frameworkwizard.platform.ui.global.GlobalData;
20 import org.tianocore.frameworkwizard.platform.ui.id.ModuleIdentification;
21 import org.tianocore.frameworkwizard.platform.ui.id.PackageIdentification;
22
23 import java.awt.FlowLayout;
24 import java.io.File;
25 import java.util.ArrayList;
26 import java.util.HashMap;
27 import java.util.Iterator;
28 import java.util.Map;
29 import java.util.Set;
30
31 public class FpdFrameworkModules extends IInternalFrame {
32
33 /**
34 *
35 */
36 private static final long serialVersionUID = 1L;
37 static JFrame frame;
38 private JSplitPane jSplitPane = null;
39 private JPanel jPanel = null;
40 private JPanel jPanel1 = null;
41 private JLabel jLabel = null;
42 private JScrollPane jScrollPane = null;
43 private JTable jTable = null;
44 private JPanel jPanel2 = null;
45 private JButton jButton = null;
46 private JLabel jLabel1 = null;
47 private JPanel jPanel3 = null;
48 private JScrollPane jScrollPane1 = null;
49 private JTable jTable1 = null;
50 private JButton jButton1 = null;
51 private JButton jButton2 = null;
52 private NonEditableTableModel model = null;
53 private NonEditableTableModel model1 = null;
54
55 private FpdModuleSA settingDlg = null;
56
57 private FpdFileContents ffc = null;
58 private OpeningPlatformType docConsole = null;
59 private Map<String, String> fpdMsa = null;
60
61 private ArrayList<ModuleIdentification> miList = null;
62
63 /**
64 * This method initializes jSplitPane
65 *
66 * @return javax.swing.JSplitPane
67 */
68 private JSplitPane getJSplitPane() {
69 if (jSplitPane == null) {
70 jSplitPane = new JSplitPane();
71 jSplitPane.setOrientation(javax.swing.JSplitPane.VERTICAL_SPLIT);
72 jSplitPane.setDividerLocation(250);
73 jSplitPane.setBottomComponent(getJPanel1());
74 jSplitPane.setTopComponent(getJPanel());
75 }
76 return jSplitPane;
77 }
78
79 /**
80 * This method initializes jPanel
81 *
82 * @return javax.swing.JPanel
83 */
84 private JPanel getJPanel() {
85 if (jPanel == null) {
86 jLabel = new JLabel();
87 jLabel.setText("Modules in Workspace");
88 jPanel = new JPanel();
89 jPanel.setLayout(new BorderLayout());
90 jPanel.add(jLabel, java.awt.BorderLayout.NORTH);
91 jPanel.add(getJScrollPane(), java.awt.BorderLayout.CENTER);
92 jPanel.add(getJPanel2(), java.awt.BorderLayout.SOUTH);
93 }
94 return jPanel;
95 }
96
97 /**
98 * This method initializes jPanel1
99 *
100 * @return javax.swing.JPanel
101 */
102 private JPanel getJPanel1() {
103 if (jPanel1 == null) {
104 jLabel1 = new JLabel();
105 jLabel1.setText("Modules Added");
106 jPanel1 = new JPanel();
107 jPanel1.setLayout(new BorderLayout());
108 jPanel1.add(jLabel1, java.awt.BorderLayout.NORTH);
109 jPanel1.add(getJPanel3(), java.awt.BorderLayout.SOUTH);
110 jPanel1.add(getJScrollPane1(), java.awt.BorderLayout.CENTER);
111 }
112 return jPanel1;
113 }
114
115 /**
116 * This method initializes jScrollPane
117 *
118 * @return javax.swing.JScrollPane
119 */
120 private JScrollPane getJScrollPane() {
121 if (jScrollPane == null) {
122 jScrollPane = new JScrollPane();
123 jScrollPane.setPreferredSize(new java.awt.Dimension(600,200));
124 jScrollPane.setViewportView(getJTable());
125 }
126 return jScrollPane;
127 }
128
129 /**
130 * This method initializes jTable
131 *
132 * @return javax.swing.JTable
133 */
134 private JTable getJTable() {
135 if (jTable == null) {
136 model = new NonEditableTableModel();
137 jTable = new JTable(model);
138 jTable.setRowHeight(20);
139 model.addColumn("ModuleName");
140 model.addColumn("ModuleGUID");
141 model.addColumn("ModuleVersion");
142 model.addColumn("PackageGUID");
143 model.addColumn("PackageVersion");
144
145 jTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
146 }
147 return jTable;
148 }
149
150 /**
151 * This method initializes jPanel2
152 *
153 * @return javax.swing.JPanel
154 */
155 private JPanel getJPanel2() {
156 if (jPanel2 == null) {
157 FlowLayout flowLayout = new FlowLayout();
158 flowLayout.setAlignment(java.awt.FlowLayout.RIGHT);
159 jPanel2 = new JPanel();
160 jPanel2.setLayout(flowLayout);
161 jPanel2.add(getJButton(), null);
162 }
163 return jPanel2;
164 }
165
166 /**
167 * This method initializes jButton
168 *
169 * @return javax.swing.JButton
170 */
171 private JButton getJButton() {
172 if (jButton == null) {
173 jButton = new JButton();
174 jButton.setPreferredSize(new java.awt.Dimension(130,20));
175 jButton.setText("Add a Module");
176 jButton.addActionListener(new java.awt.event.ActionListener() {
177 public void actionPerformed(java.awt.event.ActionEvent e) {
178 int selectedRow = jTable.getSelectedRow();
179 if (selectedRow < 0){
180 return;
181 }
182
183 String mg = (String)model.getValueAt(selectedRow, 1);
184 String mv = (String)model.getValueAt(selectedRow, 2);
185 String pg = (String)model.getValueAt(selectedRow, 3);
186 String pv = (String)model.getValueAt(selectedRow, 4);
187 if (fpdMsa.containsKey(mg + mv + pg + pv)) {
188 JOptionPane.showMessageDialog(frame, "This Module Already Added.");
189 return;
190 }
191 //ToDo put Arch instead of null
192 fpdMsa.put(mg + mv + pg + pv, null);
193
194 String[] row = {" ", mg, mv, pg, pv};
195 ModuleIdentification mi = getModuleId(mg + " " + mv + " " + pg + " " + pv);
196 if (mi != null) {
197 row[0] = mi.getName();
198 row[2] = mi.getVersion();
199 row[4] = mi.getPackage().getVersion();
200 }
201 model1.addRow(row);
202 docConsole.setSaved(false);
203 try{
204 ffc.addFrameworkModulesPcdBuildDefs(miList.get(selectedRow), null);
205 }
206 catch (Exception exception) {
207 JOptionPane.showMessageDialog(frame, "PCD Insertion Fail. " + exception.getMessage());
208 }
209 }
210 });
211 }
212 return jButton;
213 }
214
215 /**
216 * This method initializes jPanel3
217 *
218 * @return javax.swing.JPanel
219 */
220 private JPanel getJPanel3() {
221 if (jPanel3 == null) {
222 FlowLayout flowLayout1 = new FlowLayout();
223 flowLayout1.setAlignment(java.awt.FlowLayout.RIGHT);
224 jPanel3 = new JPanel();
225 jPanel3.setLayout(flowLayout1);
226 jPanel3.add(getJButton1(), null);
227 jPanel3.add(getJButton2(), null);
228 }
229 return jPanel3;
230 }
231
232 /**
233 * This method initializes jScrollPane1
234 *
235 * @return javax.swing.JScrollPane
236 */
237 private JScrollPane getJScrollPane1() {
238 if (jScrollPane1 == null) {
239 jScrollPane1 = new JScrollPane();
240 jScrollPane1.setPreferredSize(new java.awt.Dimension(453,200));
241 jScrollPane1.setViewportView(getJTable1());
242 }
243 return jScrollPane1;
244 }
245
246 /**
247 * This method initializes jTable1
248 *
249 * @return javax.swing.JTable
250 */
251 private JTable getJTable1() {
252 if (jTable1 == null) {
253 model1 = new NonEditableTableModel();
254 jTable1 = new JTable(model1);
255 jTable1.setRowHeight(20);
256 model1.addColumn("ModuleName");
257 model1.addColumn("ModuleGUID");
258 model1.addColumn("ModuleVersion");
259 model1.addColumn("PackageGUID");
260 model1.addColumn("PackageVersion");
261 // model1.addColumn("SupportedArch");
262
263 jTable1.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
264 }
265 return jTable1;
266 }
267
268 /**
269 * This method initializes jButton1
270 *
271 * @return javax.swing.JButton
272 */
273 private JButton getJButton1() {
274 if (jButton1 == null) {
275 jButton1 = new JButton();
276 jButton1.setPreferredSize(new java.awt.Dimension(130,20));
277 jButton1.setText("Settings");
278 jButton1.addActionListener(new java.awt.event.ActionListener() {
279 public void actionPerformed(java.awt.event.ActionEvent e) {
280 int selectedRow = jTable1.getSelectedRow();
281 if (selectedRow < 0){
282 return;
283 }
284 if (settingDlg == null) {
285 settingDlg = new FpdModuleSA(ffc);
286 }
287 docConsole.setSaved(false);
288 String mg = model1.getValueAt(selectedRow, 1)+"";
289 String mv = model1.getValueAt(selectedRow, 2)+"";
290 String pg = model1.getValueAt(selectedRow, 3)+"";
291 String pv = model1.getValueAt(selectedRow, 4)+"";
292 settingDlg.setKey(mg + " " + mv + " " + pg + " " + pv);
293 settingDlg.setVisible(true);
294 }
295 });
296 }
297 return jButton1;
298 }
299
300 /**
301 * This method initializes jButton2
302 *
303 * @return javax.swing.JButton
304 */
305 private JButton getJButton2() {
306 if (jButton2 == null) {
307 jButton2 = new JButton();
308 jButton2.setPreferredSize(new java.awt.Dimension(130,20));
309 jButton2.setText("Remove Module");
310 jButton2.addActionListener(new java.awt.event.ActionListener() {
311 public void actionPerformed(java.awt.event.ActionEvent e) {
312 int selectedRow = jTable1.getSelectedRow();
313 if (selectedRow < 0){
314 return;
315 }
316 String mg = model1.getValueAt(selectedRow, 1).toString();
317 String mv = model1.getValueAt(selectedRow, 2).toString();
318 String pg = model1.getValueAt(selectedRow, 3).toString();
319 String pv = model1.getValueAt(selectedRow, 4).toString();
320 model1.removeRow(selectedRow);
321 fpdMsa.remove(mg+mv+pg+pv);
322 docConsole.setSaved(false);
323 ffc.removeModuleSA(selectedRow);
324 }
325 });
326 }
327 return jButton2;
328 }
329
330 /**
331 * @param args
332 */
333 public static void main(String[] args) {
334 // TODO Auto-generated method stub
335 new FpdFrameworkModules().setVisible(true);
336 }
337
338 /**
339 * This is the default constructor
340 */
341 public FpdFrameworkModules() {
342 super();
343 initialize();
344 }
345
346 public FpdFrameworkModules(PlatformSurfaceAreaDocument.PlatformSurfaceArea fpd){
347 this();
348 init(fpd);
349
350 }
351
352 public FpdFrameworkModules(OpeningPlatformType opt) {
353 this(opt.getXmlFpd());
354 docConsole = opt;
355 }
356
357 private void init(PlatformSurfaceAreaDocument.PlatformSurfaceArea fpd) {
358 try {
359 GlobalData.initInfo("Tools" + File.separator + "Conf" + File.separator + "FrameworkDatabase.db", System.getenv("WORKSPACE"));
360 }
361 catch(Exception e){
362 JOptionPane.showMessageDialog(frame, "FrameworkDatabase Corrupted.");
363 }
364
365 if (ffc == null){
366 ffc = new FpdFileContents(fpd);
367 ffc.initDynPcdMap();
368 }
369
370 if (fpdMsa == null) {
371 fpdMsa = new HashMap<String, String>();
372 }
373
374 if (ffc.getFrameworkModulesCount() > 0) {
375 String[][] saa = new String[ffc.getFrameworkModulesCount()][5];
376 ffc.getFrameworkModulesInfo(saa);
377 for (int i = 0; i < saa.length; ++i) {
378 ModuleIdentification mi = getModuleId(saa[i][1]+ " "+saa[i][2]+" "+saa[i][3]+" "+saa[i][4]);
379 if (mi != null) {
380 saa[i][0] = mi.getName();
381 saa[i][2] = mi.getVersion();
382 saa[i][4] = mi.getPackage().getVersion();
383 }
384 model1.addRow(saa[i]);
385 fpdMsa.put(saa[i][1]+saa[i][2]+saa[i][3]+saa[i][4], saa[i][0]);
386 }
387 }
388
389 showAllModules();
390
391 }
392
393 private void showAllModules() {
394
395 if (miList == null) {
396 miList = new ArrayList<ModuleIdentification>();
397 }
398 Set<PackageIdentification> spi = GlobalData.getPackageList();
399 Iterator ispi = spi.iterator();
400
401 while(ispi.hasNext()) {
402 PackageIdentification pi = (PackageIdentification)ispi.next();
403 String[] s = {"", "", "", "", ""};
404 s[3] = pi.getGuid();
405 s[4] = pi.getVersion();
406 Set<ModuleIdentification> smi = GlobalData.getModules(pi);
407 Iterator ismi = smi.iterator();
408 while(ismi.hasNext()) {
409 ModuleIdentification mi = (ModuleIdentification)ismi.next();
410 s[0] = mi.getName();
411 s[1] = mi.getGuid();
412 s[2] = mi.getVersion();
413 model.addRow(s);
414 miList.add(mi);
415 }
416 }
417 }
418 /**
419 * This method initializes this
420 *
421 * @return void
422 */
423 private void initialize() {
424 this.setSize(633, 533);
425 this.setTitle("Framework Modules");
426 this.setContentPane(getJSplitPane());
427 this.setVisible(true);
428
429 }
430
431 private ModuleIdentification getModuleId(String key){
432 //
433 // Get ModuleGuid, ModuleVersion, PackageGuid, PackageVersion into string array.
434 //
435 String[] keyPart = key.split(" ");
436 Set<PackageIdentification> spi = GlobalData.getPackageList();
437 Iterator ispi = spi.iterator();
438
439 while(ispi.hasNext()) {
440 PackageIdentification pi = (PackageIdentification)ispi.next();
441 if ( !pi.getGuid().equals(keyPart[2])){
442 // || !pi.getVersion().equals(keyPart[3])){
443 continue;
444 }
445 Set<ModuleIdentification> smi = GlobalData.getModules(pi);
446 Iterator ismi = smi.iterator();
447 while(ismi.hasNext()) {
448 ModuleIdentification mi = (ModuleIdentification)ismi.next();
449 if (mi.getGuid().equals(keyPart[0])){
450 // && mi.getVersion().equals(keyPart[1])){
451
452 return mi;
453 }
454 }
455 }
456 return null;
457 }
458
459 } // @jve:decl-index=0:visual-constraint="10,10"
460
461 class NonEditableTableModel extends DefaultTableModel {
462 /**
463 *
464 */
465 private static final long serialVersionUID = 1L;
466
467 public boolean isCellEditable(int row, int col) {
468 return false;
469 }
470 }