-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmainCluster.c
executable file
·223 lines (196 loc) · 6.02 KB
/
mainCluster.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include "Vector/vector.h"
#include "./hashTable/hashTable.h"
#include "./hashTable/hashTableList/hashTableList.h"
#include "Hypercube/hypercube.h"
#include "./parsing/parsingCluster.h"
#include "./Clustering/clustering.h"
#define W_VALUE 4
int d;
// int k;
int new_dimension;
int m;
int probes;
int w;
int numOfVecs;
int hashTableSize;
int complete;
int k_LSH;
void printOptions(){
printf("_________________Options____________________\n\n");
printf("1. /repeat <new_input_file> <configuration file> <method: Classic OR LSH or Hypercube> <output file> \n\n");
printf("2. /exit\n\n");
printf("_____________________________________\n\n");
}
int main(int argc, char *argv[]) {
srand(time(NULL));
int option;
complete=0;
char str[200];
char inputFile[200];
int inputflag=0;
char confFile[200];
int confflag=0;
char outputFile[200];
int outputflag=0;
char method[200];
int methodflag=0;
while((option = getopt(argc, argv, "i:c:o:m:")) != -1){
switch(option){
case 'i':
inputflag++;
strcpy(inputFile,optarg);
printf("Given input File : %s\n", inputFile);
break;
case 'c':
if(strcmp(argv[optind-1],"-complete")==0){
printf("Complete option ON.\n");
complete=1;
}
else{
confflag++;
strcpy(confFile,optarg);
printf("Given configuration File : %s\n", confFile);
}
break;
case 'm':
methodflag++;
strcpy(method,optarg);
printf("Method: %s\n", method);
break;
case 'o':
outputflag++;
strcpy(outputFile,optarg);
printf("Given output File : %s\n", outputFile);
break;
case ':':
printf("option needs a value\n");
break;
default: /* '?' */
fprintf(stderr, "Usage: %s –i <input file> –c <configuration file> -o <output file> -complete <optional> -m <method: Classic OR LSH or Hypercube>\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(!confflag){
printf(">Conf 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",confFile);
printf("Given configuration File : %s\n", confFile);
}
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(!methodflag){
printf(">Method's 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",method);
printf("Given method's name: %s\n", method);
}
FILE* fptr;
List list;
int repeat=1;
while(1){
if(repeat){
clock_t begin = clock();
d = findDim(inputFile);
printf("DIMENSION = %d\n",d);
int numOfClusters=-100,l=3,mHyper=10,probes=2;
new_dimension=3;
k_LSH=4;
w=W_VALUE;
readConfFile(confFile,&numOfClusters,&l,&mHyper,&probes);
while(numOfClusters<2){ // clusters number should be >=2
if(numOfClusters!=-100)
printf("\n(Clusters number should be >=2)\n");
printf("\n>Give number of clusters: ");
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);
}
numOfClusters=atoi(str);
printf("numOfClusters : %d\n\n", numOfClusters);
}
list = initializeList();
readFile(inputFile,&list,&numOfVecs);
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",numOfVecs);
fptr = fopen(outputFile, "w");
if(fptr == NULL){
/* File not created hence exit */
printf("Unable to create file.\n");
exit(EXIT_FAILURE);
}
clustering(list,fptr,method,numOfClusters,l,mHyper,probes);
}
repeat=0;
printOptions(); // just printing the commands options for the user
char command[200];
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;
if(strcmp(method,"LSH")==0 || strcmp(method,"Hypercube")==0)
listDelete(list,0);
else
listDelete(list,1);
sscanf(str,"%s %s %s %s %s\n",command,inputFile,confFile,method,outputFile);
printf("FILE: %s\n",inputFile);
printf("Given configuration File : %s\n", confFile);
printf("Given method : %s\n", method);
printf("Given output File : %s\n", outputFile);
fclose(fptr);
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;
}
}
if(strcmp(method,"LSH")==0 || strcmp(method,"Hypercube")==0)
listDelete(list,0);
else
listDelete(list,1);
fclose(fptr);
return 0;
}