blob: 4f67734e8815c3b350e9f924c8c2156151b0ef7f (
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
|
/**
* This file contains all the snippets in the doxygen documentation.
*
* It is not actually a test as such, but makes sure that the snippets will
* actually compile and do what we claim they do.
*/
#include "uscxml/config.h"
#include "uscxml/Interpreter.h"
#include "uscxml/interpreter/LoggingImpl.h"
#include <iostream>
using namespace uscxml;
void microstep_snippet() {
Interpreter scxml = Interpreter::fromURL("https://raw.githubusercontent.com/tklab-tud/uscxml/master/test/w3c/null/test436.scxml");
//! [Performing a microstep]
InterpreterState state = uscxml::USCXML_UNDEF;
while((state = scxml.step()) != uscxml::USCXML_FINISHED) {
switch (state) {
case USCXML_MICROSTEPPED:
case USCXML_MACROSTEPPED:
/* Interpreter performed a microstep */
break;
default:
break;
}
}
//! [Performing a microstep]
}
void lambda_snippet() {
InterpreterState state = uscxml::USCXML_UNDEF;
Interpreter scxml = Interpreter::fromURL("https://raw.githubusercontent.com/tklab-tud/uscxml/master/test/w3c/null/test436.scxml");
scxml.on().enterState([](const std::string& sessionId,
const std::string& stateName,
const xercesc_3_1::DOMElement* state) {
std::cout << "Entered " << stateName << std::endl;
});
scxml.on().exitState([](const std::string& sessionId,
const std::string& stateName,
const xercesc_3_1::DOMElement* state) {
std::cout << "Exited " << stateName << std::endl;
});
while((state = scxml.step()) != uscxml::USCXML_FINISHED) {}
}
int main(int argc, char** argv) {
try {
lambda_snippet();
microstep_snippet();
} catch (...) {
exit(EXIT_FAILURE);
}
}
|