2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:37:50 +01: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
|
|
|
*
|
2011-10-23 21:09: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
|
|
|
|
2006-10-04 13:22:18 +02:00
|
|
|
#ifndef DBFFILE_HPP
|
|
|
|
#define DBFFILE_HPP
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2012-12-17 03:19:52 +01:00
|
|
|
// mapnik
|
2008-02-04 12:12:32 +01:00
|
|
|
#include <mapnik/feature.hpp>
|
2012-12-17 03:19:52 +01:00
|
|
|
#include <mapnik/noncopyable.hpp>
|
2013-01-04 18:23:06 +01:00
|
|
|
#include <mapnik/unicode.hpp>
|
2013-08-13 18:19:01 +02:00
|
|
|
#ifdef SHAPE_MEMORY_MAPPED_FILE
|
2013-05-30 23:32:20 +02:00
|
|
|
#include <mapnik/mapped_memory_cache.hpp>
|
2013-08-13 18:19:01 +02:00
|
|
|
#endif
|
|
|
|
|
2012-12-17 03:19:52 +01:00
|
|
|
|
2008-02-04 12:12:32 +01:00
|
|
|
// boost
|
2011-04-06 15:02:31 +02:00
|
|
|
#include <boost/interprocess/streams/bufferstream.hpp>
|
|
|
|
|
2008-02-04 12:12:32 +01:00
|
|
|
// stl
|
2005-06-14 17:06:59 +02:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <cassert>
|
2011-04-07 15:35:21 +02:00
|
|
|
#include <fstream>
|
2005-06-14 17:06:59 +02:00
|
|
|
|
|
|
|
struct field_descriptor
|
|
|
|
{
|
|
|
|
int index_;
|
|
|
|
std::string name_;
|
|
|
|
char type_;
|
|
|
|
int length_;
|
|
|
|
int dec_;
|
2011-04-07 15:35:21 +02:00
|
|
|
std::streampos offset_;
|
2005-06-14 17:06:59 +02:00
|
|
|
};
|
|
|
|
|
2008-02-04 12:12:32 +01:00
|
|
|
|
2012-12-17 03:19:52 +01:00
|
|
|
class dbf_file : private mapnik::noncopyable
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2009-07-08 01:56:01 +02:00
|
|
|
private:
|
|
|
|
int num_records_;
|
|
|
|
int num_fields_;
|
2011-04-07 15:35:21 +02:00
|
|
|
std::size_t record_length_;
|
2009-07-08 01:56:01 +02:00
|
|
|
std::vector<field_descriptor> fields_;
|
|
|
|
#ifdef SHAPE_MEMORY_MAPPED_FILE
|
2011-04-06 15:02:31 +02:00
|
|
|
boost::interprocess::ibufferstream file_;
|
2013-05-30 23:32:20 +02:00
|
|
|
mapnik::mapped_region_ptr mapped_region_;
|
2009-07-08 01:56:01 +02:00
|
|
|
#else
|
2011-04-07 15:35:21 +02:00
|
|
|
std::ifstream file_;
|
2009-07-08 01:56:01 +02:00
|
|
|
#endif
|
2010-09-02 22:20:42 +02:00
|
|
|
char* record_;
|
2006-10-04 13:22:18 +02:00
|
|
|
public:
|
2010-09-02 22:20:42 +02:00
|
|
|
dbf_file();
|
2012-09-03 19:27:48 +02:00
|
|
|
dbf_file(std::string const& file_name);
|
2010-09-02 22:20:42 +02:00
|
|
|
~dbf_file();
|
|
|
|
bool is_open();
|
|
|
|
int num_records() const;
|
|
|
|
int num_fields() const;
|
|
|
|
field_descriptor const& descriptor(int col) const;
|
|
|
|
void move_to(int index);
|
|
|
|
std::string string_value(int col) const;
|
2013-01-04 18:23:06 +01:00
|
|
|
void add_attribute(int col, mapnik::transcoder const& tr, mapnik::feature_impl & f) const throw();
|
2010-09-02 22:20:42 +02:00
|
|
|
private:
|
|
|
|
void read_header();
|
|
|
|
int read_short();
|
|
|
|
int read_int();
|
|
|
|
void skip(int bytes);
|
2005-06-14 17:06:59 +02:00
|
|
|
};
|
2006-10-04 13:22:18 +02:00
|
|
|
|
|
|
|
#endif //DBFFILE_HPP
|