32#include "FGXMLParse.h"
33#include "input_output/string_utilities.h"
43void FGXMLParse::reset(
void)
45 current_element = document =
nullptr;
46 working_string.erase();
51void FGXMLParse::dumpDataLines(
void)
53 if (!working_string.empty()) {
54 for (
auto s: split(working_string,
'\n'))
55 current_element->AddData(s);
57 working_string.erase();
62void FGXMLParse::startElement (
const char * name,
const XMLAttributes &atts)
65 document =
new Element(name);
66 current_element = document;
70 Element* temp_element =
new Element(name);
72 temp_element->SetParent(current_element);
75 current_element = temp_element;
78 if (!current_element) {
79 cerr <<
"In file " << getPath() <<
": line " << getLine() << endl
80 <<
"No current element read (running out of memory?)" << endl;
87 for (
int i=0; i<atts.size();i++) {
88 current_element->
AddAttribute(atts.getName(i), atts.getValue(i));
94void FGXMLParse::endElement (
const char * name)
97 current_element = current_element->
GetParent();
102void FGXMLParse::data (
const char * s,
int length)
104 working_string += string(s, length);
109void FGXMLParse::warning (
const char * message,
int line,
int column)
111 cerr <<
"Warning: " << message <<
" line: " << line <<
" column: " << column
void SetFileName(const std::string &name)
Set the name of the file in which the element has been read.
Element * GetParent(void)
Returns a pointer to the parent of an element.
void AddAttribute(const std::string &name, const std::string &value)
Stores an attribute belonging to this element.
void SetLineNumber(int line)
Set the line number at which the element has been read.
void AddChildElement(Element *el)
Adds a child element to the list of children stored for this element.