-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodestatemachine.java
More file actions
282 lines (220 loc) · 8.71 KB
/
codestatemachine.java
File metadata and controls
282 lines (220 loc) · 8.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package codeanalyzer;
import javax.swing.tree.DefaultMutableTreeNode;
/**
*
* @author susdeshp
*/
public class codestatemachine {
public static final int S_INSIDECODEBLOCK = 3;
public static final int S_INSIDECOMMENT = 4;
public static final int S_PREPROCESSORLINE = 5;
private boolean HitAFunction;
private boolean ItsAPreprocessorLine;
private boolean FoundForwardSlash;
private boolean FoundStarInsideCommentBlock;
private boolean FoundTwoForwardSlash;
private boolean FoundBackwardSlash;
private boolean InsideCommentBlock;
private int CurrentDepth;
private int State;
private javax.swing.tree.DefaultMutableTreeNode codetree;
private javax.swing.tree.DefaultMutableTreeNode currentnodepointer;
private StringBuffer CurrentLine;
public codestatemachine() {
InitializeStateMachine();
// System.out.println("Inside codestatemachine");
codetree = new javax.swing.tree.DefaultMutableTreeNode("Root Of Code Tree");
currentnodepointer = codetree;
}
/*
* This Function Evaluates the C code passed as string parameter
* It creates codetree based on the evaluation.
*/
public void EvaluateNextChar(String StrCode) {
// System.out.println("Inside EvaluateNextChar");
// Reinitialize codestatemachine
InitializeStateMachine();
codetree = new javax.swing.tree.DefaultMutableTreeNode("Root Of Code Tree");
currentnodepointer = codetree;
// Iterate Through Each Character in Code
char c;
int Codelength = StrCode.length();
for(int i = 0; i < Codelength; i++){
// Get Next Character in Code
c = StrCode.charAt(i);
if(ItsAPreprocessorLine && !FoundBackwardSlash){
// comment line evaluation
switch(c){
case '\n' :
// End of Preprocessorline
InitializeStateMachine();
break;
case '\\' :
// Preprocessor line extended to next line or next control character ignored
FoundBackwardSlash = true;
break;
//default :
}
}else if(FoundTwoForwardSlash && !FoundBackwardSlash){
// comment line evaluation
switch(c){
case '\n' :
// End of commentline
InitializeStateMachine();
break;
case '\\' :
// Preprocessor line extended to next line or next control character ignored
FoundBackwardSlash = true;
break;
//default :
}
}else if(InsideCommentBlock){
switch(c){
case '*' :
InsideCommentBlock = false;
FoundStarInsideCommentBlock = true;
break;
}
}else if(FoundStarInsideCommentBlock){
switch(c){
case '/' :
InsideCommentBlock = false;
FoundStarInsideCommentBlock = false;
//InitializeStateMachine();
break;
case '*' :
InsideCommentBlock = false;
FoundStarInsideCommentBlock = true;
break;
default :
InsideCommentBlock = true;
FoundStarInsideCommentBlock = false;
}
}else if(FoundForwardSlash){
switch(c){
case '/' :
FoundTwoForwardSlash = true;
FoundForwardSlash = false;
break;
case '*' :
InsideCommentBlock = true;
FoundForwardSlash = false;
//default :
}
}else if(FoundBackwardSlash){
FoundBackwardSlash = false;
}else{
//System.out.println(c);
switch(c){
case '#' :
ItsAPreprocessorLine = true;
// System.out.println("ItsAPreprocessorLine = true");
break;
case ';' :
if (CurrentLine.toString().contains("for")) CurrentLine.append(c);
else FoundSemicolon();
break;
case '{' :
FoundOpenCurlyBracket();
break;
case '}' :
FoundClosedCurlyBracket();
break;
case '(' :
CurrentLine.append(c);
FoundOpenCurvedBracket();
break;
case ')' :
CurrentLine.append(c);
FoundClosedCurvedBracket();
break;
case '\\' :
FoundBackwardSlash = true;
break;
case '/' :
FoundForwardSlash = true;
break;
case ' ' :
if(CurrentLine.length()!=0) CurrentLine.append(c);
break;
case '\n' :
if(CurrentLine.length()!=0) CurrentLine.append(' ');
break;
default :
CurrentLine.append(c);
}
}
}
}
/*
* This Function returns the Codetree.
*
*/
public javax.swing.tree.DefaultMutableTreeNode GetCodetree() {
return codetree;
}
/*
* Semicolon is Found so this function adds current line to the codetree if
* this line had a function call or branching statement
*/
private void FoundSemicolon() {
// System.out.println(CurrentLine.toString());
if(HitAFunction) {
javax.swing.tree.DefaultMutableTreeNode treeNode2 = new javax.swing.tree.DefaultMutableTreeNode(CurrentLine.toString());
currentnodepointer.add(treeNode2);
}
InitializeStateMachine();
}
/*
* Open Curly Bracket is Found so this function adds current line to the codetree and
* makes the new node as the parent for nodes found further
*/
private void FoundOpenCurlyBracket() {
javax.swing.tree.DefaultMutableTreeNode treeNode2 = new javax.swing.tree.DefaultMutableTreeNode(CurrentLine.toString());
currentnodepointer.add(treeNode2);
currentnodepointer = treeNode2;
InitializeStateMachine();
}
/*
* Closed Curly Bracket is Found so this function
* makes the parent node as the current node for nodes found further
*/
private void FoundClosedCurlyBracket() {
currentnodepointer = (DefaultMutableTreeNode) currentnodepointer.getParent();
InitializeStateMachine();
}
/*
* Opened Curved Bracket is Found so this function
* marks this line as a line with a function call or branching call
*/
private void FoundOpenCurvedBracket() {
HitAFunction = true;
}
/*
* Opened Curved Bracket is Found so this function
* marks this line as a line with a function call or branching call
*/
private void FoundClosedCurvedBracket() {
HitAFunction = true;
}
/*
* Initialize all the variables that determine the state of the Line.
* It is called at the begining of processing a line.
*/
private void InitializeStateMachine() {
HitAFunction = false;
ItsAPreprocessorLine = false;
FoundForwardSlash = false;
FoundStarInsideCommentBlock = false;
FoundTwoForwardSlash = false;
InsideCommentBlock = false;
FoundBackwardSlash = false;
CurrentDepth = 0;
CurrentLine = new StringBuffer("");
State = 0;
}
}