-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLexical_analysis.cpp
More file actions
202 lines (190 loc) · 5.45 KB
/
Lexical_analysis.cpp
File metadata and controls
202 lines (190 loc) · 5.45 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
#include <iostream>
#include <fstream>
#include <list>
using namespace std;
/*
# Lexical Analysis by Aman Srivastava
# This code differentiates between the keyword, identifier, punctuator and unknown literals
# Note:: This code is not taking the two character sized operator into consideration while
performing Lexical Analysis. Anyhow this that can also be implemented by adding some more functions.
*/
bool check_keyword(string s)
{
string keyword_list[] = {"asm", "double", "new", "switch",
"auto", "else", "operator", "template",
"break", "enum", "private", "this",
"case", "extern", "protected", "throw",
"catch", "float", "public", "try",
"char", "for", "register", "typedef",
"class", "friend", "return", "union",
"const", "goto", "short", "unsigned",
"continue", "if", "signed", "virtual",
"default", "inline", "sizeof", "void",
"delete", "int", "static", "volatile",
"do", "long", "struct", "while"};
for (auto x : keyword_list)
{
if (s == x)
return true;
}
return false;
}
bool check_punctuator(char ch)
{
char c[] = {'#', '*', ',', ';', '(', ')', '{', '}', '[', ']', '<', '>'};
for (auto x : c)
{
if (ch == x)
return true;
}
return false;
}
bool check_space(char c)
{
char *ch;
*ch = c;
return ch == " ";
}
bool check_operator(char ch)
{
char c[] = {'+', '-', '&', '|', '/', '*', '%', '^', '='};
for (auto x : c)
{
if (ch == x)
{
return true;
}
}
return false;
}
int main(int argc, char *argv[])
{
ifstream file;
// file.open(*(argv + 1)); // Uncommented this line if you want to give any command line argument and comment the below line
file.open("Filename.txt"); // Enter the filename on which you want to do the lexical analysis
char c;
int count_keyword = 0;
int count_identifier = 0;
int count_punctuator = 0;
int count_unknown = 0;
list<string> keyword_list;
list<string> identifier_list;
list<string> punctuator_list;
list<string> unknown_list;
string s;
s = "";
string us = "";
int flag = 0;
// You can uncommented the line in the while loop if you want to track whenever a token is found
while (!file.eof())
{
c = file.get();
if (c == 34 || flag == 1)
{
us = us + c;
if (flag == 0)
{
flag = 1;
count_unknown++;
}
else if (c == 34 && flag == 1)
{
// cout << "Unknown found:"<<us << endl;
flag = 0;
unknown_list.push_back(us);
}
continue;
}
if (c == ' ' || c == '\n')
{
if (s != "")
{
if (check_keyword(s))
{
// cout << "Keyword found:"<<s<<endl;
keyword_list.push_back(s);
count_keyword++;
s = "";
}
else
{
// cout<<"Identifier found:"<<s<<endl;
identifier_list.push_back(s);
count_identifier++;
s = "";
}
}
}
else if (check_punctuator(c))
{
// cout <<"Punctuator found:"<< c << endl;
string cs = "";
cs = cs + c;
punctuator_list.push_back(cs);
count_punctuator++;
if (s != "")
{
if (check_keyword(s))
{
// cout << "Keyword found:"<<s;
keyword_list.push_back(s);
count_keyword++;
s = "";
}
else
{
// cout<<"Identifier found:"<<s<<endl;
identifier_list.push_back(s);
count_identifier++;
s = "";
}
}
}
else
{
s += c;
}
if (check_keyword(s))
{
// cout<<"Keyword found:"<<s<<endl;
keyword_list.push_back(s);
count_keyword++;
s = "";
}
}
cout << endl;
cout << "Count of keyword:" << count_keyword << endl;
cout << "List of keyword found->" << endl;
for (auto x : keyword_list)
{
cout << x << " ";
}
cout << endl
<< endl;
cout << "Count of Identifier:" << count_identifier << endl;
cout << "List of Identifier found->" << endl;
for (auto x : identifier_list)
{
cout << x << " ";
}
cout << endl
<< endl;
cout << "Count of Punctuators:" << count_punctuator << endl;
cout << "List of Punctuators found->" << endl;
for (auto x : punctuator_list)
{
cout << x << " ";
}
cout << endl
<< endl;
cout << "Count of Unknown:" << count_unknown << endl;
cout << "List of Unknown found->" << endl;
for (auto x : unknown_list)
{
cout << x << " ";
}
cout << endl
<< endl;
return 0;
}
// Lexical Analysis by Aman Srivastava