提升多边形序列化

时间:2013-11-13 16:53:51

标签: boost boost-serialization boost-geometry

我在项目中使用boost几何,我需要序列化多边形。对于许多boost数据类型,我一直在使用boost序列化而没有问题,但是boost几何似乎目前不支持序列化,因为我在序列化文件夹中找不到任何标题。

有没有众所周知的方法来实现这个目标?

感谢。

编辑:二进制序列化示例:Boost Polygon Serialization: Ring

2 个答案:

答案 0 :(得分:3)

我同意,Boost.Geometry不支持Boost.Serialization很奇怪。可能很难支持模板参数的所有可能组合,或者他们可能不会因为已经提供WKT而烦恼。

至少在“默认”容器类型的情况下,添加此类功能是微不足道的。下面的代码实现了它并且功能齐全。

下面我假设您使用自定义类(来自Qt的QPoint)作为您的指针类。其他点类型的代码几乎与我的相同。

首先,为Point类添加序列化:

#include <QPoint>

#include <boost/geometry/geometry.hpp>
#include <boost/geometry/geometries/register/point.hpp>

BOOST_GEOMETRY_REGISTER_POINT_2D_GET_SET(QPoint, int, cs::cartesian, x, y, setX, setY);
typedef QPoint MyPoint;


namespace  boost {
namespace serialization {

template<class Archive>
void serialize(Archive & ar, MyPoint& pt, const unsigned int version) {
    ar &  boost::serialization::make_nvp("x", pt.rx() );
    ar &  boost::serialization::make_nvp("y", pt.ry() );
}
} //namespace serialization
} //namespace boost

接下来,为Ring和Polygon添加序列化。这里我使用的事实是Ring和Polygon分别是std :: vector(s)的点和环,而std :: vector的序列化是在Boost.Serialization中内置的。

#include <boost/serialization/vector.hpp>
#include <boost/geometry/geometries/polygon.hpp>
#include <boost/geometry/geometries/ring.hpp>

//change template flags as you are pleased but ring and polygon has to be
//in correspondence w.r.t. to "closed" and "clockwise" policies
typedef boost::geometry::model::ring<MyPoint, false, true> MyRing;
typedef boost::geometry::model::polygon<MyPoint, false, true> MyPolygon; 

namespace  boost {
namespace serialization {

//Default ring<MyPoint> simply inherits from std::vector<MyPoint>, 
//its serialization is trivial and no implementation is needed. 

//Default polygon<MyPoint> gives direct access to outer ring and the container of inner rings
template<class Archive>
void serialize(Archive & ar, MyPolygon& poly, const unsigned int version) {
    ar &  boost::serialization::make_nvp("outer", poly.outer());
    ar &  boost::serialization::make_nvp("inners", poly.inners());
}


} //namespace serialization
} //namespace boost

就是这样,你已经完成了,现在你可以将MyPolygon和Boost.Serialize一起用作任何其他类:

#include <boost/archive/xml_iarchive.hpp>
#include <boost/archive/xml_oarchive.hpp>

void foo_out(std::ostream & oss, const MyPolygon & poly)
{
    boost::archive::xml_oarchive oa(oss);
    oa & BOOST_SERIALIZATION_NVP(poly);
}

void foo_in(std::istream & iss, MyPolygon & poly)
{
    boost::archive::xml_iarchive ia(iss);
    ia & BOOST_SERIALIZATION_NVP(poly);
}

享受!

答案 1 :(得分:1)

Boost.Geometry不支持Boost.Serialization。您可以读写WKT(众所周知的文本),这也是许多数据库使用的标准化ASCII格式。参见例如: http://en.wikipedia.org/wiki/Well-known_text

还有WKB(众所周知的二进制文件),但尚未100%支持。但是,对于多边形,它是受支持的。