]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/MigrationTools/org/tianocore/migration/MigrationTool.java
cbb49a13daa06953406b0afaef9c8f37cf6918bd
[mirror_edk2.git] / Tools / Source / MigrationTools / org / tianocore / migration / MigrationTool.java
1 /** @file
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 **/
13 package org.tianocore.migration;
14
15 import java.io.File;
16 import java.util.*;
17
18 import javax.swing.JFileChooser;
19
20 public class MigrationTool {
21 public static UI ui = null;
22 public static Database db = null;
23
24 public static String MIGRATIONCOMMENT = "//%$//";
25
26 public static boolean printModuleInfo = false;
27 public static boolean doCritic = false;
28 public static boolean defaultoutput = false;
29
30 public static final HashMap<ModuleInfo, String> ModuleInfoMap = new HashMap<ModuleInfo, String>();
31
32 private static final void mainFlow(ModuleInfo mi) throws Exception {
33
34 ModuleReader.ModuleScan(mi);
35
36 //MigrationTool.ui.yesOrNo("go on replace?");
37 SourceFileReplacer.flush(mi); // some adding library actions are taken here,so it must be put before "MsaWriter"
38
39 //MigrationTool.ui.yesOrNo("go on show?");
40 // show result
41 if (MigrationTool.printModuleInfo) {
42 MigrationTool.ui.println("\nModule Information : ");
43 MigrationTool.ui.println("Entrypoint : " + mi.entrypoint);
44 show(mi.protocol, "Protocol : ");
45 show(mi.ppi, "Ppi : ");
46 show(mi.guid, "Guid : ");
47 show(mi.hashfuncc, "call : ");
48 show(mi.hashfuncd, "def : ");
49 show(mi.hashEFIcall, "EFIcall : ");
50 show(mi.hashnonlocalmacro, "macro : ");
51 show(mi.hashnonlocalfunc, "nonlocal : ");
52 show(mi.hashr8only, "hashr8only : ");
53 }
54
55 //MigrationTool.ui.yesOrNo("go on msawrite?");
56 new MsaWriter(mi).flush();
57 //MigrationTool.ui.yesOrNo("go on critic?");
58
59 if (MigrationTool.doCritic) {
60 Critic.fireAt(ModuleInfoMap.get(mi) + File.separator + "Migration_" + mi.modulename);
61 }
62
63 //MigrationTool.ui.yesOrNo("go on delete?");
64 Common.deleteDir(mi.modulepath + File.separator + "temp");
65
66 MigrationTool.ui.println("Errors Left : " + MigrationTool.db.error);
67 MigrationTool.ui.println("Complete!");
68 //MigrationTool.ui.println("Your R9 module was placed here: " + mi.modulepath + File.separator + "result");
69 //MigrationTool.ui.println("Your logfile was placed here: " + mi.modulepath);
70 }
71
72 private static final void show(Set<String> hash, String show) {
73 MigrationTool.ui.println(show + hash.size());
74 MigrationTool.ui.println(hash);
75 }
76
77 private static final String assignOutPutPath(String inputpath) {
78 if (MigrationTool.defaultoutput) {
79 return inputpath.replaceAll(Common.strseparate, "$1");
80 } else {
81 return MigrationTool.ui.getFilepath("Please choose where to place the output module", JFileChooser.DIRECTORIES_ONLY);
82 }
83 }
84
85 public static final void seekModule(String filepath) throws Exception {
86 if (ModuleInfo.isModule(filepath)) {
87 ModuleInfoMap.put(new ModuleInfo(filepath), assignOutPutPath(filepath));
88 }
89 }
90
91 public static final void startMigrateAll(String path) throws Exception {
92 MigrationTool.ui.println("Project Migration");
93 MigrationTool.ui.println("Copyright (c) 2006, Intel Corporation");
94 Common.toDoAll(path, MigrationTool.class.getMethod("seekModule", String.class), null, null, Common.DIR);
95
96 Iterator<ModuleInfo> miit = ModuleInfoMap.keySet().iterator();
97 while (miit.hasNext()) {
98 mainFlow(miit.next());
99 }
100
101 ModuleInfoMap.clear();
102 }
103
104 public static void main(String[] args) throws Exception {
105 ui = FirstPanel.getInstance();
106 db = Database.getInstance();
107 }
108 }