/usr/share/ecere/extras/XMLParser.ec is in ecere-extras 0.44.15-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 | public import "ecere"
#define MAX_TAG_LEN 2048
enum WordStatus
{
None,
Normal,
Quoted
};
static WordStatus GetKeyWordEx(char ** input, char * keyWord, int maxSize, bool treatEqual)
{
char * string = *input;
char ch;
int c = 0;
bool quoted = false, start = true, wasQuoted = false;
for(; (ch = *string); string++)
{
if(!quoted && wasQuoted)
break;
if((ch == ' ' || ch == '\t') && !quoted)
{
if(!start) break;
}
else
{
if(!quoted && ((ch == ',' || (treatEqual && ch == '=')) || ch == '>') )
break;
else if(ch == '\"' /*|| ch == '\''*/)
{
quoted ^= true;
wasQuoted = true;
start = false;
}
else if(ch != '\r' && ch != '\n')
{
if(c < maxSize)
keyWord[c++] = ch;
start = false;
}
}
}
for(;*string == '>' || *string == ',' || *string == ' ' || *string == '=' || *string == '\t' || *string == '\r' || *string == '\n'; string++);
keyWord[c] = '\0';
*input = string;
return (c > 0) ? (wasQuoted ? Quoted : Normal) : None;
}
static WordStatus GetKeyWord(char ** input, char * keyWord, int maxSize)
{
return GetKeyWordEx(input, keyWord, maxSize, true);
}
#define CHARBUFSIZE 65536
class XMLParser
{
virtual void ProcessKeyword(const char * keyWord);
virtual void ProcessCharacterData(const char * data);
char keyWord[1024];
char * string;
int xmlDepth;
bool closingTag;
bool openingTag;
char * characterData;
uint charBufSize;
charBufSize = CHARBUFSIZE;
~XMLParser()
{
delete characterData;
}
bool GetWord()
{
if(string && string[0])
{
GetKeyWord(&string, keyWord, sizeof(keyWord));
return true;
}
return false;
}
bool Parse(const char * inputString, int count)
{
bool insideTag = false;
char tag[MAX_TAG_LEN];
int tagLen = 0;
bool commented = false;
byte lastCh = ' ';
int stringPos;
char * characterData = this.characterData;
int charLen = 0;
int oldDepth = xmlDepth;
tag[0] = 0;
closingTag = false;
// Preparse to check for completeness
for(stringPos = 0; stringPos < count; stringPos++)
{
byte ch = inputString[stringPos];
if(commented)
{
if((ch == '-' && tagLen < 2) || (ch == '>' && tagLen == 2))
{
tag[tagLen++] = ch;
tag[tagLen] = '\0';
if(!strcmp(tag, "-->"))
{
commented = false;
}
}
else
tagLen = 0;
}
else if(insideTag)
{
if(ch == '/' && lastCh == '<')
closingTag = true;
if(ch == '<')
{
insideTag++;
openingTag = true;
}
else if(ch == '>')
{
if(closingTag)
xmlDepth--;
else if(lastCh != '?' && lastCh != '/' && tag[0] != '!')
xmlDepth++;
else
{
closingTag = true;
openingTag = true;
}
insideTag--;
if(!insideTag)
tag[tagLen] = '\0';
else
{
tag[tagLen++] = ch;
tag[tagLen] = '\0';
}
closingTag = false;
}
else if(ch != '/' || lastCh != '<')
{
tag[tagLen++] = ch;
tag[tagLen] = '\0';
}
else
openingTag = false;
if(!strcmp(tag, "!--"))
{
commented = true;
insideTag = false;
tagLen = 0;
tag[tagLen] = '\0';
}
}
else
{
if(ch == '<')
{
openingTag = true;
insideTag = true;
tagLen = 0;
}
}
lastCh = ch;
}
if(xmlDepth > 1 || insideTag || commented)
{
xmlDepth = oldDepth;
return false;
}
xmlDepth = oldDepth;
commented = false;
lastCh = ' ';
charLen = 0;
insideTag = false;
closingTag = false;
openingTag = false;
tag[0] = 0;
// Parse entire file
for(stringPos = 0; stringPos < count; stringPos++)
{
char ch = inputString[stringPos];
if(commented)
{
if((ch == '-' && tagLen < 2) || (ch == '>' && tagLen == 2))
{
tag[tagLen++] = ch;
tag[tagLen] = '\0';
if(!strcmp(tag, "-->"))
{
commented = false;
}
}
else
tagLen = 0;
}
else if(insideTag)
{
if(ch == '/' && lastCh == '<')
closingTag = true;
if(ch == '<')
{
insideTag++;
openingTag = true;
}
else if(ch == '>')
{
if(closingTag)
xmlDepth--;
else if(lastCh != '?' && lastCh != '/' && tag[0] != '!')
xmlDepth++;
else
{
closingTag = true;
openingTag = true;
}
insideTag--;
if(!insideTag)
{
tag[tagLen] = '\0';
insideTag = false;
string = tag;
if(GetKeyWord(&string, keyWord, sizeof(keyWord)))
{
ProcessKeyword(keyWord);
}
}
else
{
tag[tagLen++] = ch;
tag[tagLen] = '\0';
}
closingTag = false;
}
else if(ch != '/' || lastCh != '<')
{
tag[tagLen++] = ch;
tag[tagLen] = '\0';
}
else
openingTag = false;
if(!strcmp(tag, "!--"))
{
commented = true;
insideTag = false;
tagLen = 0;
tag[tagLen] = '\0';
}
}
else
{
if(!characterData)
this.characterData = characterData = new byte[charBufSize];
if(ch == '<' || charLen == charBufSize - 1)
{
ProcessCharacterData(characterData);
charLen = 0;
}
if(ch == '<')
{
openingTag = true;
insideTag = true;
tagLen = 0;
}
else
{
characterData[charLen++] = ch;
characterData[charLen] = 0;
}
}
lastCh = ch;
}
return true;
}
}
|