Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dmitri Naumov
ogs
Commits
5be0ef79
Commit
5be0ef79
authored
9 years ago
by
Christoph Lehmann
Browse files
Options
Downloads
Patches
Plain Diff
[FIO] cleaned up inlcudes, removed ifdef, added todo
parent
163ece6d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
FileIO/XmlIO/Boost/BoostXmlGmlInterface.cpp
+10
-17
10 additions, 17 deletions
FileIO/XmlIO/Boost/BoostXmlGmlInterface.cpp
FileIO/XmlIO/Boost/BoostXmlGmlInterface.h
+1
-1
1 addition, 1 deletion
FileIO/XmlIO/Boost/BoostXmlGmlInterface.h
with
11 additions
and
18 deletions
FileIO/XmlIO/Boost/BoostXmlGmlInterface.cpp
+
10
−
17
View file @
5be0ef79
...
@@ -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
;
}
}
...
...
This diff is collapsed.
Click to expand it.
FileIO/XmlIO/Boost/BoostXmlGmlInterface.h
+
1
−
1
View file @
5be0ef79
...
@@ -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
{
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment