-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
80 lines (66 loc) · 2.27 KB
/
Main.java
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
import string_tools.BoyerMoore;
import string_tools.FiniteStateAutomaton;
import string_tools.KnutMorrisPratt;
import string_tools.RabinKarp;
import java.io.*;
import java.nio.file.Files;
import java.nio.file.Paths;
public class Main {
public static void main(String[] args) throws IOException, NumberFormatException {
String fileName = null;
String pattern = null;
int algo = 0;
switch (args.length) {
case 3:
fileName = args[2];
case 2:
algo = Integer.parseInt(args[1]);
pattern = args[0];
break;
default:
System.err.println("usage: java Main <motif> <algo> (<fichier_texte>)");
System.exit(1);
}
String fileContent = "";
if(fileName != null){
fileContent = new String(Files.readAllBytes(Paths.get(fileName)));
}
switch (algo) {
case 1:
if (fileName == null) {
RabinKarp rabinKarp = new RabinKarp(pattern);
rabinKarp.display();
} else {
new RabinKarp(fileContent, pattern);
}
break;
case 2:
if (fileName == null) {
FiniteStateAutomaton finiteStateAutomaton = new FiniteStateAutomaton(pattern);
finiteStateAutomaton.display();
} else {
new FiniteStateAutomaton(fileContent, pattern);
}
break;
case 3:
if (fileName == null) {
KnutMorrisPratt kmp = new KnutMorrisPratt(pattern);
kmp.display();
} else {
new KnutMorrisPratt(fileContent, pattern);
}
break;
case 4:
if (fileName == null) {
BoyerMoore boyerMoore = new BoyerMoore(pattern);
boyerMoore.display();
} else {
new BoyerMoore(fileContent, pattern);
}
break;
default:
System.err.println("Algorithm not implemented");
System.exit(2);
}
}
}