]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/MigrationTools/org/tianocore/migration/MigrationTool.java
1. Fix EDKT214 "Framework Wizard is not synchronized with FrameworkDatabase.db when...
[mirror_edk2.git] / Tools / Source / MigrationTools / org / tianocore / migration / MigrationTool.java
index d6119e6e45eee3634e03600dd77ee5614bb171b4..3b3486fea6674f6cab546e735f306118750f4c0b 100644 (file)
@@ -1,23 +1,94 @@
-/** @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
 public class MigrationTool {\r
        public static UI ui = null;\r
        public static Database db = null;\r
+\r
+       public static String MIGRATIONCOMMENT = "//%$//";\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 final void mainFlow(ModuleInfo mi) throws Exception {\r
+\r
+               ModuleReader.ModuleScan(mi);\r
+               \r
+               //MigrationTool.ui.yesOrNo("go on replace?");\r
+               SourceFileReplacer.flush(mi);   // some adding library actions are taken here,so it must be put before "MsaWriter"\r
+\r
+               //MigrationTool.ui.yesOrNo("go on show?");\r
+               // show result\r
+               if (MigrationTool.printModuleInfo) {\r
+                       MigrationTool.ui.println("\nModule Information : ");\r
+                       MigrationTool.ui.println("Entrypoint : " + mi.entrypoint);\r
+                       show(mi.protocol, "Protocol : ");\r
+                       show(mi.ppi, "Ppi : ");\r
+                       show(mi.guid, "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
+               //MigrationTool.ui.yesOrNo("go on msawrite?");\r
+               new MsaWriter(mi).flush();\r
+               //MigrationTool.ui.yesOrNo("go on critic?");\r
+\r
+               if (MigrationTool.doCritic) {\r
+                       Critic.fireAt(ModuleInfoMap.get(mi) + File.separator + "Migration_" + mi.modulename);\r
+               }\r
+\r
+               //MigrationTool.ui.yesOrNo("go on delete?");\r
+               Common.deleteDir(mi.modulepath + File.separator + "temp");\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
+       private static final String assignOutPutPath(String inputpath) {\r
+               if (MigrationTool.defaultoutput) {\r
+                       return inputpath.replaceAll(Common.strseparate, "$1");\r
+               } else {\r
+                       return MigrationTool.ui.getFilepath("Please choose where to place the output module");\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
+               MigrationTool.ui.println("Project Migration");\r
+               MigrationTool.ui.println("Copyright (c) 2006, Intel Corporation");\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
+\r
        public static void main(String[] args) throws Exception {\r
-               ui = FirstPanel.init();\r
-               db = Database.init();\r
+               ui = FirstPanel.getInstance();\r
+               db = Database.getInstance();\r
        }\r
 }\r