blob: 71bb753b0cfe0e98740e340ffe1aa965829fc3c8 (
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
71
72
73
74
75
76
77
78
79
80
|
#include "xmlparser.h"
#include <stdio.h>
#include <string.h>
#include <expat.h>
#include <string>
#include <map>
static bool done = false;
void XMLParser::startTag(std::string name, std::map< std::string, std::string> attributes)
{
if(name == "pracro") {
transaction->user = attributes["user"];
transaction->cpr = attributes["cpr"];
transaction->version = attributes["version"];
}
if(name == "request") {
Request r;
r.macro = attributes["macro"];
transaction->requests.push_back(r);
}
if(name == "commit") {
Commit c;
c.macro = attributes["macro"];
c.version = attributes["version"];
transaction->commits.push_back(c);
}
if(name == "field") {
transaction->commits.back().fields[attributes["name"]] = attributes["value"];
}
}
void XMLParser::endTag(std::string name)
{
if(name == "pracro") done = true;
}
int XMLParser::readData(char *data, size_t size)
{
if(done) return 0;
return socket->read(data, size);
}
XMLParser::XMLParser(TCPSocket &socket, Transaction &transaction)
{
this->transaction = &transaction;
this->socket = &socket;
done = false;
}
|