-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParse_File.cpp
More file actions
235 lines (206 loc) · 6.8 KB
/
Parse_File.cpp
File metadata and controls
235 lines (206 loc) · 6.8 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
#include<Parse_File.h>
#include<Stem.h>
#include<Stem_Exceptions.h>
#define apos '\''
unordered_map<string, int> Parse_File::parseStart(string filename){
Parse_File:: wordCount.clear();
Parse_File::ambiguousCap.clear();
endOfSent = true;
possiblyAddPlus = false;
numOfSentences = 0;
numOfLetters = 0;
numOfWords = 0;
ifstream fOpen(filename);
string temp = "";
while(!((fOpen >> ws).peek() == EOF)){
fOpen >> temp;
Parse_File::split(temp);
}
Parse_File::resolveAmbiguous();
return Parse_File::wordCount;
}
void Parse_File::resolveAmbiguous(){
string check = "";
for(unordered_map<string, int>::iterator iter = ambiguousCap.begin(); iter != ambiguousCap.end(); iter++){
check = iter->first;
if(wordCount.count(check) != 0){
wordCount.at(check) += iter->second;
}
else{
check.front() = tolower(check.front());
if(check.size() > 2){
stemObj.Stem::start(check);
}
if(Parse_File::wordCount.count(check) != 0)
Parse_File::wordCount.at(check) += iter->second;
else
Parse_File::wordCount[check] = iter->second;
}
}
}
void Parse_File::addToAmbMap(string& word){
if(Parse_File::ambiguousCap.count(word) != 0){
Parse_File::ambiguousCap.at(word) += 1;
}
else{
Parse_File::ambiguousCap[word] = 1;
}
}
void Parse_File::addToMap(string& word){
if(Parse_File::wordCount.count(word) != 0){
Parse_File::wordCount.at(word) += 1;
}
else{
Parse_File::wordCount[word] = 1;
}
}
void Parse_File::split(string& s){
while(s.size() > 0){
if(isspace(s.front()))
s.erase(0,1);
char firstChar = s.at(0);
if(isalpha(firstChar) || firstChar == apos || isdigit(firstChar) || firstChar == apos){
s = Parse_File::isAlphaNum(s);
}
else if(firstChar == '.' || firstChar == ','){
if(checkDigitAfterPunct(s, 0)){
endOfSent = false;
s = isAlphaNum(s);
}
else{
s = Parse_File::isPunct(s);
}
}
else{
s = Parse_File::isPunct(s);
}
}
}
string Parse_File::isAlphaNum(string &s){
++numOfWords;
bool stem_var = true;
string word = "";
char firstChar = s.at(0);
if(endOfSent && isupper(firstChar)){ // need acronym check, digit in word check
stem_var = false;
possiblyAddPlus = true;
}
if(isupper(firstChar) || isdigit(firstChar)){
stem_var = false;
}
endOfSent = false;
word += firstChar;
for (unsigned int i = 1; i < s.size(); ++i){ // check for more alphabetic chars
char nextChar = s[i];
if(isdigit(nextChar) || isupper(nextChar)){
stem_var = false;
possiblyAddPlus = false;
}
if (!ispunct(nextChar) || nextChar == apos){
word += nextChar;
}
else if (nextChar == '.' || nextChar == ','){
if(Parse_File::checkDigitAfterPunct(s, i)){
stem_var = false;
word += nextChar;
possiblyAddPlus = false;
}
else{
if(possiblyAddPlus == true){
numOfLetters += word.size(); //NOTE
Parse_File::addToAmbMap(word); //////////////
possiblyAddPlus = false;
stem_var = false;
}
else if(!stem_var || (word.size() < 3)){
numOfLetters += word.size(); //NOTE
Parse_File::addToMap(word);
}
else{
numOfLetters += word.size(); //NOTE
stemObj.Stem::start(word);
Parse_File::addToMap(word);
}
return s.substr(i, s.size());
}
}
else{
if(possiblyAddPlus == true){
numOfLetters += word.size(); //NOTE
Parse_File::addToAmbMap(word); //////////////
possiblyAddPlus = false;
stem_var = false;
}
else if(!stem_var || (word.size() < 3)){
numOfLetters += word.size(); //NOTE
Parse_File::addToMap(word);
}
else{
numOfLetters += word.size(); //NOTE
stemObj.Stem::start(word); ////////////change
Parse_File::addToMap(word);
}
return s.substr(i, s.size());
}
}
if(possiblyAddPlus == true){
numOfLetters += word.size(); //NOTE
Parse_File::addToAmbMap(word); //////////
possiblyAddPlus = false;
stem_var = false;
}
else if(!stem_var || (word.size() < 3)){
numOfLetters += word.size(); //NOTE
Parse_File::addToMap(word);
}
else{
numOfLetters += word.size(); //NOTE
stemObj.Stem::start(word);
Parse_File::addToMap(word);
}
return "";
}
bool Parse_File::checkDigitAfterPunct(string &s, unsigned int index){
if(index < (s.size() - 1)){
char nextChar = s.at(index+1);
if(index != 0){
char prevChar = s.at(index-1);
if(isdigit(prevChar) && isdigit(nextChar))
return true;
else if (isalpha(prevChar) && isdigit(nextChar) && s.at(index) == '.'){
s.insert((index+1), " ");
return false;
}
}
else if ( (index == 0) && (s.at(index) == '.') ){
if(isdigit(nextChar))
return true;
}
}
if (s.at(index) == '.')
Parse_File::endOfSent = true;
return false;
}
string Parse_File::isPunct(string &s){
Parse_File::endOfSent = false;
string word = "";
for (unsigned int i = 0; i < s.size(); ++i){
char nextChar = s.at(i);
if (nextChar == '.' || nextChar == '!' || nextChar == '?'){
if(endOfSent == false){
++numOfSentences; //NOTE
}
word += nextChar;
Parse_File::endOfSent = true;
}
else if (ispunct(nextChar) && nextChar != apos){
word += nextChar;
}
else{
//Parse_File::addToMap(word); ////////////////////////////////////////
return s.substr(i, s.size());
}
}
// Parse_File::addToMap(word); ////////////////////////////////////////
return "";
}