]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java
cf42d9c57a4d32bd167f99f3836739ea12f38426
[mirror_edk2.git] / Tools / Source / MigrationTools / org / tianocore / migration / ModuleInfo.java
1 /** @file
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 **/
13 package org.tianocore.migration;
14
15 import java.io.*;
16 import java.util.*;
17
18 /*
19 Class ModuleInfo is built for scanning the source files, it contains all the needed
20 information and all the temporary data.
21 */
22 public final class ModuleInfo {
23 ModuleInfo(String modulepath) throws Exception {
24 this.modulepath = modulepath;
25 this.temppath = MigrationTool.getTempDir(this.modulepath);
26 }
27
28 public final String modulepath;
29 public final String temppath;
30
31 private MsaOwner msaowner = new MsaOwner();
32
33 public String modulename = null;
34 public String guidvalue = null;
35 public String moduletype = null;
36 public String entrypoint = null;
37
38 public final Set<String> localmodulesources = new HashSet<String>(); //contains both .c and .h
39 public final Set<String> preprocessedccodes = new HashSet<String>();
40 public final Set<String> msaorinf = new HashSet<String>(); //only a little, hash may be too big for this
41 public final Set<String> infincludes = new HashSet<String>();
42 public final Set<String> infsources = new HashSet<String>();
43
44 public final Set<String> hashfuncc = new HashSet<String>();
45 public final Set<String> hashfuncd = new HashSet<String>();
46 public final Set<String> hashnonlocalfunc = new HashSet<String>();
47 public final Set<String> hashnonlocalmacro = new HashSet<String>();
48 public final Set<String> hashEFIcall = new HashSet<String>();
49 public final Set<String> hashr8only = new HashSet<String>();
50 public final Set<String> hashmacro = new HashSet<String>();
51
52 public final Set<String> hashrequiredr9libs = new HashSet<String>(); // hashrequiredr9libs is now all added in SourceFileReplacer
53 public final Set<String> guid = new HashSet<String>();
54 public final Set<String> protocol = new HashSet<String>();
55 public final Set<String> ppi = new HashSet<String>();
56
57 public final String getModuleType() {
58 if (moduletype.contains("PEI")) {
59 return "PEIM";
60 } else {
61 return "DXE_DRIVER";
62 }
63 }
64
65 public final void enroll(String filepath) throws Exception {
66 String temp = null;
67 if (filepath.contains(".c") || filepath.contains(".C") || filepath.contains(".h") ||
68 filepath.contains(".H") || filepath.contains(".dxs") || filepath.contains(".uni")) {
69 localmodulesources.add(filepath.replace(modulepath + File.separator, ""));
70 } else if (filepath.contains(".inf") || filepath.contains(".msa")) {
71 temp = filepath.replace(modulepath + File.separator, "");
72 if (!temp.contains(File.separator)) { // .inf in subdirectory is not regarded
73 msaorinf.add(temp);
74 }
75 }
76 }
77
78 public static final boolean isModule(String path) {
79 String[] list = new File(path).list();
80 for (int i = 0 ; i < list.length ; i++) {
81 if (!new File(list[i]).isDirectory()) {
82 if (list[i].contains(".inf") || list[i].contains(".msa")) {
83 return true;
84 }
85 }
86 }
87 return false;
88 }
89 }