/usr/include/OTB-5.8/otbOGRGeometriesVisitor.h is in libotb-dev 5.8.0+dfsg-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | /*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef otbOGRGeometriesVisitor_h
#define otbOGRGeometriesVisitor_h
#include <boost/mpl/assert.hpp>
#include <boost/type_traits/is_same.hpp>
#include <boost/type_traits/add_const.hpp>
#include <boost/type_traits/remove_const.hpp>
#include "ogr_geometry.h"
namespace otb
{
namespace ogr
{
/**\ingroup boost
* \brief propagation of const-qualifier.
* \note This type traits is likelly to appear in boost at some point in time.
* \note As a consequence, it follows C++ standard and boost naming policy.
* \since OTB v 3.14.0
* @{
*/
template <typename Tin, typename Tout>
struct propagate_const
{ typedef Tout type; };
template <typename Tin, typename Tout>
struct propagate_const<Tin const, Tout>
{ typedef typename boost::add_const<Tout>::type type; };
/** @} */
#define TRY_APPLY(TYPE, geometry, functor) \
if (typename propagate_const<TGeometry, TYPE>::type * dc_##TYPE \
= dynamic_cast<typename propagate_const<TGeometry, TYPE>::type*>(geometry))\
{\
return functor(dc_##TYPE); \
}
/**\ingroup gGeometry
* External polymorphic call of functions on \c OGRGeometry.
* This helper function tries to polymorphically dispatch the call of a function
* on the right \c OGRGeometry subtype.
* \internal
* In a perfect world, \c OGRGeometry would have provided a visitor to extend
* the number of functions to polymorphically %apply on them. As this isn't the
* case, \c apply executes many downcasts until it finds the right subtype.
*
* \tparam TResult type of the result
* \tparam TGeometry matched an \c OGRGeometry that may or may not be const
* qualified.
* \tparam TFunctor functor to apply on the geometry.
* \todo Support a list of types to check
* \since OTB v 3.14.0
*/
template <typename TResult, class TGeometry, typename TFunctor>
TResult apply(TGeometry * geometry, TFunctor functor)
{
BOOST_MPL_ASSERT((boost::is_same<OGRGeometry, typename boost::remove_const<TGeometry>::type >));
TRY_APPLY(OGRPoint, geometry, functor)
else TRY_APPLY(OGRLinearRing, geometry, functor)
else TRY_APPLY(OGRLineString, geometry, functor)
// else TRY_APPLY(OGRCurve, geometry, functor)
else TRY_APPLY(OGRPolygon, geometry, functor)
// else TRY_APPLY(OGRSurface, geometry, functor)
else TRY_APPLY(OGRMultiLineString, geometry, functor)
else TRY_APPLY(OGRMultiPoint, geometry, functor)
else TRY_APPLY(OGRMultiPolygon, geometry, functor)
else TRY_APPLY(OGRGeometryCollection, geometry, functor)
{
// functor(geometry);
}
return TResult(); // keep compiler happy
}
} // ogr namespace
} // end namespace otb
#ifndef OTB_MANUAL_INSTANTIATION
// #include "otbOGRGeometriesVisitor.txx"
#endif
#endif // otbOGRGeometriesVisitor_h
|