blob: 6b81bbd1cc31963fb64da6121d53dca598601300 (
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
|
#include <iostream>
#include <chrono>
#include <stdlib.h>
#include "uscxml/uscxml.h"
#include "uscxml/interpreter/InterpreterMonitor.h"
#include "uscxml/util/DOM.h"
using namespace std;
using namespace uscxml;
using namespace std::chrono;
long iterations = 0;
long initMs = 0;
system_clock::time_point now;
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) {
::exit(EXIT_SUCCESS);
}
}
};
int main(int argc, char *argv[])
{
system_clock::time_point start = system_clock::now();
Interpreter sc = Interpreter::fromURL(argv[1]);
ActionLanguage al;
if (argc > 2) {
if (std::string(argv[2]) == "large") {
al.microStepper = Factory::getInstance()->createMicroStepper("large", (MicroStepCallbacks*)(sc.getImpl().get()));
} else {
al.microStepper = Factory::getInstance()->createMicroStepper("fast", (MicroStepCallbacks*)(sc.getImpl().get()));
}
}
sc.setActionLanguage(al);
InterpreterState state = 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();
}
return 0;
}
|