-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathParsingFunctions.h
More file actions
487 lines (464 loc) · 21.8 KB
/
ParsingFunctions.h
File metadata and controls
487 lines (464 loc) · 21.8 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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
//---------------------------------------------------------------------------
#ifndef ParsingFunctionsH
#define ParsingFunctionsH
//---------------------------------------------------------------------------
#include "DataTypes.h"
#include <xercesc/dom/DOM.hpp>
class clTreePopulation;
#include <fstream>
/**
* @file
* Data Extraction Functions
* These functions are designed to work with the Xerces 2.1.0 library. They
* handle the extraction of data from parsed files.
*
* Copyright 2003 Charles D. Canham.
* @author Lora E. Murphy
*
* <br>Edit history:
* <br>-----------------
* <br>October 20, 2011 - Wiped the slate clean for SORTIE 7.0 (LEM)
* <br>November 12, 2012 - Chars became strings (LEM)
*/
/**
* Fills species-specific float values from a DOM tree.
* For those values which are species-specific and have the following structure
* in the XML document:
*
* <!--<parent_tag>
* <child_tag species = "sp1-name">val1</child_tag>
* <child_tag species = "sp2-name">val2</child_tag
* </parent_tag>-->
@htmlonly <parent_tag><br>
<child_tag species = "sp1-name">val1</child_tag><br>
<child_tag species = "sp2-name">val2</child_tag><br>
</parent_tag><br>
@endhtmlonly
*
*
* This function will extract the values and place them in a given array,
* matching species codes. If the data isn't present in the document, the
* action taken depends on the value of the flag bRequired. If bRequired is
* false, and the data isn't there, the function simply exits. If bRequired is
* true, the function throws an error. In either case, if a value is not found
* for all species indicated, an error is thrown.
*
* The function will only look for values for species matching codes that are
* pre-loaded into the arrays. The arrays must have had memory allocated and
* the species codes must be pre-loaded. Duplicate and invalid species from the
* XML file are screened out without failure.
*
* This function is currently not protected against overflow. I could not
* successfully trap for the error codes the documentation says are supposed to
* be set.
*
* @param p_oParent Pointer to the parent element of the element to extract. If
* this is a top-level element, the parent will be the XML document root element
* (at the time of this writing, named paramFile).
* @param sTagName Tag name of the parent node (parent_tag).
* @param sSubTagName Tag name of the child node (child_tag).
* @param p_array Pointer to the array to put the extracted values in.
* @param iNumSpecies Number of species expected (should equal the size of the
* floatVal array)
* @param p_oPop Pointer to the tree population. This is necessary for
* translating species names into codes
* @param bRequired Whether or not this value is required.
* @throw Error if the value is required and it is not found, or if it is found
* and not all species are present.
*/
//void FillSpeciesSpecificValue(xercesc::DOMElement *p_oParent, std::string sTagName,
// std::string sSubTagName, floatVal *p_array, int iNumSpecies,
// clTreePopulation *p_oPop, bool bRequired);
/**
* Fills species-specific double values from a DOM tree.
* For those values which are species-specific and have the following structure
* in the XML document:
*
* <!--<parent_tag>
* <child_tag species = "sp1-name">val1</child_tag>
* <child_tag species = "sp2-name">val2</child_tag
* </parent_tag>-->
@htmlonly <parent_tag><br>
<child_tag species = "sp1-name">val1</child_tag><br>
<child_tag species = "sp2-name">val2</child_tag><br>
</parent_tag><br>
@endhtmlonly
*
*
* This function will extract the values and place them in a given array,
* matching species codes. If the data isn't present in the document, the
* action taken depends on the value of the flag bRequired. If bRequired is
* false, and the data isn't there, the function simply exits. If bRequired is
* true, the function throws an error. In either case, if a value is not found
* for all species indicated, an error is thrown.
*
* The function will only look for values for species matching codes that are
* pre-loaded into the arrays. The arrays must have had memory allocated and
* the species codes must be pre-loaded. Duplicate and invalid species from the
* XML file are screened out without failure.
*
* This function is currently not protected against overflow. I could not
* successfully trap for the error codes the documentation says are supposed to
* be set.
*
* @param p_oParent Pointer to the parent element of the element to extract. If
* this is a top-level element, the parent will be the XML document root element
* (at the time of this writing, named paramFile).
* @param sTagName Tag name of the parent node (parent_tag).
* @param sSubTagName Tag name of the child node (child_tag).
* @param p_array Pointer to the array to put the extracted values in.
* @param iNumSpecies Number of species expected (should equal the size of the
* floatVal array)
* @param p_oPop Pointer to the tree population. This is necessary for
* translating species names into codes
* @param bRequired Whether or not this value is required.
* @throw Error if the value is required and it is not found, or if it is found
* and not all species are present (whether or not it is required).
*/
void FillSpeciesSpecificValue(xercesc::DOMElement *p_oParent, std::string sTagName,
std::string sSubTagName, doubleVal *p_array, int iNumSpecies,
clTreePopulation *p_oPop, bool bRequired);
/**
* Fills species-specific integer values from a DOM tree.
* For those values which are species-specific and have the following structure
* in the XML document:
*
* <!--<parent_tag>
* <child_tag species = "sp1-name">val1</child_tag>
* <child_tag species = "sp2-name">val2</child_tag>
* </parent_tag>-->
@htmlonly <parent_tag><br>
<child_tag species = "sp1-name">val1</child_tag><br>
<child_tag species = "sp2-name">val2</child_tag><br>
</parent_tag><br>
@endhtmlonly
*
* This function will extract the values and place them in a given array,
* matching species codes. If the data isn't present in the document, the action
* taken depends on the value of the flag bRequired. If bRequired is false, and
* the data isn't there, the function simply exits. If bRequired is true, the
* function throws an error. In either case, if a value is not found for all
* species indicated, an error is thrown.
*
* The function will only look for values for species matching codes that
* are pre-loaded into the arrays. The arrays must have had memory allocated and
* the species codes must be pre-loaded. Duplicate and invalid species from the
* XML file are screened out without failure.
*
* @param p_oParent Pointer to the parent element of the element to extract.
* If this is a top-level element, the parent will be the XML document root
* element (at the time of this writing, named paramFile).
* @param sTagName Tag name of the parent node (parent_tag).
* @param sSubTagName Tag name of the child node (child_tag).
* @param p_array Pointer to the array to put the extracted values in.
* @param iNumSpecies Number of species expected (should equal the size of the
* intVal array)
* @param p_oPop Pointer to the tree population. This is necessary for
* translating species names into codes
* @param bRequired Whether or not this value is required.
* @throw Error if the value is required and it is not found, or if it is found
* and not all species are present (whether or not it is required).
*/
void FillSpeciesSpecificValue(xercesc::DOMElement *p_oParent, std::string sTagName,
std::string sSubTagName, intVal *p_array, int iNumSpecies,
clTreePopulation *p_oPop, bool bRequired);
/**
Fills species-specific boolean values from a DOM tree.
For those values which are species-specific and have the following structure in
the XML document:
<!--<parent_tag>
<child_tag species = "sp1-name">val1</child_tag>
<child_tag species = "sp2-name">val2</child_tag>
</parent_tag>-->
@htmlonly <parent_tag><br>
<child_tag species = "sp1-name">val1</child_tag><br>
<child_tag species = "sp2-name">val2</child_tag><br>
</parent_tag><br>
@endhtmlonly
<p>
This function will extract the values and place them in a given array,
matching species codes. If the data isn't present in the document, the action
taken depends on the value of the flag bRequired. If bRequired is false, and
the data isn't there, the function simply exits. If bRequired is true, the
function throws an error. In either case, if a value is not found for all
species indicated, an error is thrown.
This expects the values to come as either 1 (true) or 0 (false).
The function will only look for values for species matching codes that
are pre-loaded into the arrays. The arrays must have had memory allocated and
the species codes must be pre-loaded. Duplicate and invalid species from the
XML file are screened out without failure.
@param p_oParent Pointer to the parent element of the element to extract. If
this is a top-level element, the parent will be the XML document root element
(at the time of this writing, named paramFile).
@param sTagName Tag name of the parent node (parent_tag).
@param sSubTagName Tag name of the child node (child_tag).
@param p_array Pointer to the array to put the extracted values in.
@param iNumSpecies Number of species expected (should equal the size of the
boolVal array)
@param p_oPop Pointer to the tree population. This is necessary for
translating species names into codes
@param bRequired Whether or not this value is required.
@throw Error if the value is required and it is not found, or if it is found
and not all species are present (whether or not it is required).
*/
void FillSpeciesSpecificValue(xercesc::DOMElement *p_oParent, std::string sTagName,
std::string sSubTagName, boolVal *p_array, int iNumSpecies,
clTreePopulation *p_oPop, bool bRequired);
/**
* Fills species-specific float values from a DOM tree.
* For those values which are species-specific and have the following structure
* in the XML document:
*
* <!--<parent_tag>
* <child_tag species = "sp1-name">val1</child_tag>
* <child_tag species = "sp2-name">val2</child_tag>
* </parent_tag>-->
@htmlonly <parent_tag><br>
<child_tag species = "sp1-name">val1</child_tag><br>
<child_tag species = "sp2-name">val2</child_tag><br>
</parent_tag><br>
@endhtmlonly
*
* This function will extract the values and place them in a given array. If the
* data isn't present in the document, the action taken depends on the value of
* the flag bRequired. If bRequired is false, and the data isn't there, the
* function simply exits. If bRequired is true, the function throws an error.
* In either case, if a value is not found for all species indicated, an error
* is thrown.
*
* This function provides a shortcut if you need values for every species and
* don't need to bother with the floatVal array type.
*
* This function is currently not protected against overflow. I could not
* successfully trap for the error codes the documentation says are supposed to
* be set.
*
* @param p_oParent Pointer to the parent element of the element to extract. If
* this is a top-level element, the parent will be the XML document root element
* (at the time of this writing, named paramFile).
* @param sTagName Tag name of the parent node (parent_tag).
* @param sSubTagName Tag name of the child node (child_tag).
* @param p_fArray Pointer to the array to put the extracted values in.
* @param p_oPop Pointer to the tree population. This is necessary for
* translating species names into codes
* @param bRequired Whether or not this value is required.
* @throw Error if the value is required and it is not found, or if it is found
* and not all species are present (whether or not it is required).
*/
//void FillSpeciesSpecificValue(xercesc::DOMElement *p_oParent, std::string sTagName,
// std::string sSubTagName, float *p_fArray, clTreePopulation *p_oPop,
// bool bRequired);
/**
* Fills species-specific double values from a DOM tree.
* For those values which are species-specific and have the following structure
* in the XML document:
*
* <!--<parent_tag>
* <child_tag species = "sp1-name">val1</child_tag>
* <child_tag species = "sp2-name">val2</child_tag>
* </parent_tag>-->
@htmlonly <parent_tag><br>
<child_tag species = "sp1-name">val1</child_tag><br>
<child_tag species = "sp2-name">val2</child_tag><br>
</parent_tag><br>
@endhtmlonly
*
* This function will extract the values and place them in a given array. If the
* data isn't present in the document, the action taken depends on the value of
* the flag bRequired. If bRequired is false, and the data isn't there, the
* function simply exits. If bRequired is true, the function throws an error.
* In either case, if a value is not found for all species indicated, an error
* is thrown.
*
* This function provides a shortcut if you need values for every species and
* don't need to bother with the doubleVal array type.
*
* This function is currently not protected against overflow. I could not
* successfully trap for the error codes the documentation says are supposed to
* be set.
*
* @param p_oParent Pointer to the parent element of the element to extract. If
* this is a top-level element, the parent will be the XML document root element
* (at the time of this writing, named paramFile).
* @param sTagName Tag name of the parent node (parent_tag).
* @param sSubTagName Tag name of the child node (child_tag).
* @param p_fArray Pointer to the array to put the extracted values in.
* @param p_oPop Pointer to the tree population. This is necessary for
* translating species names into codes
* @param bRequired Whether or not this value is required.
* @throw Error if the value is required and it is not found, or if it is found
* and not all species are present (whether or not it is required).
*/
void FillSpeciesSpecificValue(xercesc::DOMElement *p_oParent, std::string sTagName,
std::string sSubTagName, double *p_fArray, clTreePopulation *p_oPop,
bool bRequired);
/**
* Fills species-specific integer values from a DOM tree.
* For those values which are species-specific and have the following structure
* in the XML document:
*
* <!--<parent_tag>
* <child_tag species = "sp1-name">val1</child_tag>
* <child_tag species = "sp2-name">val2</child_tag>
* </parent_tag>-->
@htmlonly <parent_tag><br>
<child_tag species = "sp1-name">val1</child_tag><br>
<child_tag species = "sp2-name">val2</child_tag><br>
</parent_tag><br>
@endhtmlonly
*
* This function will extract the values and place them in a given array. If the
* data isn't present in the document, the action taken depends on the value of
* the flag bRequired. If bRequired is false, and the data isn't there, the
* function simply exits. If bRequired is true, the function throws an error.
* In either case, if a value is not found for all species indicated, an error
* is thrown.
*
* This function provides a shortcut if you need values for every species and
* don't need to bother with the intVal array type.
*
* This function is currently not protected against overflow. I could not
* successfully trap for the error codes the documentation says are supposed to
* be set.
*
* @param p_oParent Pointer to the parent element of the element to extract. If
* this is a top-level element, the parent will be the XML document root element
* (at the time of this writing, named paramFile).
* @param sTagName Tag name of the parent node (parent_tag).
* @param sSubTagName Tag name of the child node (child_tag).
* @param p_iArray Pointer to the array to put the extracted values in.
* @param p_oPop Pointer to the tree population. This is necessary for
* translating species names into codes
* @param bRequired Whether or not this value is required.
* @throw Error if the value is required and it is not found, or if it is found
* and not all species are present (whether or not it is required).
*/
void FillSpeciesSpecificValue(xercesc::DOMElement *p_oParent, std::string sTagName,
std::string sSubTagName, int *p_iArray, clTreePopulation *p_oPop,
bool bRequired);
/**
* Translates a species string into a species number. For those nodes that have
* an attribute named "species", this will extract the name of the species in
* that attribute and turn it into a code.
*
* @param p_oDocNode Node that has the species attribute to translate.
* @param p_oPop Tree population object.
* @return Species code. If the species name was unrecognized, returns -1.
*/
short int GetNodeSpeciesCode(xercesc::DOMNode *p_oDocNode, clTreePopulation *p_oPop);
/**
* Extracts a single integer value from a parsed XML file.
* For those values which are not species-specific and have the following
* structure:
*
@htmlonly <tag>value</tag> @endhtmlonly
* <!-- <tag>value</tag>-->
*
* this function will extract the value and place it in a given variable. The
* element can be the child of another tag.
*
* @param p_oParent Pointer to the parent element of the element to extract. If
* this is a top-level element, the parent will be the XML document root
* element (at the time of this writing, named paramFile).
* @param sTagName The tag name of the node.
* @param p_iValToFill Pointer to the variable to put the extracted value in.
* @param bRequired Whether or not this value is required.
* @throw Error if the value is required and it is not found.
*/
void FillSingleValue(xercesc::DOMElement *p_oParent, std::string sTagName,
int *p_iValToFill, bool bRequired);
/**
* Extracts a single float value from a parsed XML file.
* For those values which are not species-specific and have the following
* structure:
*
@htmlonly <tag>value</tag> @endhtmlonly
* <!-- <tag>value</tag>-->
*
* this function will extract the value and place it in a given variable. The
* element can be the child of another tag.
*
* This is currently not protected against overflow. I could not successfully
* trap for the error codes the documentation says are supposed to be set.
*
* @param p_oParent Pointer to the parent element of the element to extract. If
* this is a top-level element, the parent will be the XML document root
* element (at the time of this writing, named paramFile).
* @param sTagName The tag name of the node.
* @param p_fValToFill Pointer to the variable to put the extracted value in.
* @param bRequired Whether or not this value is required.
* @throw Error if the value is required and it is not found.
*/
//void FillSingleValue(xercesc::DOMElement *p_oParent, std::string sTagName,
// float *p_fValToFill, bool bRequired);
/**
* Extracts a single double value from a parsed XML file.
* For those values which are not species-specific and have the following
* structure:
*
@htmlonly <tag>value</tag> @endhtmlonly
* <!-- <tag>value</tag>-->
*
* this function will extract the value and place it in a given variable. The
* element can be the child of another tag.
*
* This is currently not protected against overflow. I could not successfully
* trap for the error codes the documentation says are supposed to be set.
*
* @param p_oParent Pointer to the parent element of the element to extract. If
* this is a top-level element, the parent will be the XML document root
* element (at the time of this writing, named paramFile).
* @param sTagName The tag name of the node.
* @param p_fValToFill Pointer to the variable to put the extracted value in.
* @param bRequired Whether or not this value is required.
* @throw Error if the value is required and it is not found.
*/
void FillSingleValue(xercesc::DOMElement *p_oParent, std::string sTagName,
double *p_fValToFill, bool bRequired);
/**
* Extracts a single string value from a parsed XML file.
* For those values which are not species-specific and have the following
* structure:
*
* @htmlonly <tag>value</tag> @endhtmlonly
* <!-- <tag>value</tag>-->
*
* this function will extract the value and place it in a given variable. The
* element can be the child of another tag. An empty string is considered a
* valid value.
*
* @param p_oParent Pointer to the parent element of the element to extract.
* If this is a top-level element, the parent will be the XML document root
* element (at the time of this writing, named paramFile).
* @param sTagName The tag name of the node.
* @param p_sValToFill Pointer to the variable to put the extracted value in.
* @param bRequired Whether or not this value is required.
* @throw Error if the value is required and it is not found.
*/
void FillSingleValue(xercesc::DOMElement *p_oParent, std::string sTagName,
std::string *p_sValToFill, bool bRequired);
/**
* Extracts a single boolean value from a parsed XML file.
* For those values which are not species-specific and have the following
* structure:
*
@htmlonly <tag>value</tag> @endhtmlonly
* <!-- <tag>value</tag>-->
*
* this function will extract the value and place it in a given variable. The
* element can be the child of another tag.
*
* This expects the values to come as either 1 (true) or 0 (false).
*
* @param p_oParent Pointer to the parent element of the element to extract. If
* this is a top-level element, the parent will be the XML document root
* element (at the time of this writing, named paramFile).
* @param sTagName The tag name of the node.
* @param p_bValToFill Pointer to the variable to put the extracted value in.
* @param bRequired Whether or not this value is required.
* @throw Error if the value is required and it is not found.
*/
void FillSingleValue(xercesc::DOMElement *p_oParent, std::string sTagName,
bool *p_bValToFill, bool bRequired);
//---------------------------------------------------------------------------
#endif