aboutsummaryrefslogtreecommitdiff
path: root/daemon/XMLReader.cpp
blob: 77c76e29d73dda9a5718991601af0c623b3573ce (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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/**
 * Copyright (C) ARM Limited 2010-2012. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include "XMLReader.h"
extern void handleException();

XMLReader::XMLReader(const char* xmlstring) {
	mPtr = (char*)xmlstring;
	mNoMore = false;
	mFirstTime = true;
}

XMLReader::~XMLReader() {
}

char* XMLReader::nextTag() {
	static char tag[128]; // arbitrarily set max tag size to 127 characters + nul

	// Check if past the end of the root tag
	if (mNoMore) return NULL;

	// Find start character
	mPtr = strchr(mPtr, '<');

	if (mPtr == NULL) return mPtr;

	// Skip tag if it begins with <?
	if (mPtr[1] == '?') {
		mPtr++;
		return nextTag();
	}

	// Find end of tag name
	mPtr++;
	char* end = strchr(mPtr, ' ');
	if (end == NULL)
		end = strchr(mPtr, '>');
	if (end == NULL)
		return 0;

	// Check if tag has no attributes
	char* tagend = strchr(mPtr, '>');
	if (tagend < end) end = tagend;
	
	// Check the tag name length
	unsigned int length = (int)end - (int)mPtr;
	if (length > sizeof(tag) - 1) {
		// tag name too long, skip it
		return nextTag();
	}
	
	// Return the tag name
	strncpy(tag, mPtr, length);
	tag[length] = 0;

	// Mark the root tag
	if (mFirstTime) {
		mEndXML[0] = '/';
		strcpy(&mEndXML[1], tag);
		mFirstTime = false;
	} else if (strcmp(tag, mEndXML) == 0) {
		// End of root tag found
		mNoMore = true;
	}

	return tag;
}

void XMLReader::getAttribute(const char* name, char* value, int maxSize, const char* defValue) {
	char searchString[128];

	// Set up default
	strncpy(value, defValue, maxSize - 1);
	value[maxSize - 1] = 0;
	
	// Determine search string by ending the name with ="
	if (strlen(name) > sizeof(searchString) - 3) return;
	strcpy(searchString, name);
	strcat(searchString, "=\"");

	// Find the beginning of the attribute's search string
	char* begin = strstr(mPtr, searchString);
	if (begin == NULL) return;

	// Find the beginning of the attribute's value
	begin += strlen(searchString);

	// Find the end of the current tag to make sure the attribute exists within the tag
	char* endtag = strchr(mPtr, '>');
	if (endtag < begin) return;

	// Find the end of the attribute's value
	char* end = strchr(begin, '"');
	if (end == NULL) return;

	// Determine length
	int length = (int)end - (int)begin;
	if (length > maxSize - 1) return;

	strncpy(value, begin, length);
	value[length] = 0;
}

int XMLReader::getAttributeAsInteger(const char* name, int defValue) {
	char value[32];
	getAttribute(name, value, sizeof(value), "");
	if (value[0] == 0) return defValue;
	if (value[0] == '0' && value[1] == 'x') {
		return (int) strtoul(&value[2], (char**)NULL, 16);
	}
	return strtol(value, NULL, 10);
}

bool XMLReader::getAttributeAsBoolean(const char* name, bool defValue) {
	char value[32];
	getAttribute(name, value, sizeof(value), "");
	if (value[0] == 0) return defValue;

	// Convert to lowercase
	int i = 0;
	while (value[i]) {
		value[i] = tolower(value[i]);
		i++;
	}

	if (strcmp(value, "true") == 0 || strcmp(value, "yes") == 0 || strcmp(value, "1") == 0 || strcmp(value, "on") == 0) return true;
	else if (strcmp(value, "false") == 0 || strcmp(value, "no") == 0 || strcmp(value, "0") == 0 || strcmp(value, "off") == 0) return false;
	else return defValue;
}

int XMLReader::getAttributeLength(const char* name) {
	char searchString[128]; // arbitrarily large amount

	// Determine search string by ending the name with ="
	if (strlen(name) > sizeof(searchString) - 3) return 0;
	strcpy(searchString, name);
	strcat(searchString, "=\"");

	// Find the beginning of the attribute's search string
	char* begin = strstr(mPtr, searchString);
	if (begin == NULL) return 0;

	// Find the beginning of the attribute's value
	begin += strlen(searchString);

	// Find the end of the current tag to make sure the attribute exists within the tag
	char* endtag = strchr(mPtr, '>');
	if (endtag < begin) return 0;

	// Find the end of the attribute's value
	char* end = strchr(begin, '"');
	if (end == NULL) return 0;

	// Determine length
	return (int)end - (int)begin;
}