mapnik/plugins/input/shape/shape_io.hpp

99 lines
2.8 KiB
C++
Raw Normal View History

2006-03-31 12:32:02 +02:00
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* Copyright (C) 2006 Artem Pavlenko
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +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,
2005-06-14 17:06:59 +02:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2006-03-31 12:32:02 +02:00
* 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
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
*****************************************************************************/
2005-06-14 17:06:59 +02:00
2009-07-03 15:28:59 +02:00
#ifndef SHAPE_IO_HPP
#define SHAPE_IO_HPP
2005-06-14 17:06:59 +02:00
2009-07-03 15:28:59 +02:00
// mapnik
#include "dbffile.hpp"
#include "shapefile.hpp"
#include "shp_index.hpp"
2009-07-03 15:28:59 +02:00
// boost
#include <boost/utility.hpp>
2010-09-06 21:20:59 +02:00
#include <boost/shared_ptr.hpp>
#include <boost/iostreams/stream.hpp>
#include <boost/iostreams/device/file.hpp>
#include <boost/iostreams/device/mapped_file.hpp>
2005-06-14 17:06:59 +02:00
2009-07-03 15:28:59 +02:00
struct shape_io : boost::noncopyable
2005-06-14 17:06:59 +02:00
{
static const std::string SHP;
static const std::string SHX;
static const std::string DBF;
static const std::string INDEX;
unsigned type_;
shape_file shp_;
shape_file shx_;
dbf_file dbf_;
2010-09-06 21:20:59 +02:00
boost::shared_ptr<shape_file> index_;
unsigned reclength_;
unsigned id_;
box2d<double> cur_extent_;
public:
enum shapeType
{
shape_null = 0,
shape_point = 1,
shape_polyline = 3,
shape_polygon = 5,
shape_multipoint = 8,
shape_pointz = 11,
shape_polylinez = 13,
shape_polygonz = 15,
shape_multipointz = 18,
shape_pointm = 21,
shape_polylinem = 23,
shape_polygonm = 25,
shape_multipointm = 28,
shape_multipatch = 31
};
2005-06-14 17:06:59 +02:00
shape_io(const std::string& shape_name, bool open_index=true);
~shape_io();
shape_file& shp();
shape_file& shx();
dbf_file& dbf();
2010-09-06 21:20:59 +02:00
inline boost::shared_ptr<shape_file>& index()
{
2010-09-06 21:20:59 +02:00
return index_;
}
2010-09-06 21:20:59 +02:00
inline bool has_index() const
{
2010-09-06 21:20:59 +02:00
return (index_ && index_->is_open());
}
void move_to(int id);
int type() const;
const box2d<double>& current_extent() const;
mapnik::geometry_type * read_polyline();
mapnik::geometry_type * read_polylinem();
mapnik::geometry_type * read_polylinez();
mapnik::geometry_type * read_polygon();
mapnik::geometry_type * read_polygonm();
mapnik::geometry_type * read_polygonz();
2005-06-14 17:06:59 +02:00
};
2009-07-03 15:28:59 +02:00
#endif //SHAPE_IO_HPP