]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java
Add MigrationTool.java
[mirror_edk2.git] / Tools / Source / MigrationTools / org / tianocore / migration / ModuleInfo.java
index 220b3e8d4064485e8e3302c74a914c4b21db565d..2f3af0309e9c16b8fda479de182c0eab1d5bfec2 100644 (file)
@@ -21,16 +21,24 @@ import java.util.regex.*;
 information and all the temporary data.\r
 */\r
 public class ModuleInfo {\r
-       ModuleInfo(String modulepath, UI ui, Database db) throws Exception {\r
+       ModuleInfo(String modulepath) throws Exception {\r
                this.modulepath = modulepath;\r
-               this.ui = ui;\r
-               this.db = db;\r
+               \r
+               ui.println("Choose where to place the result");\r
+               if ((outputpath = ui.getFilepath()) == null) {\r
+                       outputpath = modulepath; \r
+               }\r
+               ui.println(outputpath);\r
+               \r
                moduleScan();\r
        }\r
+\r
+       public static UI ui = null;                             //if MIM is still usefull, this can be given to it\r
+       public static Database db = null;                       //if MIM is still usefull, this can be given to it\r
+       \r
+       public String modulepath = null;\r
        \r
-       private String modulepath = null;\r
-       private Database db = null;\r
-       private UI ui = null;\r
+       public String outputpath = null;\r
        \r
        public String modulename = null;\r
        public String guidvalue = null;\r
@@ -55,48 +63,27 @@ public class ModuleInfo {
        \r
        private static String migrationcomment = "//%$//";\r
        \r
-       private void dirScan(String subpath) throws Exception {\r
-               String[] list = new File(modulepath + File.separator + subpath).list();                 // if no sub , separator need?\r
-               File test;\r
-               \r
-               for (int i = 0 ; i < list.length ; i++) {\r
-                       test = new File(modulepath + File.separator + subpath + list[i]);\r
-                       if (test.isDirectory()) {\r
-                               if (list[i].contains("result") || list[i].contains("temp")) {\r
-                               } else {\r
-                                       dirScan(subpath + list[i] + File.separator);\r
-                               }\r
-                       } else {\r
-                               if (list[i].contains(".c") || list[i].contains(".C") || list[i].contains(".h") || \r
-                                       list[i].contains(".H") || list[i].contains(".dxs") || list[i].contains(".uni")) {\r
-                                       localmodulesources.add(subpath + list[i]);\r
-                               } else if (list[i].contains(".inf") || list[i].contains(".msa")) {\r
-                                       msaorinf.add(subpath + list[i]);\r
-                               }\r
-                       }\r
-               }\r
-       }\r
-       \r
        private void moduleScan() throws Exception {\r
-               dirScan("");\r
+               Common.toDoAll(modulepath, ModuleInfo.class.getMethod("enroll", String.class), this, null, Common.FILE);\r
+               \r
                String filename = null;\r
                if (msaorinf.isEmpty()) {\r
                        ui.println("No INF nor MSA file found!");\r
                        System.exit(0);\r
                } else {\r
-                       filename = ui.choose("Found .inf or .msa file in the module\nChoose one Please", msaorinf.toArray());\r
+                       filename = ui.choose("Found .inf or .msa file for module\n" + modulepath + "\nChoose one Please", msaorinf.toArray());\r
                }\r
-               ModuleReader mr = new ModuleReader(modulepath, this, db);\r
+               //ModuleReader mr = new ModuleReader(modulepath, this, db, ui);\r
                if (filename.contains(".inf")) {\r
-                       mr.readInf(filename);\r
+                       ModuleReader.readInf(filename, this);\r
                } else if (filename.contains(".msa")) {\r
-                       mr.readMsa(filename);\r
+                       ModuleReader.readMsa(filename, this);\r
                }\r
                \r
                CommentOutNonLocalHFile();\r
                parsePreProcessedSourceCode();\r
-               \r
-               new SourceFileReplacer(modulepath, this, db, ui).flush();       // some adding library actions are taken here,so it must be put before "MsaWriter"\r
+\r
+               new SourceFileReplacer(modulepath, outputpath, this, db, ui).flush();   // some adding library actions are taken here,so it must be put before "MsaWriter"\r
                \r
                // show result\r
                if (ui.yesOrNo("Parse of the Module Information has completed. View details?")) {\r
@@ -113,12 +100,10 @@ public class ModuleInfo {
                        show(hashr8only, "hashr8only : ");\r
                }\r
                \r
-               new MsaWriter(modulepath, this, db).flush();\r
-               \r
-               // remove temp directory\r
-               //File tempdir = new File(modulepath + File.separator + "temp");\r
-               //System.out.println("Deleting Dir");\r
-               //if (tempdir.exists()) tempdir.d;\r
+               new MsaWriter(modulepath, outputpath, this, db, ui).flush();\r
+\r
+               Common.deleteDir(modulepath + File.separator + "temp");\r
+               //Common.toDoAll(modulepath + File.separator + "temp", Common.class.getMethod("deleteDir", String.class), null, null, Common.DIR);\r
                \r
                ui.println("Errors Left : " + db.error);\r
                ui.println("Complete!");\r
@@ -130,19 +115,6 @@ public class ModuleInfo {
                ui.println(show + hash.size());\r
                ui.println(hash);\r
        }\r
-\r
-       public void ensureDir(String objFileWhole) {\r
-               Pattern ptnseparate = Pattern.compile("(.*)\\\\[^\\\\]*");\r
-               Matcher mtrseparate;\r
-               File tempdir;\r
-\r
-               mtrseparate = ptnseparate.matcher(objFileWhole);\r
-               if (mtrseparate.find()) {\r
-                       tempdir = new File(mtrseparate.group(1));\r
-                       if (!tempdir.exists()) tempdir.mkdirs();\r
-               }\r
-               \r
-       }\r
        \r
        // add '//' to all non-local include lines\r
        private void CommentOutNonLocalHFile() throws IOException {\r
@@ -153,12 +125,12 @@ public class ModuleInfo {
 \r
                Pattern ptninclude = Pattern.compile("[\"<](.*[.]h)[\">]");\r
                Matcher mtrinclude;\r
-               \r
+\r
                Iterator<String> ii = localmodulesources.iterator();\r
                while ( ii.hasNext() ) {\r
                        curFile = ii.next();\r
                        rd = new BufferedReader(new FileReader(modulepath + File.separator + curFile));\r
-                       ensureDir(modulepath + File.separator + "temp" + File.separator + curFile);\r
+                       Common.ensureDir(modulepath + File.separator + "temp" + File.separator + curFile);\r
                        outfile = new PrintWriter(new BufferedWriter(new FileWriter(modulepath + File.separator + "temp" + File.separator + curFile)));\r
                        while ((line = rd.readLine()) != null) {\r
                                if (line.contains("#include")) {\r
@@ -231,7 +203,7 @@ public class ModuleInfo {
                        // find guid\r
                        matguid = Guid.ptnguid.matcher(line);                                                                           // several ways to implement this , which one is faster ? :\r
                        while (matguid.find()) {                                                                                                        // 1.currently , find once , then call to identify which is it\r
-                               if ((temp = Guid.register(matguid, this, db)) != null) {                        // 2.use 3 different matchers , search 3 times to find each\r
+                               if ((temp = Guid.register(matguid, this, db)) != null) {                                // 2.use 3 different matchers , search 3 times to find each\r
                                        //matguid.appendReplacement(result, db.getR9Guidname(temp));            // search the database for all 3 kinds of guids , high cost\r
                                }\r
                        }\r
@@ -285,7 +257,40 @@ public class ModuleInfo {
                }\r
        }\r
        \r
-       public static void main(String[] args) throws Exception {\r
-               FirstPanel.init();\r
+       public final void enroll(String filepath) throws Exception {\r
+               String[] temp;\r
+               if (filepath.contains(".c") || filepath.contains(".C") || filepath.contains(".h") || \r
+                               filepath.contains(".H") || filepath.contains(".dxs") || filepath.contains(".uni")) {\r
+                       temp = filepath.split("\\\\");\r
+                       localmodulesources.add(temp[temp.length - 1]);\r
+               } else if (filepath.contains(".inf") || filepath.contains(".msa")) {\r
+                       temp = filepath.split("\\\\");\r
+                       msaorinf.add(temp[temp.length - 1]);\r
+               }\r
+       }\r
+       \r
+       public static final void seekModule(String filepath) throws Exception {\r
+               if (isModule(filepath)) {\r
+                       //System.out.println("I'm in");\r
+                       new ModuleInfo(filepath);\r
+               }\r
+       }\r
+\r
+       private static final boolean isModule(String path) {\r
+               String[] list = new File(path).list();\r
+               for (int i = 0 ; i < list.length ; i++) {\r
+                       if (!new File(list[i]).isDirectory()) {\r
+                               if (list[i].contains(".inf") || list[i].contains(".msa")) {\r
+                                       return true;\r
+                               }\r
+                       }\r
+               }\r
+               return false;\r
+       }\r
+/*\r
+       public static final void main(String[] args) throws Exception {\r
+               ui = FirstPanel.init();\r
+               db = new Database();\r
        }\r
+       */\r
 }
\ No newline at end of file