summaryrefslogtreecommitdiffstats
path: root/test/src/test-performance.cpp
blob: 13fc14175d7778a30bbddded9167358ff0c188be (plain)
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
#include "uscxml/config.h"
#include "uscxml/Interpreter.h"
#include "uscxml/debug/Benchmark.h"

#include <chrono>
#include <iostream>

using namespace uscxml;
using namespace std::chrono;

int main(int argc, char** argv) {
	if (argc < 2) {
		std::cout << "Expected filename as first parameter" << std::endl;
		exit(EXIT_FAILURE);
	}

	Interpreter interpreter = Interpreter::fromURL(argv[1]);

	InterpreterState state;
	system_clock::time_point start = system_clock::now();

	while((state = interpreter.step()) != InterpreterState::USCXML_INITIALIZED) {}
	system_clock::time_point now = system_clock::now();

	std::cout << "init: " << duration_cast<milliseconds>(now - start).count() << "ms" << std::endl;

	start = system_clock::now();
	system_clock::time_point endTime = start + seconds(10);
	system_clock::time_point report = start + seconds(1);

	unsigned long iterations = 0;

	while(true) {
		now = system_clock::now();
		if (now > endTime)
			break;

		interpreter.step();

		iterations++;
		if (now > report) {
			report = now + seconds(1);
			std::cout << "steps / sec: " << iterations << std::endl;
			iterations = 0;
		}
	}
    Benchmark::report(std::cout);
}