]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Java/Source/MigrationTools/org/tianocore/migration/MigrationTool.java
Coding Style - decomment
[mirror_edk2.git] / Tools / Java / 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 import org.tianocore.UsageTypes;
21
22 public class MigrationTool {
23 public static UI ui = null;
24 public static Database db = null;
25
26 public static String MIGRATIONCOMMENT = "//@MT:";
27
28 public static boolean printModuleInfo = false;
29 public static boolean doCritic = false;
30 public static boolean defaultoutput = false;
31
32 public static final HashMap<ModuleInfo, String> ModuleInfoMap = new HashMap<ModuleInfo, String>();
33
34 private static String startpath = null;
35
36 private static final void mainFlow(ModuleInfo mi) throws Exception {
37 ModuleReader.aimAt(mi);
38 SourceFileReplacer.fireAt(mi); // some adding library actions are taken here,so it must be put before "MsaWriter"
39
40 // show result
41 if (MigrationTool.printModuleInfo) {
42 MigrationTool.ui.println("\nModule Information : ");
43 MigrationTool.ui.println("Entrypoint : " + mi.entrypoint);
44 show(mi.protocols, "Protocol : ");
45 show(mi.ppis, "Ppi : ");
46 show(mi.guids, "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 new MsaWriter(mi).flush();
55
56 //mi.getMsaOwner().flush(MigrationTool.ModuleInfoMap.get(mi) + File.separator + "Migration_" + mi.modulename + File.separator + mi.modulename + ".___");
57
58 if (MigrationTool.doCritic) {
59 Critic.fireAt(ModuleInfoMap.get(mi) + File.separator + "Migration_" + mi.modulename);
60 }
61
62 MigrationTool.ui.println("Errors Left : " + MigrationTool.db.error);
63 MigrationTool.ui.println("Complete!");
64 }
65
66 private static final void show(Set<String> hash, String show) {
67 MigrationTool.ui.println(show + hash.size());
68 MigrationTool.ui.println(hash);
69 }
70
71 public static final String getTempDir(String modulepath) {
72 return "C:" + File.separator + "MigrationTool_Temp" + modulepath.replace(startpath, "");
73 }
74
75 private static final String assignOutPutPath(String inputpath) {
76 if (MigrationTool.defaultoutput) {
77 return inputpath.replaceAll(Common.STRSEPARATER, "$1");
78 } else {
79 return MigrationTool.ui.getFilepath("Please choose where to place the output module", JFileChooser.DIRECTORIES_ONLY);
80 }
81 }
82
83 public static final void seekModule(String filepath) throws Exception {
84 if (ModuleInfo.isModule(filepath)) {
85 ModuleInfoMap.put(new ModuleInfo(filepath), assignOutPutPath(filepath));
86 }
87 }
88
89 public static final void startMigrateAll(String path) throws Exception {
90 startpath = path;
91 MigrationTool.ui.println("Project Migration");
92 MigrationTool.ui.println("Copyright (c) 2006, Intel Corporation");
93
94 if (new File("C:" + File.separator + "MigrationTool_Temp").exists()) {
95 Common.deleteDir("C:" + File.separator + "MigrationTool_Temp");
96 }
97
98 Common.toDoAll(path, MigrationTool.class.getMethod("seekModule", String.class), null, null, Common.DIR);
99
100 Iterator<ModuleInfo> miit = ModuleInfoMap.keySet().iterator();
101 while (miit.hasNext()) {
102 mainFlow(miit.next());
103 }
104
105 ModuleInfoMap.clear();
106
107 Common.deleteDir("C:" + File.separator + "MigrationTool_Temp");
108 }
109
110 public static void main(String[] args) throws Exception {
111 ui = FirstPanel.getInstance();
112 db = Database.getInstance();
113 }
114 }