]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/MigrationTools/org/tianocore/migration/Critic.java
93cb23b9417804618a8e5b96d1976f8046d56c48
[mirror_edk2.git] / Tools / Source / MigrationTools / org / tianocore / migration / Critic.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 import java.io.*;
17
18 public class Critic implements Common.ForDoAll {
19 private static Pattern ptnheadcomment = Pattern.compile("^\\/\\*\\+\\+(.*?)\\-\\-\\*\\/",Pattern.DOTALL);
20 private static Pattern ptnfunccomment = Pattern.compile("([\\w\\d]*\\s*[_\\w][_\\w\\d]*\\s*\\([^\\)\\(]*\\)\\s*)\\/\\*\\+\\+(.*?)\\-\\-\\*\\/(\\s*.*?)([\\{;])",Pattern.DOTALL);
21 private static Pattern ptncommentstructure = Pattern.compile("\\/\\*\\+\\+\\s*Routine Description:\\s*(.*?)\\s*Arguments:\\s*(.*?)\\s*Returns:\\s*(.*?)\\s*\\-\\-\\*\\/",Pattern.DOTALL);
22 private static Pattern ptninfequation = Pattern.compile("([^\\s]*)\\s*-\\s*(.*)\\s*");
23 private static Matcher mtrinfequation;
24 private static Matcher mtrfunccomment;
25
26 public void toDo(String filepath) throws Exception {
27 if (filepath.contains(".c") || filepath.contains(".h")) {
28 BufferedReader rd = null;
29 String line = null;
30 StringBuffer templine = new StringBuffer();
31 boolean incomment = false;
32 boolean description = false;
33 boolean arguments = false;
34 boolean returns = false;
35
36 System.out.println("Criticing " + filepath);
37 String wholeline = Common.file2string(filepath);
38
39 wholeline = Common.replaceAll(wholeline, ptnheadcomment, "/** @file$1**/");
40 wholeline = Common.replaceAll(wholeline, ptnfunccomment, "/**$2**/$3$1$4");
41 //wholeline = Common.replaceAll(wholeline, ptncommentstructure, "/**\n#%\n$1\n%#\n#%%\n$2\n%%#\n#%%%\n$3\n%%%#\n**/");
42
43 rd = new BufferedReader(new StringReader(wholeline));
44 while ((line = rd.readLine()) != null) {
45 if (line.matches("\\/\\*\\*")) {
46 incomment = true;
47 templine.append(line + "\n");
48 } else if (line.matches("\\*\\*\\/")) {
49 incomment = false;
50 templine.append(line + "\n");
51 } else if (incomment && line.contains("Routine Description:")) {
52 description = true;
53 arguments = false;
54 returns = false;
55 } else if (incomment && line.contains("Arguments:")) {
56 description = false;
57 arguments = true;
58 returns = false;
59 } else if (incomment && line.contains("Returns:")) {
60 description = false;
61 arguments = false;
62 returns = true;
63 } else if (incomment && description) {
64 templine.append(line + "\n");
65 } else if (incomment && arguments) {
66 mtrinfequation = ptninfequation.matcher(line);
67 if (mtrinfequation.find()) {
68 templine.append(" @param " + mtrinfequation.group(1) + " " + mtrinfequation.group(2) + "\n");
69 } else {
70 templine.append(line + "\n");
71 }
72 } else if (incomment && returns) {
73 mtrinfequation = ptninfequation.matcher(line);
74 if (mtrinfequation.find()) {
75 templine.append(" @retval " + mtrinfequation.group(1) + " " + mtrinfequation.group(2) + "\n");
76 } else {
77 templine.append(line + "\n");
78 }
79 } else {
80 templine.append(line + "\n");
81 }
82 }
83 wholeline = templine.toString();
84
85 /* -----slow edition of replacefirst with stringbuffer-----
86 line.append(wholeline);
87 mtrfunccomment = ptnfunccomment.matcher(line);
88 while (mtrfunccomment.find()) {
89 line.replace(0, line.length()-1, mtrfunccomment.replaceFirst("$2$4$3$1$5"));
90 }
91 */
92 /* -----slow edition of replacefirst with string-----
93 while ((mtrfunccomment = ptnfunccomment.matcher(wholeline)).find()) {
94 //funccomment = mtrfunccomment.group(2);
95 //mtrcommentstructure = ptncommentstructure.matcher(funccomment);
96 wholeline = mtrfunccomment.replaceFirst("$2$4$3$1$5");
97 }
98 */
99 /*
100 // edit func comment
101 mtrtempcomment = ptntempcomment.matcher(wholeline);
102 while (mtrtempcomment.find()) {
103 System.out.println("-----------------------------");
104 System.out.println(mtrtempcomment.group());
105 System.out.println("-----------------------------");
106 }
107 */
108 Common.string2file(wholeline, filepath);
109 }
110 }
111
112 public static void fireAt(String path) throws Exception {
113 Critic critic = new Critic();
114 Common.toDoAll(Common.dirCopy_(path), critic);
115 System.out.println("Critic Done");
116 }
117 }
118 //analyze func comment
119 /*if (mtrcommentstructure.find()) {
120 newcomment.append("/*++\n\n" + mtrcommentstructure.group(1) + "\n\n");
121
122 //System.out.println("-------1-------");
123 //System.out.println(mtrcommentstructure.group(1));
124
125 // arg
126 //System.out.println("-------2-------");
127 //System.out.println(mtrcommentstructure.group(2));
128 mtrinfequation = ptninfequation.matcher(mtrcommentstructure.group(2));
129 while (mtrinfequation.find()) {
130 newcomment.append("@param " + mtrinfequation.group(1) + " " + mtrinfequation.group(2) + "\n");
131 //System.out.println("@param " + mtrinfequation.group(1) + " " + mtrinfequation.group(2));
132 }
133 newcomment.append("\n");
134 // return
135 //System.out.println("-------3-------");
136 //System.out.println(mtrcommentstructure.group(3));
137 mtrinfequation = ptninfequation.matcher(mtrcommentstructure.group(3));
138 while (mtrinfequation.find()) {
139 newcomment.append("@retval " + mtrinfequation.group(1) + " " + mtrinfequation.group(2) + "\n");
140 //System.out.println("@retval " + mtrinfequation.group(1) + " " + mtrinfequation.group(2));
141 }
142 System.out.println(newcomment);
143 } else {
144 System.out.println("Error: Comment Style Incorrect");
145 }*/