-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXMLStatsHandler.hpp
114 lines (82 loc) · 2.8 KB
/
XMLStatsHandler.hpp
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
XMLStatsHandler.hpp
Header file for the concrete class specific to XML Stats inheriting from the abstract class XMLParser
*/
#ifndef XMLSTATSHANDLER_HPP
#define XMLSTATSHANDLER_HPP
#include "XMLStatsHandler.hpp"
#include "XMLParserHandler.hpp"
#include <string>
// provides literal string operator""sv
using namespace std::literals::string_view_literals;
class XMLStatsHandler : public XMLParserHandler {
public:
// constructor
XMLStatsHandler();
// get url
std::string getUrl();
// get unitCount
int getUnitCount();
// get loc
int getLoc();
// get startDocumentCount
int getStartDocumentCount();
// get XMLDeclarationCount
int getXMLDeclarationCount();
// get startTagCount
int getStartTagCount();
// get endTagCount
int getEndTagCount();
// get charactersCount
int getCharactersCount();
// get attributeCount
int getAttributeCount();
// get XMLNamespaceCount
int getXMLNamespaceCount();
// get XMLCommentCount
int getXMLCommentCount();
// get CDATACount
int getCDATACount();
// get processingInstructionCount
int getProcessingInstructionCount();
// get endDocumentCount
int getEndDocumentCount();
protected:
// start Document Handler
void handleStartDocument() override;
// XML Declaration Handler
void handleXMLDeclaration(std::string_view version, std::optional<std::string_view>& encoding, std::optional<std::string_view>& standalone) override;
// Start Tag Handler
void handleStartTag(std::string_view qName, std::string_view prefix, std::string_view localName) override;
// End Tag Handler
void handleEndTag(std::string_view qName, std::string_view prefix, std::string_view localName) override;
// Character Handler
void handleCharacter(std::string_view characters) override;
// attribute Handler
void handleAttribute(std::string_view qName, std::string_view prefix, std::string_view localName, std::string_view value) override;
// XML Namespace Handler
void handleXMLNamespace(std::string_view prefix, std::string_view uri) override;
// XML Comment Handler
void handleXMLComment(std::string_view value) override;
// CDATA Handler
void handleCDATA(std::string_view characters) override;
// processing Instruction Handler
void handleProcessingInstruction(std::string_view target, std::string_view data) override;
// end Document Handler
void handleEndDocument() override;
private:
int unitCount;
int loc;
int startDocumentCount;
int XMLDeclarationCount;
int startTagCount;
int endTagCount;
int charactersCount;
int attributeCount;
int XMLNamespaceCount;
int XMLCommentCount;
int CDATACount;
int processingInstructionCount;
int endDocumentCount;
};
#endif