-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathReadFile.cs
More file actions
242 lines (231 loc) · 10.6 KB
/
ReadFile.cs
File metadata and controls
242 lines (231 loc) · 10.6 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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace IRProject
{
/// <summary>
//this department store read documents.The department knows to receive a folder path which at all files in.
/// </summary>
public class ReadFile
{
int counter = 0;
string docspath;
Parse parser;
List<Tuple<string, int>> docText;
List<string> languages = new List<string>();
/// <summary>
/// constractor - iterates all files in the given corpus path and send each one to ReadThisFile method.
/// </summary>
public ReadFile()
{
string path = IRSettings.Default.Corpus;
docText = new List<Tuple<string, int>>();
docspath = path;
string[] files = Directory.GetFiles(path);//get all files in the folder
parser = new Parse(path + "\\stop_words.txt");
foreach (string DocumentPath in files) //iterate all documents
{
if (!DocumentPath.Contains("stop_words"))
ReadThisFile(DocumentPath);
}
parser.SaveLastTerms();
}
/// <summary>
/// returns the number of documents
/// </summary>
/// <returns>Number Of Documents</returns>
public int GetNumberOfDocuments()
{
return parser.l_documents.Count;
}
/// <summary>
/// returns number of uniqe terms from the parser
/// </summary>
/// <returns>Num Of Uniqe Terms</returns>
public int GetNumOfUniqeTerms()
{
return parser.GetNumOfUniqeTerms();
}
/// <summary>
/// this method gets a document path and read it line by line and catalogue to document categorys
/// </summary>
/// <param name="DocumentPath">the document full path</param>
private void ReadThisFile(string DocumentPath)
{
counter++;
string docNo, docDate, docTitle, docArtType, docLang; //documents details
string tempText;
char[] spase = { ' ' }; //for split function
bool inText = false;
if (File.Exists(DocumentPath))
{
StreamReader sr = new StreamReader(DocumentPath);
emptyStrings:
docNo = string.Empty;
docDate = string.Empty;
docTitle = string.Empty;
docText.Clear();//list of text and it wight
docArtType = string.Empty;
docLang = string.Empty;
inText = false;
tempText = string.Empty;
if (sr.EndOfStream) return;
string line = sr.ReadLine().Trim();
while (line != null)
{
//split line to check the tag
string[] SplitLine = line.Split(spase, StringSplitOptions.RemoveEmptyEntries);
if (SplitLine.Length < 1)
{
if (sr.EndOfStream) return;
line = sr.ReadLine().Trim();
continue;
}
switch (SplitLine[0])
{
case "<DOCNO>":
docNo = SplitLine[1].Trim();
line = sr.ReadLine().Trim();
break;
case "<DATE1>":
for (int s = 1; s < SplitLine.Length - 1; s++)
{
docDate += SplitLine[s] + " ";
}
line = sr.ReadLine().Trim();
break;
case "<H1>":
case "<H2>":
case "<H3>":
case "<H4>":
case "<H5>":
case "<H6>":
case "<H7>":
case "<H8>":
if (SplitLine[1] == "<TI>")
goto case "<TI>";
if (line != string.Empty)
{
if (tempText != string.Empty)
{
docText.Add(new Tuple<string, int>(tempText.ToLower().Trim(), 0));
tempText = string.Empty;
}
string wight = line.Trim().Substring(2, 1);
line = line.Replace("<H" + wight + ">", "");
while (!line.EndsWith("</H" + wight + ">"))
{
tempText += line.Trim() + " ";
line = sr.ReadLine().Trim();
}
line = line.Replace("</H" + wight + ">", "");
tempText += line.Trim() + " ";
docText.Add(new Tuple<string, int>(tempText.ToLower().Trim(), Convert.ToInt32(wight)));
tempText = string.Empty;
line = sr.ReadLine().Trim();
}
break;
case "<TI>":
line = line.Replace("<H3>", "").Replace("<TI>","");
while (!line.EndsWith("</H3>"))
{
docTitle += line.Trim() + " ";
line = sr.ReadLine().Trim();
}
line = line.Replace("</H3>", "").Replace("</TI>", "");
docTitle += line.Trim() + " ";
docText.Add(new Tuple<string, int>(docTitle.ToLower().Trim(), 9));
line = sr.ReadLine().Trim();
break;
case "Language:":
char[] a = { ' ', '>' };
docLang = (line.Split(a, StringSplitOptions.RemoveEmptyEntries)[3]).Replace(",","").ToLower();
string capitalWord = docLang.Substring(0, 1).ToUpper();
docLang = capitalWord+docLang.Substring(1);
if (docLang == "Enlgish"||docLang=="Eng")
docLang = "English";
if (docLang == "Arabi")
docLang = "Arabic";
if (docLang == "Span")
docLang = "Spanish";
if (docLang == "Slovene")
docLang = "Slovenian";
line = sr.ReadLine().Trim();
break;
case "Article":
if (SplitLine.Length > 1 && SplitLine[1].StartsWith("Type:"))
docArtType = line.Split(':')[1];
else goto default;
line = sr.ReadLine().Trim();
break;
case "<TEXT>":
inText = true;
line = sr.ReadLine().Trim();
break;
case "<F":
if (inText)
{
SplitLine = line.Split(spase, StringSplitOptions.RemoveEmptyEntries);
for (int i = 2; i < SplitLine.Length; i++)
{
if (SplitLine[i] == "</F>") continue;
tempText += SplitLine[i] + " ";
}
}
line = sr.ReadLine().Trim();
break;
case "[Text]":
line = line.Replace("[Text]", "");
while (line != "</TEXT>")
{
if (line.StartsWith("<H"))
{
docText.Add(new Tuple<string, int>(tempText.ToLower().Trim(), 0));
tempText = string.Empty;
string wight = line.Trim().Substring(2, 1);
line = line.Replace("<H" + wight + ">", "");
while (!line.EndsWith("</H" + wight + ">"))
{
tempText += line.Trim() + " ";
line = sr.ReadLine().Trim();
}
line = line.Replace("</H" + wight + ">", "");
tempText += line.Trim() + " ";
docText.Add(new Tuple<string, int>(tempText.ToLower().Trim(), Convert.ToInt32(wight)));
tempText = string.Empty;
}
else if (line != string.Empty)
tempText += line.Trim() + " ";
line = sr.ReadLine().Trim();
}
break;
case "</TEXT>":
if (sr.EndOfStream) return;
line = sr.ReadLine().Trim();
break;
case "</DOC>":
if (tempText != string.Empty)
docText.Add(new Tuple<string, int>(tempText.ToLower().Trim(), 0));
Document doc=new Document(docNo, docDate, docLang);
parser.ParseDoc(docText, doc);
goto emptyStrings;
default:
if (inText)
{
if (line != string.Empty)
tempText += line.Trim() + " ";
}
line = sr.ReadLine().Trim();
break;
}
}
sr.Close();
}
}
}
}