-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuildInvertedIsam.c
313 lines (282 loc) · 9.29 KB
/
buildInvertedIsam.c
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil; -*-
*
* Copyright (c) 2008 Jeremy English <[email protected]>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*
* Created: 07-November-2008
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <stdint.h>
#include "stop.h"
#include "words.h"
#include "eprintf.h"
#include "posting.h"
#include "document.h"
#include "fileutils.h"
#include "settings.h"
typedef enum ParamType ParamType;
enum ParamType { DIRECTORY, OUTPUT_FILE, FILE_EXTENSION, STOP_LIST, VERBOSE};
typedef struct Param Param;
struct Param {
ParamType pt;
char *value;
Param *next;
};
void new_param_node(Param **params, Param **p, ParamType pt){
if (*params == NULL){
*params = emalloc(sizeof(Param));
*p = *params;
}
else{
(*p)->next = emalloc(sizeof(Param));
*p = (*p)->next;
(*p)->next = NULL;
}
(*p)->pt = pt;
(*p)->value = NULL;
}
void usage(){
fprintf(stderr,"Usage:\n%s -d directory -o output [-e extension] [-s stop list file] [-v]\n", progname());
exit(1);
}
/* Parse the command line arguments */
Param* parse_params(int argc, char **argv){
Param *params;
Param *p;
int i, getval;
params = NULL;
getval = 0;
/* XXX: I'm sure there is a library that will do all of this for
me. I'm just don't fill like looking it up right now. */
for(i = 1; i < argc; i++){
if (argv[i][0] == '-'){
if (getval){
fprintf(stderr,
"%s: A value was expected after the last flag.\n",
progname());
exit(1);
}
else if (strcmp(argv[i],"-d") == 0){
/* We need to scan a directory */
getval = 1;
new_param_node(¶ms, &p, DIRECTORY);
}
else if (strcmp(argv[i],"-o") == 0){
/* We need to scan a directory */
getval = 1;
new_param_node(¶ms, &p, OUTPUT_FILE);
}
else if (strcmp(argv[i],"-s") == 0){
/* We need to scan a directory */
getval = 1;
new_param_node(¶ms, &p, STOP_LIST);
}
else if (strcmp(argv[i],"-e") == 0){
/* We need to look for file of this extension */
getval = 1;
new_param_node(¶ms, &p, FILE_EXTENSION);
}
else if (strcmp(argv[i], "-v") == 0){
/* No value comes after verbose */
new_param_node(¶ms, &p, VERBOSE);
}
else {
/* We don't know what you want to do */
fprintf(stderr,"%s: Unknown command %s\n",
progname(),argv[i]);
exit(1);
}
}
else{
if (getval){
/* This is the value part of the -d or -e command */
getval = 0;
if (p == NULL){
fprintf(stderr, "%s: NULL Parameter node!", argv[i]);
exit(1);
}
else{
int n = strlen(argv[i]) + 1;
p->value = calloc(sizeof(char), n);
strncpy(p->value,argv[i],n);
}
}
else{
usage();
}
}
}
if (getval){
fprintf(stderr,
"%s: A value was expected after the last flag.\n",
progname());
exit(1);
}
#if 0 /* XXX: Debug the parameter parser. */
for(p = params; p != NULL; p = p->next){
printf("Type: %d Value %s\n",p->pt, p->value);
}
exit(1);
#endif
return params;
}
Param *find_param(Param *params, ParamType pt){
for (; params != NULL && params->pt != pt; params = params->next)
;
return params;
}
int verbose_messages(Param *params){
return (find_param(params, VERBOSE) != NULL);
}
int read_file(Settings *settings, IndexWord **treep, char *filename){
char buf[MAX_WORD_LEN];
FILE *fp;
int i;
if ((fp = fopen(filename,"r")) == NULL){
fprintf(stderr,"%s: Could not open file %s\n",
progname, filename);
return 0;
}
if (settings->verbose){
printf("Reading file %s\n",filename);
}
for(i = 0;!feof(fp);){
char c = fgetc(fp);
if (isalnum(c)){
buf[i++] = tolower(c);
}
else{
buf[i] = '\0';
i = 0;
if (strlen(buf) > 1 && ! is_stop_word(settings->stop_words, buf)){
*treep = insert_word(*treep, new_index_word(buf), settings->dm->doc_id);
}
}
if (i == MAX_WORD_LEN){
fprintf(stderr,"%s: Word is to long %s skipping\n", progname(), buf);
i = 0;
buf[i] = '\0';
}
}
fclose(fp);
/* write the document out to the document file */
write_document(settings->dm, filename);
return 1;
}
int main(int argc, char **argv){
Param *params;
Param *directory;
Param *output;
Param *stop;
Param *extp;
StopWord *stopword;
Settings settings;
struct stat st;
IndexWord *treep;
setprogname(argv[0]);
if (argc == 1) usage();
params = parse_params(argc,argv);
directory = find_param(params,DIRECTORY);
output = find_param(params,OUTPUT_FILE);
stop = find_param(params,STOP_LIST);
settings.verbose = verbose_messages(params);
extp = find_param(params,FILE_EXTENSION);
settings.stop_words = NULL;
treep = NULL;
if (directory == NULL){
fprintf(stderr,"%s: Could not find a directory.\n", progname());
usage();
}else{
if (settings.verbose){
printf("We are going to search directory: %s\n",directory->value);
}
}
if (output == NULL){
fprintf(stderr,"%s: Could not find an output name.\n", progname());
usage();
}else{
set_output_filenames(&settings, output->value, FM_WRITE);
if (settings.verbose){
printf("We are going to use output name: %s\n",output->value);
printf("Document filename: %s\n",settings.dm->filename);
printf("Posting filename: %s\n",settings.posting_file_name);
printf("Index filename: %s\n",settings.index_file_name);
}
}
if (stop != NULL){
settings.stop_words = create_stop_tree(stop->value);
}
if(!stat (directory->value, &st) &&
S_ISDIR(st.st_mode)){
DIR *dir;
struct dirent *dentry;
dir = opendir(directory->value);
if (! dir){
fprintf(stderr, "%s: Could not open directory\n", progname());
exit(1);
}
if (settings.verbose){
printf("Reading Directory %s\n", directory->value);
}
while((dentry = readdir(dir))){
char *fullpath;
int pn = strlen(directory->value);
int dn = strlen(dentry->d_name);
int fn = pn + dn + 1;
fullpath = calloc(sizeof(char), fn+1);
if (fullpath == NULL){
fprintf(stderr,"%s: output of memory.\n",progname());
exit(1);
}
strncpy(fullpath, directory->value, pn + 1);
if (fullpath[pn] != '/' && directory->value[0] != '/'){
fullpath[pn] = '/';
}
if (!strncat(fullpath,dentry->d_name,fn-strlen(fullpath))){
fprintf(stderr,"%s: Could not build complete filename.\n", progname());
exit(1);
}
if (extp != NULL){
/* Read File for a certain extension */
int n = strlen(fullpath);
int en = strlen(extp->value);
if (n > en && !strcasecmp(fullpath + n - en, extp->value)){
if (!read_file(&settings, &treep, fullpath)){
fprintf(stderr,"%s: Could not read file.", progname());
}
}
}
else{
if (!read_file(&settings, &treep, fullpath)){
fprintf(stderr,"%s: Could not read file.", progname());
}
}
free(fullpath);
}
}
else {
fprintf(stderr,"%s: Unknown directory %s\n",
progname(), directory->value);
}
close_document_manager(settings.dm);
free(settings.dm);
settings.dm = NULL;
if (settings.verbose)
printf("Writing index and posting files\n");
write_index_file(treep, settings.index_file_name, settings.posting_file_name);
if (settings.verbose)
printf("Finished writing all inverted files\n");
return 1;
}