JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGXMLParse Class Reference

Detailed Description

Encapsulates an XML parser based on the EasyXML parser from the SimGear library.

Author
Jon S. Berndt

Definition at line 67 of file FGXMLParse.h.

#include <FGXMLParse.h>

+ Inheritance diagram for FGXMLParse:
+ Collaboration diagram for FGXMLParse:

Public Member Functions

void data (const char *s, int length) override
 
void endElement (const char *name) override
 
ElementGetDocument (void)
 
void reset (void)
 
void startElement (const char *name, const XMLAttributes &atts) override
 
void warning (const char *message, int line, int column) override
 

Constructor & Destructor Documentation

◆ FGXMLParse()

FGXMLParse ( void  )
inline

Definition at line 70 of file FGXMLParse.h.

70: current_element(nullptr) {}

Member Function Documentation

◆ data()

void data ( const char *  s,
int  length 
)
override

Definition at line 102 of file FGXMLParse.cpp.

103{
104 working_string += string(s, length);
105}

◆ endElement()

void endElement ( const char *  name)
override

Definition at line 94 of file FGXMLParse.cpp.

95{
96 dumpDataLines();
97 current_element = current_element->GetParent();
98}
Element * GetParent(void)
Returns a pointer to the parent of an element.

◆ GetDocument()

Element * GetDocument ( void  )
inline

Definition at line 72 of file FGXMLParse.h.

72{return document;}

◆ reset()

void reset ( void  )

Definition at line 43 of file FGXMLParse.cpp.

44{
45 current_element = document = nullptr;
46 working_string.erase();
47}

◆ startElement()

void startElement ( const char *  name,
const XMLAttributes &  atts 
)
override

Definition at line 62 of file FGXMLParse.cpp.

63{
64 if (!document) {
65 document = new Element(name);
66 current_element = document;
67 } else {
68 dumpDataLines();
69
70 Element* temp_element = new Element(name);
71 if (temp_element) {
72 temp_element->SetParent(current_element);
73 current_element->AddChildElement(temp_element);
74 }
75 current_element = temp_element;
76 }
77
78 if (!current_element) {
79 cerr << "In file " << getPath() << ": line " << getLine() << endl
80 << "No current element read (running out of memory?)" << endl;
81 throw("Fatal error");
82 }
83
84 current_element->SetLineNumber(getLine());
85 current_element->SetFileName(getPath());
86
87 for (int i=0; i<atts.size();i++) {
88 current_element->AddAttribute(atts.getName(i), atts.getValue(i));
89 }
90}
void SetFileName(const std::string &name)
Set the name of the file in which the element has been read.
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.

◆ warning()

void warning ( const char *  message,
int  line,
int  column 
)
override

Definition at line 109 of file FGXMLParse.cpp.

110{
111 cerr << "Warning: " << message << " line: " << line << " column: " << column
112 << endl;
113}

The documentation for this class was generated from the following files: