mapnik/plugins/input/postgis/postgis_featureset.hpp

62 lines
1.9 KiB
C++
Raw Normal View History

2011-05-10 16:22:47 +02:00
/*****************************************************************************
*
2011-05-10 16:22:47 +02:00
* This file is part of Mapnik (c++ mapping toolkit)
*
2015-06-16 12:49:16 +02:00
* Copyright (C) 2015 Artem Pavlenko
2011-05-10 16:22:47 +02:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*****************************************************************************/
#ifndef POSTGIS_FEATURESET_HPP
#define POSTGIS_FEATURESET_HPP
// mapnik
#include <mapnik/box2d.hpp>
#include <mapnik/datasource.hpp>
#include <mapnik/feature.hpp>
#include <mapnik/unicode.hpp>
2011-05-10 16:22:47 +02:00
using mapnik::Featureset;
using mapnik::box2d;
using mapnik::feature_ptr;
using mapnik::transcoder;
using mapnik::context_ptr;
2011-05-10 16:22:47 +02:00
class IResultSet;
class postgis_featureset : public mapnik::Featureset
2011-05-10 16:22:47 +02:00
{
public:
postgis_featureset(std::shared_ptr<IResultSet> const& rs,
context_ptr const& ctx,
2011-05-10 16:22:47 +02:00
std::string const& encoding,
bool key_field,
bool key_field_as_attribute);
feature_ptr next();
2011-05-10 16:22:47 +02:00
~postgis_featureset();
2012-03-28 22:10:48 +02:00
private:
std::shared_ptr<IResultSet> rs_;
2012-03-28 22:10:48 +02:00
context_ptr ctx_;
const std::unique_ptr<mapnik::transcoder> tr_;
2012-07-24 02:21:29 +02:00
unsigned totalGeomSize_;
mapnik::value_integer feature_id_;
2012-03-28 22:10:48 +02:00
bool key_field_;
bool key_field_as_attribute_;
2011-05-10 16:22:47 +02:00
};
#endif // POSTGIS_FEATURESET_HPP