mapnik/plugins/input/shape/shapefile.hpp

200 lines
5.2 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
//$Id: shapefile.hpp 33 2005-04-04 13:01:03Z pavlenko $
2005-06-14 17:06:59 +02:00
#ifndef SHAPEFILE_HPP
#define SHAPEFILE_HPP
2005-06-14 17:06:59 +02:00
#include <mapnik/envelope.hpp>
// boost
#include <boost/utility.hpp>
#include <boost/iostreams/stream.hpp>
#include <boost/iostreams/device/file.hpp>
#include <boost/iostreams/device/mapped_file.hpp>
2008-03-24 15:03:05 +01:00
#include <cstring>
using mapnik::Envelope;
2005-06-14 17:06:59 +02:00
struct shape_record
{
const char* data;
size_t size;
mutable size_t pos;
explicit shape_record(size_t size)
: size(size),
pos(0) {}
void set_data(const char * data_)
{
data = data_;
}
void skip(unsigned n)
{
pos+=n;
}
int read_ndr_integer()
{
int val=(data[pos] & 0xff) |
(data[pos+1] & 0xff) << 8 |
(data[pos+2] & 0xff) << 16 |
(data[pos+3] & 0xff) << 24;
pos+=4;
return val;
}
int read_xdr_integer()
{
int val=(data[pos] & 0xff) << 24 |
(data[pos+1] & 0xff) << 16 |
(data[pos+2] & 0xff) << 8 |
(data[pos+3] & 0xff);
pos+=4;
return val;
}
double read_double()
{
double val;
2005-06-14 17:06:59 +02:00
#ifndef WORDS_BIGENDIAN
std::memcpy(&val,&data[pos],8);
2005-06-14 17:06:59 +02:00
#else
long long bits = ((long long)data[pos] & 0xff) |
((long long)data[pos+1] & 0xff) << 8 |
((long long)data[pos+2] & 0xff) << 16 |
((long long)data[pos+3] & 0xff) << 24 |
((long long)data[pos+4] & 0xff) << 32 |
((long long)data[pos+5] & 0xff) << 40 |
((long long)data[pos+6] & 0xff) << 48 |
((long long)data[pos+7] & 0xff) << 56 ;
std::memcpy(&val,&bits,8);
2005-06-14 17:06:59 +02:00
#endif
pos+=8;
return val;
}
long remains()
{
return (size-pos);
}
~shape_record() {}
2005-06-14 17:06:59 +02:00
};
using namespace boost::iostreams;
2005-06-14 17:06:59 +02:00
class shape_file : boost::noncopyable
{
stream<mapped_file_source> file_;
public:
shape_file();
shape_file(const std::string& file_name);
~shape_file();
bool is_open();
void close();
inline void read_record(shape_record& rec)
{
rec.set_data(file_->data() + file_.tellg());
file_.seekg(rec.size,std::ios::cur);
}
inline int read_xdr_integer()
{
char b[4];
file_.read(b, 4);
return (b[3] & 0xffu) | ((b[2] & 0xffu) << 8) |
((b[1] & 0xffu) << 16) | ((b[0] & 0xffu) << 24);
}
inline int read_ndr_integer()
{
char b[4];
file_.read(b,4);
return (b[0]&0xffu) | ((b[1]&0xffu) << 8) |
((b[2]&0xffu) << 16) | ((b[3]&0xffu) << 24);
}
inline double read_double()
{
double val;
2005-06-14 17:06:59 +02:00
#ifndef WORDS_BIGENDIAN
file_.read(reinterpret_cast<char*>(&val),8);
2005-06-14 17:06:59 +02:00
#else
char b[8];
file_.read(b,8);
long long bits = ((long long)b[0] & 0xff) |
((long long)b[1] & 0xff) << 8 |
((long long)b[2] & 0xff) << 16 |
((long long)b[3] & 0xff) << 24 |
((long long)b[4] & 0xff) << 32 |
((long long)b[5] & 0xff) << 40 |
((long long)b[6] & 0xff) << 48 |
((long long)b[7] & 0xff) << 56 ;
memcpy(&val,&bits,8);
2005-06-14 17:06:59 +02:00
#endif
return val;
}
inline void read_envelope(Envelope<double>& envelope)
{
2005-06-14 17:06:59 +02:00
#ifndef WORDS_BIGENDIAN
file_.read(reinterpret_cast<char*>(&envelope),sizeof(envelope));
2005-06-14 17:06:59 +02:00
#else
double minx=read_double();
double miny=read_double();
double maxx=read_double();
double maxy=read_double();
envelope.init(minx,miny,maxx,maxy);
2005-06-14 17:06:59 +02:00
#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