]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/MigrationTools/org/tianocore/migration/Func.java
1858066840a5cf34dbacbc0abf6cb7d2b1354490
[mirror_edk2.git] / Tools / Source / MigrationTools / org / tianocore / migration / Func.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.util.regex.*;
16
17 public class Func {
18 Func(String r8func,String r8lib,String r9func,String r9lib) {
19 r8funcname = r8func;
20 r8libname = r8lib;
21 r9funcname = r9func;
22 r9libname = r9lib;
23 }
24 Func(String[] linecontext) {
25 r8funcname = linecontext[1];
26 r8libname = linecontext[0];
27 r9funcname = linecontext[2];
28 r9libname = linecontext[3];
29 }
30 public String r8funcname;
31 public String r8libname;
32 public String r9funcname;
33 public String r9libname;
34
35 public static Pattern ptnbrace = Pattern.compile("\\{[^\\{\\}]*\\}",Pattern.MULTILINE);
36 public static Pattern ptnfuncc = Pattern.compile("(?<!->)([a-zA-Z_]\\w*)\\s*\\(",Pattern.MULTILINE);
37 public static Pattern ptnfuncd = Pattern.compile("([a-zA-Z_]\\w*)\\s*\\([^\\)\\(]*\\)\\s*@",Pattern.MULTILINE);
38 public static Pattern ptnlowcase = Pattern.compile("[a-z]"); // must be removed
39
40 private static String reservedwords = "if for pack while switch return sizeof";
41
42 public static String register(Matcher mtr, ModuleInfo mi, Database db) {
43 String temp = null;
44
45 temp = mtr.group(1); // both changed and not changed funcc are registered , for finding all the non-local function calls
46 Matcher mtrlowcase = ptnlowcase.matcher(temp); // must be removed , so the two funcs can be merged
47 if (!reservedwords.contains(temp) && mtrlowcase.find()) {
48 mi.hashfuncc.add(temp);
49 }
50 return temp;
51 }
52 /*
53 public static String registerFuncD(Matcher mtr, ModuleInfo mi, Database db) {
54 String temp = null;
55
56 temp = mtr.group(1); // both changed and not changed funcd are registered , for finding all the non-local function calls
57 if (!reservedwords.contains(temp)) {
58 mi.hashfuncd.add(temp);
59 }
60 return temp;
61 }
62 */
63 }