2007-06-03 12:49:19 +00:00
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
Module: FGXMLFileRead.h
|
|
|
|
Author: Jon S. Berndt
|
|
|
|
Date started: 02/04/07
|
|
|
|
Purpose: Shared base class that wraps the XML file reading logic
|
|
|
|
|
2009-08-30 08:22:03 +00:00
|
|
|
------------- Copyright (C) 2007 Jon S. Berndt (jon@jsbsim.org) -------------
|
2007-06-03 12:49:19 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU Lesser General Public License as published by the Free Software
|
|
|
|
Foundation; either version 2 of the License, or (at your option) any later
|
|
|
|
version.
|
|
|
|
|
|
|
|
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 Lesser General Public License for more
|
|
|
|
details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along with
|
|
|
|
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
|
|
Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
Further information about the GNU Lesser General Public License can also be found on
|
|
|
|
the world wide web at http://www.gnu.org.
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
SENTRY
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
#ifndef FGXMLFILEREAD_HEADER_H
|
|
|
|
#define FGXMLFILEREAD_HEADER_H
|
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
INCLUDES
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
2009-10-12 07:24:41 +00:00
|
|
|
#include "input_output/FGXMLParse.h"
|
2007-06-03 12:49:19 +00:00
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
DEFINITIONS
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
#define ID_XMLFILEREAD "$Id$"
|
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
FORWARD DECLARATIONS
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
namespace JSBSim {
|
|
|
|
|
|
|
|
class FGXMLFileRead {
|
|
|
|
public:
|
|
|
|
FGXMLFileRead(void) {}
|
|
|
|
~FGXMLFileRead(void) {}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
Element* document;
|
|
|
|
Element* LoadXMLDocument(string XML_filename)
|
|
|
|
{
|
2008-06-06 21:21:57 +00:00
|
|
|
ifstream infile;
|
2007-06-03 12:49:19 +00:00
|
|
|
|
|
|
|
if ( !XML_filename.empty() ) {
|
|
|
|
if (XML_filename.find(".xml") == string::npos) XML_filename += ".xml";
|
|
|
|
infile.open(XML_filename.c_str());
|
|
|
|
if ( !infile.is_open()) {
|
|
|
|
cerr << "Could not open file: " << XML_filename << endl;
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cerr << "No filename given." << endl;
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
readXML(infile, file_parser);
|
|
|
|
document = file_parser.GetDocument();
|
|
|
|
infile.close();
|
|
|
|
|
|
|
|
return document;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResetParser(void) {file_parser.reset();}
|
|
|
|
|
|
|
|
private:
|
|
|
|
FGXMLParse file_parser;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|