-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathXMLRead.cpp
More file actions
390 lines (371 loc) · 11.2 KB
/
Copy pathXMLRead.cpp
File metadata and controls
390 lines (371 loc) · 11.2 KB
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
/*
* XMLRead.cpp
*
* Parser for XML files.
*
* This file is part of the WinVetSim distribution (https://github.com/OpenVetSimDevelopers/sim-mgr).
*
* Copyright (c) 2021 VetSim, Cornell University College of Veterinary Medicine Ithaca, NY
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <WinSDKVer.h>
#include <windows.h>
#include <tchar.h>
#include <stdio.h>
#include <strsafe.h>
#include <fileapi.h>
#include <iostream>
#include "XMLRead.h"
void DisplayError(LPTSTR lpszFunction);
int
XMLRead::open(const char* path)
{
LARGE_INTEGER filelen;
size_t len;
DWORD ol;
BOOL sts;
HANDLE hFile;
char* cptr;
char* cptr1;
char* cptr2;
int length;
depth = -1;
fileLength = 0;
name[0] = 0;
value[0] = 0;
idx = 0;
printf("XMLRead open %s\n", path);
hFile = CreateFileA(path, // file to open
GENERIC_READ, // open for reading
FILE_SHARE_READ, // share for reading
NULL, // default security
OPEN_EXISTING, // existing file only
FILE_ATTRIBUTE_NORMAL, // normal file
NULL); // no attr. template
if (hFile == INVALID_HANDLE_VALUE)
{
printf("Terminal failure: unable to open file \"%s\" for read.\n", path);
return (-1);
}
sts = GetFileSizeEx(hFile, &filelen);
if ( !sts )
{
printf("Terminal failure: unable to get file length\"%s\" for read.\n", path);
return (-1);
}
len = (size_t)filelen.LowPart;
XMLRead::xml = (char *)calloc(len+32, 1);
XMLRead::idx = 0;
printf("ReadFile Request %d bytes.\n", (int)len);
sts = ReadFile(hFile, (LPVOID)&XMLRead::xml[0], (DWORD)len, &ol, NULL);
if ( !sts || ol != len)
{
printf("Terminal failure: ReadFile for \"%s\" returned %d bytes with %d epected.\n", path, ol, (int)len);
printf(" %.40s...\n", XMLRead::xml);
return (-1);
}
printf("Read is good\n");
CloseHandle(hFile);
cptr = XMLRead::xml;
// printf("%s\n", cptr);
// Strip out prolog, if present ( replace with spaces )
cptr1 = strstr(cptr, "<?xml");
if (!cptr1)
{
cptr1 = strstr(cptr, "<?XML");
}
if (cptr1)
{
cptr2 = strstr(cptr1, "?>");
if (cptr2)
{
cptr2 += 2;
length = (int)(cptr2 - cptr1);
memset(cptr1, ' ', length);
}
}
// Strip out all comments ( replace with spaces )
cptr1 = cptr;
while (1)
{
cptr1 = strstr(cptr1, "<!--");
if (cptr1)
{
cptr2 = strstr(cptr1, "-->");
if (cptr2)
{
cptr2 += 3;
length = (int)(cptr2 - cptr1);
memset(cptr1, ' ', length);
}
else
{
break;
}
}
else
{
break;
}
}
XMLRead::fileLength = ol;
printf("XMLRead::open complete\n");
return ( 0 );
}
int
XMLRead::getEntry(void)
{
int i;
size_t maxLen;
char* cptr = XMLRead::xml + XMLRead::idx;
char* cptr2;
XMLRead::type = XML_TYPE_FILE_END; // Default return if nothing is found
//printf("Get Entry: ");
// If not inElement, then skip everything up to the next
if (XMLRead::state == xmlParseState::initial || XMLRead::state == xmlParseState::closedElement)
{
for (i = 0; cptr[i]; i++)
{
if (strncmp(&cptr[i], "</", 2) == 0 )
{
// Next is an end of element
cptr2 = &cptr[i+2];
for (i = 0; cptr2[i]; i++)
{
if (cptr2[i] == '>' || isspace(cptr2[i]))
{
break;
}
}
strncpy_s(XMLRead::name, cptr2, size_t(i)-1);
XMLRead::name[i] = 0;
XMLRead::value[0] = 0;
XMLRead::type = XML_TYPE_END_ELEMENT;
if (XMLRead::depth > 0)
{
XMLRead::depth--;
}
XMLRead::idx = (int)(&cptr2[i] - XMLRead::xml + 1);
XMLRead::state = xmlParseState::closedElement;
break;
}
else if (cptr[i] == '<')
{
cptr = &cptr[i+1];
for (i = 0; cptr[i]; i++)
{
if (cptr[i] == '>' || isspace(cptr[i]))
{
if (i > 0)
{
maxLen = (size_t)(i);
strncpy_s(XMLRead::name, cptr, maxLen);
XMLRead::name[i] = 0;
}
else
{
XMLRead::name[0] = 0;
}
XMLRead::value[0] = 0;
XMLRead::type = XML_TYPE_ELEMENT;
XMLRead::idx = (int)(&cptr[i] - XMLRead::xml + 1);
XMLRead::depth++;
XMLRead::state = xmlParseState::foundElement;
break;
}
}
break;
}
}
}
else if (XMLRead::state == xmlParseState::foundElement)
{
// Skip white space up to next text
for (i = 0; cptr[i]; i++)
{
if (!isspace(cptr[i]))
{
cptr = &cptr[i];
break;
}
}
if (strncmp(cptr, "</", 2) == 0)
{
// Next is an end of element
cptr2 = &cptr[2];
for (i = 0; cptr2[i]; i++)
{
if (cptr2[i] == '>' || isspace(cptr2[i]) )
{
break;
}
}
strncpy_s(XMLRead::name, cptr2, size_t(i));
XMLRead::name[i] = 0;
XMLRead::value[0] = 0;
XMLRead::type = XML_TYPE_END_ELEMENT;
if (XMLRead::depth > 0)
{
XMLRead::depth--;
}
XMLRead::idx = (int)(&cptr2[i] - XMLRead::xml + 1);
XMLRead::state = xmlParseState::closedElement;
}
else if (cptr[0] == '<')
{
// Next is an start of element
cptr++;
for (i = 0; cptr[i]; i++)
{
if (cptr[i] == '>' || isspace(cptr[i]))
{
strncpy_s(XMLRead::name, cptr, size_t(i));
XMLRead::name[i] = 0;
XMLRead::value[0] = 0;
XMLRead::type = XML_TYPE_ELEMENT;
XMLRead::depth++;
XMLRead::idx = (int)(&cptr[i] - XMLRead::xml + 1);
XMLRead::state = xmlParseState::foundElement;
break;
}
}
}
else
{
// Not a tag open or close, so return any content up to the next tag
for ( i = 0 ; cptr[i]; i++)
{
if (cptr[i] == '<')
{
XMLRead::value[i] = 0;
XMLRead::state = xmlParseState::returnedText;
XMLRead::type = XML_TYPE_TEXT;
XMLRead::idx = (int)(&cptr[i] - XMLRead::xml);
break;
}
else
{
XMLRead::value[i] = cptr[i];
}
}
}
}
else if (XMLRead::state == xmlParseState::returnedText)
{
// Skip white space up to next text
for (i = 0; cptr[i]; i++)
{
if (!isspace(cptr[i]))
{
cptr = &cptr[i];
break;
}
}
if (strncmp(cptr, "</", 2) == 0)
{
// Next is an end of element
cptr2 = &cptr[2];
for (i = 0; cptr2[i]; i++)
{
if (cptr2[i] == '>')
{
cptr2 = &cptr2[i];
break;
}
}
strncpy_s(XMLRead::name, &cptr[2], size_t(i));
XMLRead::name[i + 1] = 0;
XMLRead::value[0] = 0;
XMLRead::type = XML_TYPE_END_ELEMENT;
if (XMLRead::depth > 0)
{
XMLRead::depth--;
}
XMLRead::idx = XMLRead::idx + i;
XMLRead::state = xmlParseState::closedElement;
}
else if (cptr[0] == '<')
{
// Next is an start of element
cptr++;
for (i = 0; cptr[i]; i++)
{
if (cptr[i] == '>' || isspace(cptr[i]))
{
strncpy_s(XMLRead::name, cptr, size_t(i));
XMLRead::name[i] = 0;
XMLRead::value[0] = 0;
XMLRead::type = XML_TYPE_ELEMENT;
XMLRead::depth++;
XMLRead::idx = (int)(&cptr[i] - XMLRead::xml + 1);
XMLRead::state = xmlParseState::foundElement;
break;
}
}
}
else
{
XMLRead::name[0] = 0;
XMLRead::value[0] = 0;
XMLRead::type = XML_TYPE_NONE;
XMLRead::idx = (int)(&cptr[i] - XMLRead::xml + 1);
XMLRead::state = xmlParseState::initial;
}
}
if (XMLRead::type == XML_TYPE_FILE_END)
return (1);
else
return (0);
}
void DisplayError(LPTSTR lpszFunction)
// Routine Description:
// Retrieve and output the system error message for the last-error code
{
LPVOID lpMsgBuf;
LPVOID lpDisplayBuf;
DWORD dw = GetLastError();
SIZE_T length;
FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
dw,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPTSTR)&lpMsgBuf,
0,
NULL);
length = lstrlen((LPCTSTR)lpMsgBuf);
length += lstrlen((LPCTSTR)lpszFunction);
length += 40; // account for format string
length *= sizeof(TCHAR);
lpDisplayBuf =
(LPVOID)LocalAlloc(LMEM_ZEROINIT,
length );
if (lpDisplayBuf)
{
if (FAILED(StringCchPrintf((LPTSTR)lpDisplayBuf,
LocalSize(lpDisplayBuf) / sizeof(TCHAR),
TEXT("%s failed with error code %d as follows:\n%s"),
lpszFunction,
dw,
(LPTSTR)lpMsgBuf)))
{
printf("FATAL ERROR: Unable to output error code.\n");
}
_tprintf(TEXT("ERROR: %s\n"), (LPCTSTR)lpDisplayBuf);
LocalFree(lpDisplayBuf);
}
LocalFree(lpMsgBuf);
}