-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.c
146 lines (117 loc) · 4 KB
/
main.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
/**
*
* @author Bastien Philip (ebatsin)
* @author Gaël Foppolo (gaelfoppolo)
*
*/
#include <getopt.h>
#include <unistd.h>
#include "parser/parsers.h"
#include "app/core.h"
#include "app/output.h"
#define PROG_NAME "learning"
static int flagHelp = 0, flagNoCounterExample = 0, flagNoGeneralization = 0, flagExpandRelation = 0, flagVerbose = 0, flagNoColor = 0;
int main(int argc, char **argv) {
int flag;
const char* filename = NULL;
// retrieve the options
while(1) {
static struct option long_options[] = {
{"help", no_argument, &flagHelp, 1},
{"no-counter-examples", no_argument, &flagNoCounterExample, 1},
{"no-generalization", no_argument, &flagNoGeneralization, 1},
{"expand-relations", no_argument, &flagExpandRelation, 1},
{"no-color", no_argument, &flagNoColor, 1},
{0, 0, 0, 0}
};
/* getopt_long stores the option index here. */
int option_index = 0;
flag = getopt_long (argc, argv, "vh", long_options, &option_index);
/* Detect the end of the options. */
if (flag == -1) {
break;
}
switch(flag) {
case 0:
// all long option set flags, they will be checked after
break;
case 'v':
// each occurence of a v add a verbosity level
++flagVerbose;
break;
case 'h':
flagHelp = 1;
break;
case '?':
/* getopt_long already printed an error message. */
break;
default:
abort ();
}
}
if (optind < argc) {
filename = argv[optind];
}
else if(!flagHelp) {
output(LERROR, "An example file must be passed as an argument. Re run with --help for more informations.\n");
return 1;
}
else {
output(L0, PROG_NAME " is a programs that aims to find similarities in objects of same type.\n");
output(L0, "Usage: " PROG_NAME " --help\n");
output(L0, " " PROG_NAME " <example-file-path>\n\n");
output(L0, "--help Print the options that can be given to the program\n");
output(L0, "--expand-relations On solution objects that contains relations, print the object linked instead of writing its name\n");
output(L0, "--no-generalization Skip the generalization step of the solutions generation.\n");
output(L0, "--no-counter-examples Prevent the use of counter-exemples to reduce the solutions.\n");
output(L0, "--no-color Disable the colored output.\n");
output(L0, "-v Set the verbosity level. 4 levels are available (up to -vvvv)\n");
return 0;
}
setOutputImportance(flagVerbose);
// if the user ask for no color or the output streams (whether stdout or stderr) aren't terminals, remove colors
if(flagNoColor || !isatty(fileno(stdout)) || !isatty(fileno(stderr))) {
enableColors(0);
}
size_t includePosition;
char* c = getIncludeFile(filename, &includePosition);
if(c == NULL) {
output(LERROR, "The loading of the configuration file failed. The configuration must be linked in the example file (example file loaded: %s).\n", filename);
}
else {
output(L1, "%sLoading configuration file: %s%s\n", SBDEFAULT, c, SDEFAULT);
Model* m = loadConfigFile(c);
if(m == NULL) {
output(LERROR, "Configuration file parsing: failed\n");
free(c);
return 1;
}
output(L1, "%sLoading examples file: %s%s\n", SBDEFAULT, filename, SDEFAULT);
Examples* e = loadExampleFile(filename, m, includePosition);
if(e == NULL) {
output(LERROR, "Example file parsing: failed\n");
free(c);
freeModel(m);
return 1;
}
output(L1, "%sGenerating all combinations...%s\n", SBDEFAULT, SDEFAULT);
Solution* s = genAllCombi(m, e);
output(L1, "%sAdding relations...%s\n", SBDEFAULT, SDEFAULT);
genAllRelations(s, e, m);
if(!flagNoGeneralization) {
output(L1, "%sGeneralization...%s\n", SBDEFAULT, SDEFAULT);
genGeneralization(m, s);
}
if(!flagNoCounterExample) {
output(L1, "%sChecking counter-examples...%s\n", SBDEFAULT, SDEFAULT);
genCounterExamples(m, e, s);
}
output(L1, "%sSolutions:%s\n", SBDEFAULT, SDEFAULT);
genOutput(s, m, flagExpandRelation);
free(c);
freeModel(m);
freeExamples(e);
freeSolution(s);
}
return 0;
}