-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearchInvertedIsam.c
293 lines (253 loc) · 7.72 KB
/
searchInvertedIsam.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
/* -*- 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: 09-November-2008
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include "posting.h"
#include "words.h"
#include "eprintf.h"
#include "document.h"
#include "fileutils.h"
#include "settings.h"
typedef struct Keyword Keyword;
struct Keyword{
char *keyword;
Keyword *next;
};
Keyword *insert(Keyword *keyp, Keyword *newkey){
if (keyp == NULL){
return newkey;
}else{
Keyword *k = keyp;
for(; k != NULL; k = k->next){
if (k->next == NULL){
k->next = newkey;
break;
}
}
}
return keyp;
}
Keyword *new_keyword(char *str){
Keyword *kw;
int ln = strlen(str) + 1;
int i;
kw = malloc(sizeof(*kw));
if (kw == NULL){
fprintf(stderr,"Could not get memory.\n");
exit(1);
}
kw->keyword = calloc(ln, sizeof(char));
if (kw->keyword == NULL){
fprintf(stderr,"Could not get memory.\n");
exit(1);
}
for (i = 0; i < ln; i++)
kw->keyword[i] = tolower(str[i]);
kw->next = NULL;
return kw;
}
long int midpoint(long int a, long int b){
long int m = floor ( (b + a) / 2 );
return m;
}
/* Return true if the keyword was found. wr will be set to the found
wordRec */
int search(FILE *fp, char *keyword, IndexWordData *wr){
int rs = sizeof(*wr); /* record size */
long int fs; /* File size */
long int nr; /* number of records in the file */
long int start, stop;
int oldmp, mp;
/* get the file size */
fseek(fp,0,SEEK_END);
fs = ftell(fp);
rewind(fp);
/* get the number of records in the file */
nr = floor(fs / rs);
start = 0;
stop = nr;
mp = -1;
do{
int nrr; /* number of records read */
int cmp;
oldmp = mp;
/* get the record in the middle of the start and stop position */
mp = midpoint(start, stop);
if (!get_index_recnum(fp,mp,wr)){
fprintf(stderr,"Could not get recnum %d\n",mp);
exit(1);
}
cmp = strcmp(keyword, wr->word);
/* if the keyword is less then the one read */
/* change stop position continue */
/* if the keyword is greater then the one read */
/* change start position */
/* if the keyword matches the record */
/* stop return match */
if (cmp < 0){
stop = mp;
}
else if (cmp > 0){
start = mp;
}
else {
return 1;
}
/* if start and stop are equal */
/* quit no match found */
}while (mp != oldmp);
return 0;
}
int search_keywords(char *filename, Keyword *keywords, IndexWordData **iwd){
IndexWordData wr;
FILE *fp;
int i;
fp = open_binary_file(filename, FM_READ);
i = 0;
for(;keywords != NULL; keywords = keywords->next){
if (search(fp, keywords->keyword, &wr)){
int n = wr.num_docs;
IndexWordData *p = (*iwd+i);
memcpy(p,&wr,sizeof(wr));
/* printf("Found %s with %d document%s\n",
* p->word, p->num_docs,
* (n == 1) ? "." : "s.");
*/
i++;
}else{
printf("%s was not found.\n",keywords->keyword);
}
}
fclose(fp);
return i;
}
int has_exact_phrase(char *filename, Keyword *kp, int nkeys){
char buf[MAX_WORD_LEN];
FILE *fp;
int i;
int word_to_check = 0;
Keyword *head;
head = kp;
if ((fp = fopen(filename,"r")) == NULL){
fprintf(stderr,"%s: Could not open file %s\n",
progname, filename);
return 0;
}
for(i = 0;!feof(fp);){
char c = fgetc(fp);
if (isalnum(c)){
buf[i++] = tolower(c);
}
else{
buf[i] = '\0';
i = 0;
TRY_AGAIN:
if (strcmp(buf,kp->keyword) == 0){
kp = kp->next;
word_to_check++;
} else{
if (word_to_check > 0){
kp = head;
word_to_check = 0;
goto TRY_AGAIN;
}
}
if (word_to_check >= nkeys){
fclose(fp);
return 1;
}
}
if (i == MAX_WORD_LEN){
/* fprintf(stderr,"%s: Word is to long %s skipping\n", progname(), buf); */
kp = head;
word_to_check = 0;
i = 0;
buf[i] = '\0';
}
}
fclose(fp);
return 0;
}
int main(int argc, char **argv){
setprogname(argv[0]);
if (argc <= 2){
fprintf(stderr, "Usage:\n%s filename [-e] keywords\n",progname());
exit(1);
}
else{
int i;
char *filename = argv[1];
int exact_phrase = (strcmp(argv[2], "-e") == 0);
int keysIgnore = exact_phrase ? 3 : 2;
int nkey = argc - keysIgnore;
Keyword *kp;
IndexWordData *iwd;
Settings settings;
int found;
/* printf("Exact Phrase %s\nargv[2] = %s\n", exact_phrase ? "YES" : "NO", argv[2]); */
iwd = emalloc(sizeof(*iwd) * nkey);
set_output_filenames(&settings,filename, FM_READ);
kp = NULL;
for(i = 0; i < nkey; i++){
kp = insert(kp,new_keyword(argv[i+keysIgnore]));
}
#if 0
{
Keyword *k = kp;
for(; k != NULL; k = k->next)
printf("%s\n",k->keyword);
exit(1);
}
#endif
found = search_keywords(settings.index_file_name, kp, &iwd);
/* Display the results with the most frequent occuring first. */
{
FILE *pf;
Posting *p;
p = NULL;
pf = open_binary_file(settings.posting_file_name, FM_READ);
for(i = 0; i < found; i++){
/* printf("Word: %.50s num_docs: %.6d offset: %.8x\n", */
/* iwd->word, iwd->num_docs, iwd->posting_offset); */
append_unique_posting_list(pf, &p, iwd->num_docs, iwd->posting_offset, !exact_phrase);
iwd++;
}
p = sort_posting_list(p, posting_length(p));
for (; p != NULL; p = p->next){
Document doc;
if (exact_phrase){
if (p->data.frequency == found) {
/* run the lexer on this document */
/* if we find the exact phrase then print it out */
get_document(settings.dm, &doc, p->data.docid);
if (has_exact_phrase(doc.data, kp, found)){
printf("Frequency %.8x Document %s\n",
p->data.frequency, doc.data);
}
}
}else{
get_document(settings.dm, &doc, p->data.docid);
printf("Frequency %.8x Document %s\n",
p->data.frequency, doc.data);
}
}
freeall(p);
fclose(pf);
}
}
return 0;
}