#ifndef MAPNIK_CSV_DATASOURCE_HPP #define MAPNIK_CSV_DATASOURCE_HPP // mapnik #include // stl #include class csv_datasource : public mapnik::datasource { public: csv_datasource(mapnik::parameters const& params); virtual ~csv_datasource (); mapnik::datasource::datasource_t type() const; 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 envelope() const; boost::optional get_geometry_type() const; mapnik::layer_descriptor get_descriptor() const; template void parse_csv(T& stream, std::string const& escape, std::string const& separator, std::string const& quote) const; private: void init(mapnik::parameters const& params); mutable mapnik::layer_descriptor desc_; mutable mapnik::box2d extent_; mutable std::string filename_; mutable std::string inline_string_; mutable unsigned file_length_; mutable int row_limit_; mutable std::vector features_; mutable std::string escape_; mutable std::string separator_; mutable std::string quote_; mutable std::vector headers_; mutable std::string manual_headers_; mutable bool strict_; mutable bool quiet_; mutable double filesize_max_; mutable mapnik::context_ptr ctx_; }; #endif // MAPNIK_CSV_DATASOURCE_HPP