-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainCube.c
executable file
·261 lines (231 loc) · 7.23 KB
/
mainCube.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <math.h>
#include "Vector/vector.h"
#include "./hashTable/hashTable.h"
#include "Hypercube/hypercube.h"
#include "./parsing/parsingCube.h"
#include "./hashTable/hashTableList/hashTableList.h"
#define W_DIVIDER 80
int d;
int new_dimension;
int m;
int probes;
int w;
int wValueCalculation(List list,int numberOfVectorsInFile){
long double sumDist = 0.0;
int count=0;
double persentageToCheck;
if(numberOfVectorsInFile<=1000){
persentageToCheck = 0.1;
}else if(numberOfVectorsInFile<=10000){
persentageToCheck = 0.001;
}else if (numberOfVectorsInFile<=100000){
persentageToCheck = 0.0001;
}else{
persentageToCheck = 0.000001;
}
int stopBound = persentageToCheck*numberOfVectorsInFile*numberOfVectorsInFile;
while(list!=NULL){
List nested = list;
while(nested!=NULL){
if(count>stopBound){
return floor(sumDist/count);
}
sumDist += distance_metric(getVector(list),getVector(nested),d);
count++;
nested = getNext(nested);
}
list=getNext(list);
}
return floor(sumDist/count);
}
void printOptions(){
printf("_________________Options____________________\n\n");
printf("1. /repeat <new_query_file> <output file>\n\n");
printf("2. /exit\n\n");
printf("_____________________________________\n\n");
}
int main(int argc, char *argv[]) {
srand(time(NULL));
int option;
char str[200];
char inputFile[100];
int inputflag=0;
char queryFile[100];
int queryflag=0;
char outputFile[100];
int outputflag=0;
new_dimension=14;
int m=10;
int n=1;
int r=10000;
int probes=2;
while((option = getopt(argc, argv, "i:q:k:M:p:o:N:R:")) != -1){
switch(option){
case 'i':
inputflag++;
strcpy(inputFile,optarg);
printf("Given input File : %s\n", inputFile);
break;
case 'q':
queryflag++;
strcpy(queryFile,optarg);
printf("Given query File : %s\n", queryFile);
break;
case 'k':
new_dimension=atoi(optarg);
printf("k : %d\n", new_dimension);
break;
case 'M':
m=atoi(optarg);
printf("M : %d\n", m);
break;
case 'p':
if(strcmp(argv[optind-1],"-probes")==0){
probes=atoi(argv[optind]);
printf("probes : %d\n", probes);
}
break;
case 'o':
outputflag++;
strcpy(outputFile,optarg);
printf("Given output File : %s\n", outputFile);
break;
case 'N':
n=atoi(optarg);
printf("number of nearest neighbors: %d\n", n);
break;
case 'R':
r=atoi(optarg);
printf("Radius : %d\n", r);
break;
case ':':
printf("option needs a value\n");
break;
default: /* '?' */
fprintf(stderr, "Usage: %s –i <input file> –q <query file> –k <int> -M <int> -probes <int> -ο <output file> -Ν <number of nearest> -R <radius>\n",argv[0]);
exit(EXIT_FAILURE);
}
}
if(!inputflag){
printf(">Input file name: ");
fflush(stdin); // clear stdin buffer
if (fgets(str, sizeof(char)*200, stdin) == NULL) { // read a command
perror("Error reading string with fgets\n");
exit(1);
}
sscanf(str,"%s\n",inputFile);
printf("Given input File : %s\n", inputFile);
}
if(!queryflag){
printf(">Query file name: ");
fflush(stdin); // clear stdin buffer
if (fgets(str, sizeof(char)*200, stdin) == NULL) { // read a command
perror("Error reading string with fgets\n");
exit(1);
}
sscanf(str,"%s\n",queryFile);
printf("Given query File : %s\n", queryFile);
}
if(!outputflag){
printf(">Output file name: ");
fflush(stdin); // clear stdin buffer
if (fgets(str, sizeof(char)*200, stdin) == NULL) { // read a command
perror("Error reading string with fgets\n");
exit(1);
}
sscanf(str,"%s\n",outputFile);
printf("Given output File : %s\n", outputFile);
}
if(new_dimension>25){
printf("You chose a big value for k (d') and the system may not be capable of allocating all the memory needed by the hypecube\n");
printf("Do you wish to continue with k=%d ? (Press \"y\" to continue or \"n\" to change the value of k)\n",new_dimension);
while(1){
fflush(stdin); // clear stdin buffer
if (fgets(str, sizeof(char)*200, stdin) == NULL) { // read a command
perror("Error reading string with fgets\n");
exit(1);
}
char ans[100];
sscanf(str,"%s\n",ans);
if(strcmp(ans,"y")==0){
break;
}else if(strcmp(ans,"n")==0){
printf("Give new value for k: ");
fflush(stdin); // clear stdin buffer
if (fgets(str, sizeof(char)*200, stdin) == NULL) { // read a command
perror("Error reading string with fgets\n");
exit(1);
}
sscanf(str,"%s\n",ans);
new_dimension = atoi(ans);
break;
}else{
printf("Wrong input! Press \"y\" to continue or \"n\" to change the value of k\n");
}
}
}
List list;
int repeat=1;
char command[200];
clock_t begin = clock();
d = findDim(inputFile);
printf("DIMENSION = %d\n",d);
list = initializeList();
int numberOfVectorsInFile = 0;
readFile(inputFile,&list,&numberOfVectorsInFile);
clock_t end = clock();
double time_spent = (double)(end - begin) / CLOCKS_PER_SEC;
printf("Parsed input file in : %f seconds\n",time_spent);
printf("Number of vectors in input file: %d\n",numberOfVectorsInFile);
printf("Finding optimal value of w based on the input file\n");
begin = clock();
w = wValueCalculation(list,numberOfVectorsInFile);
w /= W_DIVIDER;
end = clock();
time_spent = (double)(end - begin) / CLOCKS_PER_SEC;
printf("Found value of w in %f seconds, w = %d\n",time_spent,w );
HyperCube hc;
begin = clock();
hc = initializeHyperCube();
insertFromListToHyperCube(list,hc);
end = clock();
time_spent = (double)(end - begin) / CLOCKS_PER_SEC;
printf("Created HyperCube in : %f seconds\n",time_spent);
while(1){
if(repeat){
readQueryFile(queryFile,outputFile,hc,list,n,r,probes,m);
}
repeat=0;
printOptions(); // just printing the commands options for the user
printf("\n");
printf(">Enter a command: ");
fflush(stdin); // clear stdin buffer
if (fgets(str, sizeof(char)*200, stdin) == NULL) { // read a command
perror("Error reading string with fgets\n");
exit(1);
}
else if(strstr(str, "/repeat") != NULL) {
repeat=1;
sscanf(str,"%s %s %s\n",command,queryFile,outputFile);
printf("query File: %s\n",queryFile);
printf("output File: %s\n",outputFile);
continue;
}
else if(strcmp(str,"/exit\n")==0){
break;
}
else{
printf("\n\n --- Wrong command ! Please, try again. --- \n\n");
printOptions(); // just printing the commands options for the user
continue;
}
}
deleteHyperCube(hc);
listDelete(list,0);
return 0;
}