mapnik/plugins/input/shape/shapefile.hpp

279 lines
6.1 KiB
C++
Raw Normal View History

2006-03-31 12:32:02 +02:00
/*****************************************************************************
*
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
*
* Copyright (C) 2011 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
#ifndef SHAPEFILE_HPP
#define SHAPEFILE_HPP
2005-06-14 17:06:59 +02:00
// stl
#include <cstring>
#include <fstream>
2013-06-03 05:19:33 +02:00
#include <stdexcept>
// mapnik
#include <mapnik/global.hpp>
#include <mapnik/utils.hpp>
2009-12-16 21:02:06 +01:00
#include <mapnik/box2d.hpp>
#ifdef SHAPE_MEMORY_MAPPED_FILE
#include <boost/interprocess/mapped_region.hpp>
#include <mapnik/mapped_memory_cache.hpp>
#include <boost/interprocess/streams/bufferstream.hpp>
#endif
#include <mapnik/noncopyable.hpp>
// boost
#include <boost/cstdint.hpp>
2009-12-16 21:02:06 +01:00
using mapnik::box2d;
using mapnik::read_int32_ndr;
using mapnik::read_int32_xdr;
using mapnik::read_double_ndr;
using mapnik::read_double_xdr;
2005-06-14 17:06:59 +02:00
struct RecordTag
{
typedef char* data_type;
static data_type alloc(unsigned size)
{
return static_cast<data_type>(::operator new(sizeof(char)*size));
}
static void dealloc(data_type data)
{
::operator delete(data);
}
};
struct MappedRecordTag
{
typedef const char* data_type;
static data_type alloc(unsigned) { return 0; }
static void dealloc(data_type ) {}
};
template <typename Tag>
2005-06-14 17:06:59 +02:00
struct shape_record
{
typename Tag::data_type data;
size_t size;
mutable size_t pos;
2013-01-03 21:37:45 +01:00
explicit shape_record(size_t size_)
: data(Tag::alloc(size_)),
size(size_),
pos(0)
{}
~shape_record()
{
Tag::dealloc(data);
}
void set_data(typename Tag::data_type data_)
{
data = data_;
}
typename Tag::data_type get_data()
{
return data;
}
void skip(unsigned n)
{
pos += n;
}
int read_ndr_integer()
{
2010-09-06 21:20:59 +02:00
boost::int32_t val;
read_int32_ndr(&data[pos], val);
pos += 4;
return val;
}
int read_xdr_integer()
{
2010-09-06 21:20:59 +02:00
boost::int32_t val;
read_int32_xdr(&data[pos], val);
pos += 4;
return val;
}
double read_double()
{
double val;
read_double_ndr(&data[pos], val);
pos += 8;
return val;
}
long remains()
{
return (size - pos);
}
2005-06-14 17:06:59 +02:00
};
class shape_file : mapnik::noncopyable
{
public:
2010-09-06 21:20:59 +02:00
#ifdef SHAPE_MEMORY_MAPPED_FILE
typedef boost::interprocess::ibufferstream file_source_type;
typedef shape_record<MappedRecordTag> record_type;
mapnik::mapped_region_ptr mapped_region_;
#else
2011-04-07 15:35:21 +02:00
typedef std::ifstream file_source_type;
typedef shape_record<RecordTag> record_type;
#endif
file_source_type file_;
shape_file() {}
shape_file(std::string const& file_name) :
#ifdef SHAPE_MEMORY_MAPPED_FILE
file_()
#elif defined (_WINDOWS)
2013-05-21 20:25:00 +02:00
file_(mapnik::utf8_to_utf16(file_name), std::ios::in | std::ios::binary)
#else
2011-04-07 15:35:21 +02:00
file_(file_name.c_str(), std::ios::in | std::ios::binary)
#endif
{
#ifdef SHAPE_MEMORY_MAPPED_FILE
boost::optional<mapnik::mapped_region_ptr> memory =
mapnik::mapped_memory_cache::instance().find(file_name,true);
if (memory)
{
mapped_region_ = *memory;
file_.buffer(static_cast<char*>((*memory)->get_address()),(*memory)->get_size());
}
else
{
throw std::runtime_error("could not create file mapping for "+file_name);
}
#endif
}
~shape_file() {}
inline file_source_type& file()
2010-09-06 21:20:59 +02:00
{
return file_;
}
inline bool is_open()
{
#ifdef SHAPE_MEMORY_MAPPED_FILE
return (file_.buffer().second > 0);
#else
return file_.is_open();
#endif
}
inline void read_record(record_type& rec)
{
#ifdef SHAPE_MEMORY_MAPPED_FILE
rec.set_data(file_.buffer().first + file_.tellg());
file_.seekg(rec.size, std::ios::cur);
#else
file_.read(rec.get_data(), rec.size);
#endif
}
inline int read_xdr_integer()
{
char b[4];
file_.read(b, 4);
2009-10-15 01:01:48 +02:00
boost::int32_t val;
read_int32_xdr(b, val);
return val;
}
inline int read_ndr_integer()
{
char b[4];
file_.read(b, 4);
2009-10-15 01:01:48 +02:00
boost::int32_t val;
read_int32_ndr(b, val);
return val;
}
inline double read_double()
{
double val;
#ifndef MAPNIK_BIG_ENDIAN
file_.read(reinterpret_cast<char*>(&val), 8);
2005-06-14 17:06:59 +02:00
#else
char b[8];
file_.read(b, 8);
read_double_ndr(b, val);
2005-06-14 17:06:59 +02:00
#endif
return val;
}
2009-12-16 21:02:06 +01:00
inline void read_envelope(box2d<double>& envelope)
{
#ifndef MAPNIK_BIG_ENDIAN
file_.read(reinterpret_cast<char*>(&envelope), sizeof(envelope));
2005-06-14 17:06:59 +02:00
#else
char data[4 * 8];
file_.read(data,4 * 8);
double minx, miny, maxx, maxy;
read_double_ndr(data + 0 * 8, minx);
read_double_ndr(data + 1 * 8, miny);
read_double_ndr(data + 2 * 8, maxx);
read_double_ndr(data + 3 * 8, maxy);
envelope.init(minx, miny, maxx, maxy);
#endif
}
inline void skip(std::streampos bytes)
{
file_.seekg(bytes, std::ios::cur);
}
inline void rewind()
{
seek(100);
}
inline void seek(std::streampos pos)
{
file_.seekg(pos, std::ios::beg);
}
inline std::streampos pos()
{
return file_.tellg();
}
inline bool is_eof()
{
return file_.eof();
}
2005-06-14 17:06:59 +02:00
};
#endif // SHAPEFILE_HPP