test_speed.cpp
910 Bytes
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
/*
* File: test_speed.cpp
* Author: mlenart
*
* Created on 24 październik 2013, 17:47
*/
#include <cstdlib>
#include <fstream>
#include "fsa.hpp"
#include "utils.hpp"
#define NDEBUG
using namespace std;
/*
*
*/
int main(int argc, char** argv) {
validate(argc == 3, "Must provide exactly two arguments - FSA filename and test data filename.");
const unsigned char* fsaData = readFile(argv[1]);
StringDeserializer deserializer;
SimpleFSA<char*> fsa(fsaData, deserializer);
ifstream ifs;
// ifs.exceptions(std::ifstream::failbit | std::ifstream::badbit);
ifs.open(argv[2], ios::binary);
string line;
while (getline(ifs, line)) {
char* val;
if (fsa.tryToRecognize(line.c_str(), val)) {
// printf("%s: *OK*\n", line.c_str());
}
else {
// printf("%s: NOT FOUND", line.c_str());
}
}
return 0;
}