2016-01-02 14:51:32 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./lib/serialisation/XmlIO.cc
|
|
|
|
|
|
|
|
Copyright (C) 2015
|
|
|
|
|
|
|
|
Author: Antonin Portelli <antonin.portelli@me.com>
|
|
|
|
Author: paboyle <paboyle@ph.ed.ac.uk>
|
|
|
|
|
|
|
|
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; 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
|
|
|
See the full license in the file "LICENSE" in the top level distribution directory
|
|
|
|
*************************************************************************************/
|
|
|
|
/* END LEGAL */
|
2015-11-16 18:14:37 +00:00
|
|
|
#include <Grid.h>
|
|
|
|
|
2015-12-08 13:53:33 +00:00
|
|
|
using namespace Grid;
|
|
|
|
using namespace std;
|
|
|
|
|
2015-11-16 18:14:37 +00:00
|
|
|
// Writer implementation ///////////////////////////////////////////////////////
|
2015-12-08 13:53:33 +00:00
|
|
|
XmlWriter::XmlWriter(const string &fileName)
|
2015-11-16 18:14:37 +00:00
|
|
|
: fileName_(fileName)
|
|
|
|
{
|
|
|
|
node_ = doc_.append_child();
|
|
|
|
node_.set_name("grid");
|
|
|
|
}
|
|
|
|
|
|
|
|
XmlWriter::~XmlWriter(void)
|
|
|
|
{
|
|
|
|
doc_.save_file(fileName_.c_str(), " ");
|
|
|
|
}
|
|
|
|
|
2015-12-08 13:53:33 +00:00
|
|
|
void XmlWriter::push(const string &s)
|
2015-11-16 18:14:37 +00:00
|
|
|
{
|
|
|
|
node_ = node_.append_child(s.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlWriter::pop(void)
|
|
|
|
{
|
|
|
|
node_ = node_.parent();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reader implementation ///////////////////////////////////////////////////////
|
2015-12-08 13:53:33 +00:00
|
|
|
XmlReader::XmlReader(const string &fileName)
|
2015-11-16 18:14:37 +00:00
|
|
|
: fileName_(fileName)
|
|
|
|
{
|
|
|
|
pugi::xml_parse_result result = doc_.load_file(fileName_.c_str());
|
|
|
|
|
|
|
|
if ( !result )
|
|
|
|
{
|
2015-12-08 13:53:33 +00:00
|
|
|
cerr << "XML error description: " << result.description() << "\n";
|
|
|
|
cerr << "XML error offset : " << result.offset << "\n";
|
|
|
|
abort();
|
2015-11-16 18:14:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
node_ = doc_.child("grid");
|
|
|
|
}
|
|
|
|
|
2015-12-08 13:53:33 +00:00
|
|
|
void XmlReader::push(const string &s)
|
2015-11-16 18:14:37 +00:00
|
|
|
{
|
|
|
|
node_ = node_.child(s.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlReader::pop(void)
|
|
|
|
{
|
|
|
|
node_ = node_.parent();
|
|
|
|
}
|
|
|
|
|
2015-12-23 14:20:05 +00:00
|
|
|
bool XmlReader::nextElement(const std::string &s)
|
|
|
|
{
|
|
|
|
if (node_.next_sibling(s.c_str()))
|
|
|
|
{
|
|
|
|
node_ = node_.next_sibling(s.c_str());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-16 18:14:37 +00:00
|
|
|
template <>
|
2015-12-08 13:53:33 +00:00
|
|
|
void XmlReader::readDefault(const string &s, string &output)
|
2015-11-16 18:14:37 +00:00
|
|
|
{
|
|
|
|
output = node_.child(s.c_str()).first_child().value();
|
|
|
|
}
|