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
81
|
#include "transactionparser.h"
#include <stdio.h>
#include <string.h>
#include <expat.h>
#include <string>
#include <map>
TransactionParser::TransactionParser(Transaction *transaction)
{
this->transaction = transaction;
done = false;
totalbytes = 0;
}
TransactionParser::~TransactionParser()
{
}
void TransactionParser::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.course = attributes["course"];
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 TransactionParser::parseError(char *buf, size_t len, std::string error, int lineno)
{
fprintf(stderr, "TransactionParser error at line %d: %s\n", lineno, error.c_str());
fprintf(stderr, "\tBuffer %u bytes: [", len);
if(fwrite(buf, len, 1, stderr) != len) {}
fprintf(stderr, "]\n");
fflush(stderr);
}
|