test_speed.cpp
1.26 KB
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
/*
* 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;
FSA<char*>* fsa = FSA<char*>::getFSA(fsaData, deserializer);
ifstream ifs;
// ifs.exceptions(std::ifstream::failbit | std::ifstream::badbit);
ifs.open(argv[2], ios::binary);
char line[65536];
int recognized = 0;
int unrecognized = 0;
while (ifs.getline(line, 65536, '\n')) {
char* val;
if (fsa->tryToRecognize(line, val)) {
// printf("%s: *OK*\n", line);
recognized++;
}
else {
unrecognized++;
// exit(1);
// printf("%s: NOT FOUND\n", line);
}
}
cout << "recognized: " << recognized << endl;
cout << "unrecognized: " << unrecognized << endl;
cout << "total: " << (recognized + unrecognized) << endl;
// cout << "transitions visited: " << fsa->transitionsCount() << endl;
return 0;
}