summaryrefslogtreecommitdiffstats
path: root/test/src/test-performance.cpp
blob: c312b7080cc4267dedc67db9eeca232ecebb002f (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include "uscxml/config.h"
#include "uscxml/Interpreter.h"
#include "uscxml/interpreter/InterpreterMonitor.h"
#include "uscxml/util/DOM.h"

#include <chrono>
#include <iostream>

using namespace uscxml;
using namespace std::chrono;

long iterations = 0;
long initMs = 0;
bool exitPerf = false;
system_clock::time_point now;
system_clock::time_point start;
system_clock::time_point report;
system_clock::time_point endTime;

class PerfMon : public InterpreterMonitor {
public:
	virtual void beforeEnteringState(const std::string& sessionId,
	                                 const std::string& stateName,
	                                 const XERCESC_NS::DOMElement* state) {
		if (stateName == "mark") {
			iterations++;
			now = system_clock::now();
			if (now > report) {
				report = now + seconds(1);
				std::cout << initMs << ", " << iterations << std::endl;
				iterations = 0;
			}
		}
		if (now > endTime) {
			exitPerf = true;
		}
	}
};

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

		Interpreter sc = Interpreter::fromURL(argv[1]);
		sc.step(); // initialize?

		PerfMon mon;
		sc.addMonitor(&mon);

		now = system_clock::now();
		initMs = duration_cast<milliseconds>(now - start).count();

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

		while(true) {
			sc.step();
			if (exitPerf) {
				goto DONE_AND_EXIT;
			}
		}
	}
DONE_AND_EXIT:
	return 0;
}