]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Java/Source/MigrationTools/org/tianocore/migration/MigrationTool.java
Restructuring for better separation of Tool packages.
[mirror_edk2.git] / Tools / Java / Source / MigrationTools / org / tianocore / migration / MigrationTool.java
diff --git a/Tools/Java/Source/MigrationTools/org/tianocore/migration/MigrationTool.java b/Tools/Java/Source/MigrationTools/org/tianocore/migration/MigrationTool.java
new file mode 100644 (file)
index 0000000..4e6b30c
--- /dev/null
@@ -0,0 +1,121 @@
+/** @file\r
\r
+ Copyright (c) 2006, Intel Corporation\r
+ All rights reserved. This program and the accompanying materials\r
+ are licensed and made available under the terms and conditions of the BSD License\r
+ which accompanies this distribution.  The full text of the license may be found at\r
+ http://opensource.org/licenses/bsd-license.php\r
\r
+ THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
\r
+ **/\r
+package org.tianocore.migration;\r
+\r
+import java.io.File;\r
+import java.util.*;\r
+\r
+import javax.swing.JFileChooser;\r
+\r
+import org.tianocore.UsageTypes;\r
+\r
+public class MigrationTool {\r
+    public static UI ui = null;\r
+    public static Database db = null;\r
+\r
+    public static String MIGRATIONCOMMENT = "//@MT:";\r
+\r
+    public static boolean printModuleInfo = false;\r
+    public static boolean doCritic = false;\r
+    public static boolean defaultoutput = false;\r
+    \r
+    public static final HashMap<ModuleInfo, String> ModuleInfoMap = new HashMap<ModuleInfo, String>();\r
+\r
+    private static String startpath = null;\r
+    \r
+    private static final void mainFlow(ModuleInfo mi) throws Exception {\r
+        ModuleReader.aimAt(mi);\r
+        SourceFileReplacer.fireAt(mi);    // some adding library actions are taken here,so it must be put before "MsaWriter"\r
+\r
+        // show result\r
+        if (MigrationTool.printModuleInfo) {\r
+            MigrationTool.ui.println("\nModule Information : ");\r
+            MigrationTool.ui.println("Entrypoint : " + mi.entrypoint);\r
+            show(mi.protocols, "Protocol : ");\r
+            show(mi.ppis, "Ppi : ");\r
+            show(mi.guids, "Guid : ");\r
+            show(mi.hashfuncc, "call : ");\r
+            show(mi.hashfuncd, "def : ");\r
+            show(mi.hashEFIcall, "EFIcall : ");\r
+            show(mi.hashnonlocalmacro, "macro : ");\r
+            show(mi.hashnonlocalfunc, "nonlocal : ");\r
+            show(mi.hashr8only, "hashr8only : ");\r
+        }\r
+\r
+        new MsaWriter(mi).flush();\r
+\r
+        mi.addProtocol("protocol", UsageTypes.ALWAYS_CONSUMED);\r
+        mi.addGuid("guid", UsageTypes.ALWAYS_CONSUMED);\r
+        mi.addLibraryClass("class", UsageTypes.ALWAYS_CONSUMED);\r
+        mi.addPpi("ppi", UsageTypes.ALWAYS_CONSUMED);\r
+        mi.getMsaOwner().flush(MigrationTool.ModuleInfoMap.get(mi) + File.separator + "Migration_" + mi.modulename + File.separator + mi.modulename + ".___");\r
+        \r
+        if (MigrationTool.doCritic) {\r
+            Critic.fireAt(ModuleInfoMap.get(mi) + File.separator + "Migration_" + mi.modulename);\r
+        }\r
+\r
+        MigrationTool.ui.println("Errors Left : " + MigrationTool.db.error);\r
+        MigrationTool.ui.println("Complete!");\r
+        //MigrationTool.ui.println("Your R9 module was placed here: " + mi.modulepath + File.separator + "result");\r
+        //MigrationTool.ui.println("Your logfile was placed here: " + mi.modulepath);\r
+    }\r
+\r
+    private static final void show(Set<String> hash, String show) {\r
+        MigrationTool.ui.println(show + hash.size());\r
+        MigrationTool.ui.println(hash);\r
+    }\r
+\r
+    public static final String getTempDir(String modulepath) {\r
+        return "C:" + File.separator + "MigrationTool_Temp" + modulepath.replace(startpath, "");\r
+    }\r
+\r
+    private static final String assignOutPutPath(String inputpath) {\r
+        if (MigrationTool.defaultoutput) {\r
+            return inputpath.replaceAll(Common.STRSEPARATER, "$1");\r
+        } else {\r
+            return MigrationTool.ui.getFilepath("Please choose where to place the output module", JFileChooser.DIRECTORIES_ONLY);\r
+        }\r
+    }\r
+    \r
+    public static final void seekModule(String filepath) throws Exception {\r
+        if (ModuleInfo.isModule(filepath)) {\r
+            ModuleInfoMap.put(new ModuleInfo(filepath), assignOutPutPath(filepath));\r
+        }\r
+    }\r
+\r
+    public static final void startMigrateAll(String path) throws Exception {\r
+        startpath = path;\r
+        MigrationTool.ui.println("Project Migration");\r
+        MigrationTool.ui.println("Copyright (c) 2006, Intel Corporation");\r
+        \r
+        if (new File("C:" + File.separator + "MigrationTool_Temp").exists()) {\r
+            Common.deleteDir("C:" + File.separator + "MigrationTool_Temp");\r
+        }\r
+        \r
+        Common.toDoAll(path, MigrationTool.class.getMethod("seekModule", String.class), null, null, Common.DIR);\r
+        \r
+        Iterator<ModuleInfo> miit = ModuleInfoMap.keySet().iterator();\r
+        while (miit.hasNext()) {\r
+            mainFlow(miit.next());\r
+        }\r
+        \r
+        ModuleInfoMap.clear();\r
+        \r
+        Common.deleteDir("C:" + File.separator + "MigrationTool_Temp");\r
+    }\r
+\r
+    public static void main(String[] args) throws Exception {\r
+        ui = FirstPanel.getInstance();\r
+        db = Database.getInstance();\r
+    }\r
+}\r