]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/MigrationTools/org/tianocore/migration/ModuleReader.java
add ModuleInfo2OutputPath Map
[mirror_edk2.git] / Tools / Source / MigrationTools / org / tianocore / migration / ModuleReader.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
17import java.util.regex.*;\r
446e26ee 18\r
0dc8c589 19import org.tianocore.*;\r
20\r
5ea254f6 21public final class ModuleReader {\r
446e26ee 22 private static ModuleInfo mi;\r
23 \r
5ea254f6 24 private static final Pattern ptninfequation = Pattern.compile("([^\\s]*)\\s*=\\s*([^\\s]*)");\r
25 private static final Pattern ptnsection = Pattern.compile("\\[([^\\[\\]]*)\\]([^\\[\\]]*)\\n", Pattern.MULTILINE);\r
26 private static final Pattern ptnfilename = Pattern.compile("[^\\s]+");\r
0dc8c589 27 \r
446e26ee 28 public static final void ModuleScan(ModuleInfo m) throws Exception {\r
29 mi = m;\r
cfdfbaca 30\r
446e26ee 31 Common.toDoAll(mi.modulepath, ModuleInfo.class.getMethod("enroll", String.class), mi, null, Common.FILE);\r
cfdfbaca 32\r
446e26ee 33 String filename = null;\r
34 if (mi.msaorinf.isEmpty()) {\r
482407d3 35 MigrationTool.ui.println("No INF nor MSA file found!");\r
446e26ee 36 System.exit(0);\r
37 } else {\r
a55ae0f2 38 if (mi.msaorinf.size() == 1) {\r
39 filename = (String)mi.msaorinf.toArray()[0];\r
40 } else {\r
482407d3 41 filename = MigrationTool.ui.choose("Found .inf or .msa file for module\n" + mi.modulepath + "\nChoose one Please", mi.msaorinf.toArray());\r
a55ae0f2 42 }\r
446e26ee 43 }\r
5f4eb6b6 44\r
446e26ee 45 if (filename.contains(".inf")) {\r
46 readInf(filename);\r
47 } else if (filename.contains(".msa")) {\r
48 readMsa(filename);\r
49 }\r
cfdfbaca 50\r
446e26ee 51 CommentOutNonLocalHFile();\r
52 parsePreProcessedSourceCode();\r
53\r
54 }\r
55 \r
56 private static final void readMsa(String name) throws Exception {\r
5ea254f6 57 ModuleSurfaceAreaDocument msadoc = ModuleSurfaceAreaDocument.Factory.parse(new File(mi.modulepath + File.separator + name));\r
0dc8c589 58 ModuleSurfaceAreaDocument.ModuleSurfaceArea msa = msadoc.getModuleSurfaceArea();\r
59 MsaHeaderDocument.MsaHeader msaheader = msa.getMsaHeader();\r
7bcb8d17 60\r
0dc8c589 61 mi.modulename = msaheader.getModuleName();\r
62 mi.guidvalue = msaheader.getGuidValue();\r
63 mi.moduletype = msaheader.getModuleType().toString(); // ???\r
7bcb8d17 64\r
0dc8c589 65 SourceFilesDocument.SourceFiles sourcefiles = msa.getSourceFiles();\r
66 \r
67 String temp;\r
68 Iterator<FilenameDocument.Filename> li = sourcefiles.getFilenameList().iterator();\r
69 while (li.hasNext()) {\r
70 if (!mi.localmodulesources.contains(temp = li.next().toString())) {\r
719cebfe 71 System.out.println("Source File Missing! : " + temp);\r
0dc8c589 72 }\r
73 }\r
74 }\r
75 \r
446e26ee 76 private static final void readInf(String name) throws Exception {\r
fed802b1 77 System.out.println("\nParsing INF file: " + name);\r
90503bad 78 String wholeline;\r
0dc8c589 79 Matcher mtrinfequation;\r
90503bad 80 Matcher mtrsection;\r
81 Matcher mtrfilename;\r
0dc8c589 82\r
5ea254f6 83 wholeline = Common.file2string(mi.modulepath + File.separator + name);\r
90503bad 84 mtrsection = ptnsection.matcher(wholeline);\r
85 while (mtrsection.find()) {\r
86 if (mtrsection.group(1).matches("defines")) {\r
87 mtrinfequation = ptninfequation.matcher(mtrsection.group(2));\r
88 while (mtrinfequation.find()) {\r
89 if (mtrinfequation.group(1).matches("BASE_NAME")) {\r
90 mi.modulename = mtrinfequation.group(2);\r
0dc8c589 91 }\r
90503bad 92 if (mtrinfequation.group(1).matches("FILE_GUID")) {\r
93 mi.guidvalue = mtrinfequation.group(2);\r
94 }\r
95 if (mtrinfequation.group(1).matches("COMPONENT_TYPE")) {\r
96 mi.moduletype = mtrinfequation.group(2);\r
97 }\r
98 }\r
99 }\r
100 if (mtrsection.group(1).matches("nmake.common")) {\r
101 mtrinfequation = ptninfequation.matcher(mtrsection.group(2));\r
102 while (mtrinfequation.find()) {\r
103 if (mtrinfequation.group(1).matches("IMAGE_ENTRY_POINT")) {\r
104 mi.entrypoint = mtrinfequation.group(2);\r
105 }\r
106 if (mtrinfequation.group(1).matches("DPX_SOURCE")) {\r
107 if (!mi.localmodulesources.contains(mtrinfequation.group(2))) {\r
482407d3 108 MigrationTool.ui.println("DPX File Missing! : " + mtrinfequation.group(2));\r
0dc8c589 109 }\r
110 }\r
90503bad 111 }\r
112 }\r
113 if (mtrsection.group(1).contains("sources.")) {\r
114 mtrfilename = ptnfilename.matcher(mtrsection.group(2));\r
115 while (mtrfilename.find()) {\r
116 if (!mi.localmodulesources.contains(mtrfilename.group())) {\r
482407d3 117 MigrationTool.ui.println("Source File Missing! : " + mtrfilename.group());\r
0dc8c589 118 }\r
119 }\r
120 }\r
121 }\r
122 }\r
446e26ee 123 \r
124 // add '//' to all non-local include lines\r
125 private static final void CommentOutNonLocalHFile() throws IOException {\r
126 BufferedReader rd;\r
127 String line;\r
128 String curFile;\r
129 PrintWriter outfile;\r
130\r
131 Pattern ptninclude = Pattern.compile("[\"<](.*[.]h)[\">]");\r
132 Matcher mtrinclude;\r
133\r
134 Iterator<String> ii = mi.localmodulesources.iterator();\r
135 while ( ii.hasNext() ) {\r
136 curFile = ii.next();\r
137 rd = new BufferedReader(new FileReader(mi.modulepath + File.separator + curFile));\r
138 Common.ensureDir(mi.modulepath + File.separator + "temp" + File.separator + curFile);\r
139 outfile = new PrintWriter(new BufferedWriter(new FileWriter(mi.modulepath + File.separator + "temp" + File.separator + curFile)));\r
e3e8956d 140 \r
141 /*\r
142 if (curFile.contains(".dxs")) {\r
143 if (mi.moduletype.contains("PEI")) {\r
144 \r
145 } else {\r
146 \r
147 }\r
148 }\r
149 */\r
446e26ee 150 while ((line = rd.readLine()) != null) {\r
151 if (line.contains("#include")) {\r
152 mtrinclude = ptninclude.matcher(line);\r
153 if (mtrinclude.find() && mi.localmodulesources.contains(mtrinclude.group(1))) {\r
154 } else {\r
482407d3 155 line = MigrationTool.MIGRATIONCOMMENT + line;\r
446e26ee 156 }\r
157 }\r
158 outfile.append(line + '\n');\r
159 }\r
160 outfile.flush();\r
161 outfile.close();\r
e3e8956d 162 \r
446e26ee 163 }\r
164 }\r
165\r
166 private static final void parsePreProcessedSourceCode() throws Exception {\r
167 //Cl cl = new Cl(modulepath);\r
168 //cl.execute("Fat.c");\r
169 //cl.generateAll(preprocessedccodes);\r
170 //\r
171 //System.out.println("Note!!!! The CL is not implemented now , pls do it manually!!! RUN :");\r
172 //System.out.println("cl " + modulepath + "\\temp\\*.c" + " -P");\r
173 //String[] list = new File(modulepath + File.separator + "temp").list(); // without CL , add\r
174 BufferedReader rd = null;\r
175 String ifile = null;\r
176 String line = null;\r
177 String temp = null;\r
178 \r
179 Iterator<String> ii = mi.localmodulesources.iterator();\r
180 while (ii.hasNext()) {\r
181 temp = ii.next();\r
182 if (temp.contains(".c")) {\r
183 mi.preprocessedccodes.add(temp);\r
184 }\r
185 }\r
186 \r
187 ii = mi.preprocessedccodes.iterator();\r
188 \r
189 Pattern patefifuncc = Pattern.compile("g?(BS|RT)\\s*->\\s*([a-zA-Z_]\\w*)",Pattern.MULTILINE);\r
190 Pattern patentrypoint = Pattern.compile("EFI_([A-Z]*)_ENTRY_POINT\\s*\\(([^\\(\\)]*)\\)",Pattern.MULTILINE);\r
191 Matcher matguid;\r
192 Matcher matfuncc;\r
193 Matcher matfuncd;\r
194 Matcher matenclosereplace;\r
195 Matcher matefifuncc;\r
196 Matcher matentrypoint;\r
197 Matcher matmacro;\r
198 \r
199 while (ii.hasNext()) {\r
200 StringBuffer wholefile = new StringBuffer();\r
201 ifile = ii.next();\r
202 rd = new BufferedReader(new FileReader(mi.modulepath + File.separator + "temp" + File.separator + ifile));\r
203 while ((line = rd.readLine()) != null) {\r
204 wholefile.append(line + '\n');\r
205 }\r
206 line = wholefile.toString();\r
207 \r
208 // if this is a Pei phase module , add these library class to .msa\r
209 matentrypoint = patentrypoint.matcher(line);\r
210 if (matentrypoint.find()) {\r
211 mi.entrypoint = matentrypoint.group(2);\r
212 if (matentrypoint.group(1).matches("PEIM")) {\r
213 mi.hashrequiredr9libs.add("PeimEntryPoint");\r
214 } else {\r
215 mi.hashrequiredr9libs.add("UefiDriverEntryPoint");\r
216 }\r
217 }\r
218 \r
219 // find guid\r
220 matguid = Guid.ptnguid.matcher(line); // several ways to implement this , which one is faster ? :\r
221 while (matguid.find()) { // 1.currently , find once , then call to identify which is it\r
482407d3 222 if ((temp = Guid.register(matguid, mi, MigrationTool.db)) != null) { // 2.use 3 different matchers , search 3 times to find each\r
223 //matguid.appendReplacement(result, MigrationTool.db.getR9Guidname(temp)); // search the database for all 3 kinds of guids , high cost\r
446e26ee 224 }\r
225 }\r
226 //matguid.appendTail(result);\r
227 //line = result.toString();\r
228\r
229 // find EFI call in form of '->' , many 'gUnicodeCollationInterface->' like things are not changed\r
230 // This item is not simply replaced , special operation is required.\r
231 matefifuncc = patefifuncc.matcher(line);\r
232 while (matefifuncc.find()) {\r
233 mi.hashEFIcall.add(matefifuncc.group(2));\r
234 }\r
235\r
236 // find function call\r
237 matfuncc = Func.ptnfuncc.matcher(line);\r
238 while (matfuncc.find()) {\r
482407d3 239 if ((temp = Func.register(matfuncc, mi, MigrationTool.db)) != null) {\r
240 //MigrationTool.ui.println(ifile + " dofunc " + temp);\r
241 //matfuncc.appendReplacement(result, MigrationTool.db.getR9Func(temp));\r
446e26ee 242 }\r
243 }\r
244 //matfuncc.appendTail(result);\r
245 //line = result.toString();\r
246\r
247 // find macro\r
248 matmacro = Macro.ptntmacro.matcher(line);\r
249 while (matmacro.find()) {\r
482407d3 250 if ((temp = Macro.register(matmacro, mi, MigrationTool.db)) != null) {\r
446e26ee 251 }\r
252 }\r
253 \r
254 // find function definition\r
255 // replace all {} to @\r
256 while ((matenclosereplace = Func.ptnbrace.matcher(line)).find()) {\r
257 line = matenclosereplace.replaceAll("@");\r
258 }\r
259\r
260 matfuncd = Func.ptnfuncd.matcher(line);\r
261 while (matfuncd.find()) {\r
482407d3 262 if ((temp = Func.register(matfuncd, mi, MigrationTool.db)) != null) {\r
446e26ee 263 }\r
264 }\r
265 }\r
266 \r
267 // op on hash\r
268 Iterator<String> funcci = mi.hashfuncc.iterator();\r
269 while (funcci.hasNext()) {\r
270 if (!mi.hashfuncd.contains(temp = funcci.next()) && !mi.hashEFIcall.contains(temp)) {\r
271 mi.hashnonlocalfunc.add(temp); // this set contains both changed and not changed items\r
272 }\r
273 }\r
274 }\r
719cebfe 275}\r