Skip to content
Snippets Groups Projects
Commit 5be0ef79 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[FIO] cleaned up inlcudes, removed ifdef, added todo

parent 163ece6d
No related branches found
No related tags found
No related merge requests found
...@@ -12,19 +12,12 @@ ...@@ -12,19 +12,12 @@
* *
*/ */
#include "BoostXmlGmlInterface.h"
#include <limits>
#include <utility>
#include <cstdlib>
#include <boost/version.hpp>
#include <boost/property_tree/xml_parser.hpp> #include <boost/property_tree/xml_parser.hpp>
#include <logog/include/logog.hpp> #include <logog/include/logog.hpp>
#include "BoostXmlGmlInterface.h"
#include "BaseLib/ConfigTreeUtil.h" #include "BaseLib/ConfigTreeUtil.h"
#include "BaseLib/StringTools.h"
#include "GeoLib/GEOObjects.h" #include "GeoLib/GEOObjects.h"
#include "GeoLib/Point.h" #include "GeoLib/Point.h"
#include "GeoLib/PointVec.h" #include "GeoLib/PointVec.h"
...@@ -36,7 +29,7 @@ ...@@ -36,7 +29,7 @@
namespace namespace
{ {
//! Method for handling conversion to string uniformly //! Method for handling conversion to string uniformly across all types and std::string; see std::string overload below.
template<typename T> std::string tostring(T const& value) template<typename T> std::string tostring(T const& value)
{ {
return std::to_string(value); return std::to_string(value);
...@@ -73,6 +66,7 @@ BoostXmlGmlInterface::BoostXmlGmlInterface(GeoLib::GEOObjects& geo_objs) : ...@@ -73,6 +66,7 @@ BoostXmlGmlInterface::BoostXmlGmlInterface(GeoLib::GEOObjects& geo_objs) :
bool BoostXmlGmlInterface::readFile(const std::string &fname) bool BoostXmlGmlInterface::readFile(const std::string &fname)
{ {
//! \todo Reading geometries is always strict.
auto doc = BaseLib::makeConfigTree(fname, true, "OpenGeoSysGLI"); auto doc = BaseLib::makeConfigTree(fname, true, "OpenGeoSysGLI");
// ignore attributes related to XML schema // ignore attributes related to XML schema
...@@ -173,7 +167,9 @@ void BoostXmlGmlInterface::readPolylines( ...@@ -173,7 +167,9 @@ void BoostXmlGmlInterface::readPolylines(
for (auto const pl : polylinesRoot.getConfSubtreeList("polyline")) for (auto const pl : polylinesRoot.getConfSubtreeList("polyline"))
{ {
auto const id = pl.getConfAttribute<std::size_t>("id"); auto const id = pl.getConfAttribute<std::size_t>("id");
(void) id; // id not used // The id is not used but must be present in the GML file.
// That's why pl.ignore...() cannot be used.
(void) id;
polylines.push_back(new GeoLib::Polyline(points)); polylines.push_back(new GeoLib::Polyline(points));
...@@ -204,7 +200,9 @@ void BoostXmlGmlInterface::readSurfaces( ...@@ -204,7 +200,9 @@ void BoostXmlGmlInterface::readSurfaces(
for (auto const& sfc : surfacesRoot.getConfSubtreeList("surface")) for (auto const& sfc : surfacesRoot.getConfSubtreeList("surface"))
{ {
auto const id = sfc.getConfAttribute<std::size_t>("id"); auto const id = sfc.getConfAttribute<std::size_t>("id");
(void) id; // id not used // The id is not used but must be present in the GML file.
// That's why sfc.ignore...() cannot be used.
(void) id;
surfaces.push_back(new GeoLib::Surface(points)); surfaces.push_back(new GeoLib::Surface(points));
if (auto const s_name = sfc.getConfAttributeOptional<std::string>("name")) if (auto const s_name = sfc.getConfAttributeOptional<std::string>("name"))
...@@ -283,12 +281,7 @@ bool BoostXmlGmlInterface::write() ...@@ -283,12 +281,7 @@ bool BoostXmlGmlInterface::write()
addPolylinesToPropertyTree(geometry_set); addPolylinesToPropertyTree(geometry_set);
addSurfacesToPropertyTree(geometry_set); addSurfacesToPropertyTree(geometry_set);
// TODO remove ifdef
#if BOOST_VERSION <= 105500
boost::property_tree::xml_writer_settings<char> settings('\t', 1);
#else
boost::property_tree::xml_writer_settings<std::string> settings('\t', 1); boost::property_tree::xml_writer_settings<std::string> settings('\t', 1);
#endif // BOOST_VERSION
write_xml(_out, pt, settings); write_xml(_out, pt, settings);
return true; return true;
} }
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include "BaseLib/ConfigTreeNew.h" #include "BaseLib/ConfigTreeNew.h"
#include "../XMLInterface.h" #include "FileIO/XmlIO/XMLInterface.h"
namespace GeoLib namespace GeoLib
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment