2011-10-12 03:11:59 +02:00
|
|
|
#ifndef MAPNIK_CSV_DATASOURCE_HPP
|
|
|
|
#define MAPNIK_CSV_DATASOURCE_HPP
|
|
|
|
|
|
|
|
// mapnik
|
|
|
|
#include <mapnik/datasource.hpp>
|
|
|
|
|
|
|
|
// stl
|
|
|
|
#include <vector>
|
|
|
|
|
2011-11-14 04:33:57 +01:00
|
|
|
class csv_datasource : public mapnik::datasource
|
2011-10-12 03:11:59 +02:00
|
|
|
{
|
2011-11-14 04:33:57 +01:00
|
|
|
public:
|
|
|
|
csv_datasource(mapnik::parameters const& params, bool bind=true);
|
|
|
|
virtual ~csv_datasource ();
|
2012-01-17 07:09:46 +01:00
|
|
|
mapnik::datasource::datasource_t type() const;
|
2011-11-14 04:33:57 +01:00
|
|
|
static std::string name();
|
|
|
|
mapnik::featureset_ptr features(mapnik::query const& q) const;
|
|
|
|
mapnik::featureset_ptr features_at_point(mapnik::coord2d const& pt) const;
|
|
|
|
mapnik::box2d<double> envelope() const;
|
2012-01-17 07:09:46 +01:00
|
|
|
boost::optional<mapnik::datasource::geometry_t> get_geometry_type() const;
|
2011-11-14 04:33:57 +01:00
|
|
|
mapnik::layer_descriptor get_descriptor() const;
|
|
|
|
void bind() const;
|
|
|
|
template <typename T>
|
|
|
|
void parse_csv(T& stream,
|
|
|
|
std::string const& escape,
|
|
|
|
std::string const& separator,
|
|
|
|
std::string const& quote) const;
|
|
|
|
private:
|
|
|
|
mutable mapnik::layer_descriptor desc_;
|
|
|
|
mutable mapnik::box2d<double> extent_;
|
|
|
|
mutable std::string filename_;
|
|
|
|
mutable std::string inline_string_;
|
|
|
|
mutable unsigned file_length_;
|
|
|
|
mutable int row_limit_;
|
|
|
|
mutable std::vector<mapnik::feature_ptr> features_;
|
|
|
|
mutable std::string escape_;
|
|
|
|
mutable std::string separator_;
|
|
|
|
mutable std::string quote_;
|
|
|
|
mutable std::vector<std::string> headers_;
|
|
|
|
mutable std::string manual_headers_;
|
|
|
|
mutable bool strict_;
|
|
|
|
mutable bool quiet_;
|
|
|
|
mutable double filesize_max_;
|
2012-01-17 19:34:08 +01:00
|
|
|
mutable mapnik::context_ptr ctx_;
|
2011-10-12 03:11:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // MAPNIK_CSV_DATASOURCE_HPP
|