]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java
little modify
[mirror_edk2.git] / Tools / Source / MigrationTools / org / tianocore / migration / ModuleInfo.java
CommitLineData
b0282412 1/** @file\r
2 \r
3 Copyright (c) 2006, Intel Corporation\r
4 All rights reserved. This program and the accompanying materials\r
5 are licensed and made available under the terms and conditions of the BSD License\r
6 which accompanies this distribution. The full text of the license may be found at\r
7 http://opensource.org/licenses/bsd-license.php\r
8 \r
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11 \r
12 **/\r
0dc8c589 13package org.tianocore.migration;\r
14\r
15import java.io.*;\r
16import java.util.*;\r
0dc8c589 17\r
18/*\r
19 Class ModuleInfo is built for scanning the source files, it contains all the needed\r
20information and all the temporary data.\r
21*/\r
1eac75f9 22public final class ModuleInfo {\r
5ea254f6 23 ModuleInfo(String modulepath) throws Exception {\r
0dc8c589 24 this.modulepath = modulepath;\r
5ea254f6 25 \r
ac62aa9a 26 if (ModuleInfo.defaultoutput) {\r
27 this.outputpath = this.modulepath.replaceAll(Common.strseparate, "$1");\r
28 } else {\r
29 ModuleInfo.ui.println("Choose where to place the result");\r
30 if ((outputpath = ModuleInfo.ui.getFilepath()) == null) {\r
31 outputpath = modulepath; \r
32 }\r
33 ModuleInfo.ui.println("Output to: " + outputpath);\r
5ea254f6 34 }\r
0dc8c589 35 }\r
5ea254f6 36\r
a55ae0f2 37 public final String modulepath;\r
0dc8c589 38 \r
5ea254f6 39 public String outputpath = null;\r
0dc8c589 40 \r
41 public String modulename = null;\r
42 public String guidvalue = null;\r
43 public String moduletype = null;\r
44 public String entrypoint = null;\r
45 \r
1eac75f9 46 public final Set<String> localmodulesources = new HashSet<String>(); //contains both .c and .h\r
47 public final Set<String> preprocessedccodes = new HashSet<String>();\r
48 public final Set<String> msaorinf = new HashSet<String>(); //only a little, hash may be too big for this\r
0dc8c589 49 \r
1eac75f9 50 public final Set<String> hashfuncc = new HashSet<String>();\r
51 public final Set<String> hashfuncd = new HashSet<String>();\r
52 public final Set<String> hashnonlocalfunc = new HashSet<String>();\r
53 public final Set<String> hashnonlocalmacro = new HashSet<String>();\r
54 public final Set<String> hashEFIcall = new HashSet<String>();\r
55 public final Set<String> hashr8only = new HashSet<String>();\r
0dc8c589 56 \r
1eac75f9 57 public final Set<String> hashrequiredr9libs = new HashSet<String>(); // hashrequiredr9libs is now all added in SourceFileReplacer \r
58 public final Set<String> guid = new HashSet<String>();\r
59 public final Set<String> protocol = new HashSet<String>();\r
60 public final Set<String> ppi = new HashSet<String>();\r
23e3b888 61\r
62 public final void enroll(String filepath) throws Exception {\r
23e3b888 63 if (filepath.contains(".c") || filepath.contains(".C") || filepath.contains(".h") || \r
64 filepath.contains(".H") || filepath.contains(".dxs") || filepath.contains(".uni")) {\r
cfdfbaca 65 localmodulesources.add(filepath.replace(modulepath + "\\", ""));\r
23e3b888 66 } else if (filepath.contains(".inf") || filepath.contains(".msa")) {\r
cfdfbaca 67 msaorinf.add(filepath.replace(modulepath + "\\", ""));\r
23e3b888 68 }\r
69 }\r
70\r
ac62aa9a 71 public static final boolean isModule(String path) {\r
23e3b888 72 String[] list = new File(path).list();\r
73 for (int i = 0 ; i < list.length ; i++) {\r
74 if (!new File(list[i]).isDirectory()) {\r
75 if (list[i].contains(".inf") || list[i].contains(".msa")) {\r
76 return true;\r
77 }\r
78 }\r
79 }\r
80 return false;\r
81 }\r
82\r
83 //---------------------------------------------------------------------------//\r
0dc8c589 84 \r
23e3b888 85 private static final void manipulate(ModuleInfo mi) throws Exception {\r
5ea254f6 86 \r
23e3b888 87 ModuleReader.ModuleScan(mi);\r
0dc8c589 88 \r
23e3b888 89 SourceFileReplacer.flush(mi); // some adding library actions are taken here,so it must be put before "MsaWriter"\r
0dc8c589 90 \r
91 // show result\r
050e979f 92 if (ModuleInfo.printModuleInfo) {\r
93 ModuleInfo.ui.println("\nModule Information : ");\r
23e3b888 94 ModuleInfo.ui.println("Entrypoint : " + mi.entrypoint);\r
95 show(mi.protocol, "Protocol : ");\r
96 show(mi.ppi, "Ppi : ");\r
97 show(mi.guid, "Guid : ");\r
98 show(mi.hashfuncc, "call : ");\r
99 show(mi.hashfuncd, "def : ");\r
100 show(mi.hashEFIcall, "EFIcall : ");\r
101 show(mi.hashnonlocalmacro, "macro : ");\r
102 show(mi.hashnonlocalfunc, "nonlocal : ");\r
103 show(mi.hashr8only, "hashr8only : ");\r
0dc8c589 104 }\r
105 \r
23e3b888 106 new MsaWriter(mi).flush();\r
5ea254f6 107\r
050e979f 108 if (ModuleInfo.doCritic) {\r
23e3b888 109 Critic.fireAt(mi.outputpath + File.separator + "Migration_" + mi.modulename);\r
446e26ee 110 }\r
111 \r
23e3b888 112 Common.deleteDir(mi.modulepath + File.separator + "temp");\r
0dc8c589 113 \r
050e979f 114 ModuleInfo.ui.println("Errors Left : " + ModuleInfo.db.error);\r
115 ModuleInfo.ui.println("Complete!");\r
ac62aa9a 116 //ModuleInfo.ui.println("Your R9 module was placed here: " + mi.modulepath + File.separator + "result");\r
117 //ModuleInfo.ui.println("Your logfile was placed here: " + mi.modulepath);\r
0dc8c589 118 }\r
119 \r
23e3b888 120 private static final void show(Set<String> hash, String show) {\r
050e979f 121 ModuleInfo.ui.println(show + hash.size());\r
122 ModuleInfo.ui.println(hash);\r
0dc8c589 123 }\r
e6a5df3b 124 \r
5ea254f6 125 public static final void seekModule(String filepath) throws Exception {\r
23e3b888 126 if (ModuleInfo.isModule(filepath)) {\r
127 manipulate(new ModuleInfo(filepath));\r
5ea254f6 128 }\r
5ea254f6 129 }\r
446e26ee 130\r
7bcb8d17 131 public static final void triger(String path) throws Exception {\r
050e979f 132 ModuleInfo.ui.println("Project Migration");\r
133 ModuleInfo.ui.println("Copyright (c) 2006, Intel Corporation");\r
7bcb8d17 134 Common.toDoAll(path, ModuleInfo.class.getMethod("seekModule", String.class), null, null, Common.DIR);\r
0dc8c589 135 }\r
050e979f 136 \r
050e979f 137 public static UI ui = null;\r
138 public static Database db = null;\r
139 \r
140 public static final String migrationcomment = "//%$//";\r
141 \r
142 public static boolean printModuleInfo = false;\r
143 public static boolean doCritic = false;\r
ac62aa9a 144 public static boolean defaultoutput = false;\r
050e979f 145 \r
146 public static void main(String[] args) throws Exception {\r
147 ui = FirstPanel.init();\r
148 db = Database.init();\r
149 }\r
e6a5df3b 150}