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
|
|
|
*****************************************************************************/
|
2006-10-04 13:22:18 +02:00
|
|
|
// stl
|
|
|
|
#include <string>
|
|
|
|
// boost
|
2006-03-22 15:52:32 +01:00
|
|
|
#include <boost/algorithm/string.hpp>
|
2006-05-19 14:26:23 +02:00
|
|
|
#include <boost/lexical_cast.hpp>
|
2006-10-04 13:22:18 +02:00
|
|
|
// mapnik
|
|
|
|
#include <mapnik/utils.hpp>
|
2007-02-14 20:54:39 +01:00
|
|
|
#include <mapnik/unicode.hpp>
|
2006-10-04 13:22:18 +02:00
|
|
|
#include "dbffile.hpp"
|
2005-06-14 17:06:59 +02:00
|
|
|
|
|
|
|
dbf_file::dbf_file()
|
2007-02-14 20:54:39 +01:00
|
|
|
: num_records_(0),
|
2005-06-14 17:06:59 +02:00
|
|
|
num_fields_(0),
|
|
|
|
record_length_(0),
|
2007-02-14 20:54:39 +01:00
|
|
|
record_(0) {}
|
|
|
|
|
2008-02-04 12:12:32 +01:00
|
|
|
dbf_file::dbf_file(std::string const& file_name)
|
2007-02-14 20:54:39 +01:00
|
|
|
:num_records_(0),
|
|
|
|
num_fields_(0),
|
|
|
|
record_length_(0),
|
2008-02-04 12:12:32 +01:00
|
|
|
file_(file_name),
|
2007-02-14 20:54:39 +01:00
|
|
|
record_(0)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
if (file_.is_open())
|
|
|
|
{
|
|
|
|
read_header();
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dbf_file::~dbf_file()
|
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
::operator delete(record_);
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool dbf_file::is_open()
|
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
return file_.is_open();
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void dbf_file::close()
|
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
if (file_ && file_.is_open())
|
|
|
|
file_.close();
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dbf_file::num_records() const
|
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
return num_records_;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dbf_file::num_fields() const
|
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
return num_fields_;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void dbf_file::move_to(int index)
|
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
if (index>0 && index<=num_records_)
|
|
|
|
{
|
|
|
|
long pos=(num_fields_<<5)+34+(index-1)*(record_length_+1);
|
|
|
|
file_.seekg(pos,std::ios::beg);
|
|
|
|
file_.read(record_,record_length_);
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::string dbf_file::string_value(int col) const
|
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
if (col>=0 && col<num_fields_)
|
|
|
|
{
|
|
|
|
return std::string(record_+fields_[col].offset_,fields_[col].length_);
|
|
|
|
}
|
|
|
|
return "";
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const field_descriptor& dbf_file::descriptor(int col) const
|
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
assert(col>=0 && col<num_fields_);
|
|
|
|
return fields_[col];
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-14 20:54:39 +01:00
|
|
|
void dbf_file::add_attribute(int col, mapnik::transcoder const& tr, Feature const& f) const throw()
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
if (col>=0 && col<num_fields_)
|
|
|
|
{
|
|
|
|
std::string name=fields_[col].name_;
|
2008-02-18 22:40:34 +01:00
|
|
|
std::string str(record_+fields_[col].offset_,fields_[col].length_);
|
|
|
|
boost::trim(str);
|
|
|
|
|
2007-02-14 20:54:39 +01:00
|
|
|
switch (fields_[col].type_)
|
|
|
|
{
|
|
|
|
case 'C':
|
|
|
|
case 'D'://todo handle date?
|
|
|
|
case 'M':
|
|
|
|
case 'L':
|
|
|
|
{
|
2008-02-18 22:40:34 +01:00
|
|
|
f[name] = tr.transcode(str.c_str());
|
2006-03-22 15:52:32 +01:00
|
|
|
break;
|
2007-02-14 20:54:39 +01:00
|
|
|
}
|
|
|
|
case 'N':
|
|
|
|
case 'F':
|
|
|
|
{
|
|
|
|
if (str[0]=='*')
|
2006-03-22 15:52:32 +01:00
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
boost::put(f,name,0);
|
|
|
|
break;
|
2006-03-22 15:52:32 +01:00
|
|
|
}
|
2007-02-14 20:54:39 +01:00
|
|
|
if ( fields_[col].dec_>0 )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
double d = boost::lexical_cast<double>(str);
|
|
|
|
boost::put(f,name,d);
|
|
|
|
}
|
|
|
|
catch (boost::bad_lexical_cast &)
|
|
|
|
{
|
|
|
|
boost::put(f,name,0.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
int i = boost::lexical_cast<int>(str);
|
|
|
|
boost::put(f,name,i);
|
|
|
|
}
|
|
|
|
catch (boost::bad_lexical_cast &)
|
|
|
|
{
|
|
|
|
boost::put(f,name,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void dbf_file::read_header()
|
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
char c=file_.get();
|
|
|
|
if (c=='\3' || c=='\131')
|
|
|
|
{
|
|
|
|
skip(3);
|
|
|
|
num_records_=read_int();
|
|
|
|
assert(num_records_>=0);
|
|
|
|
num_fields_=read_short();
|
|
|
|
assert(num_fields_>0);
|
|
|
|
num_fields_=(num_fields_-33)/32;
|
|
|
|
skip(22);
|
|
|
|
int offset=0;
|
|
|
|
char name[11];
|
|
|
|
memset(&name,0,11);
|
|
|
|
fields_.reserve(num_fields_);
|
|
|
|
for (int i=0;i<num_fields_;++i)
|
|
|
|
{
|
|
|
|
field_descriptor desc;
|
|
|
|
desc.index_=i;
|
|
|
|
file_.read(name,10);
|
|
|
|
desc.name_=boost::trim_left_copy(std::string(name));
|
|
|
|
skip(1);
|
|
|
|
desc.type_=file_.get();
|
|
|
|
skip(4);
|
|
|
|
desc.length_=file_.get();
|
|
|
|
desc.dec_=file_.get();
|
|
|
|
skip(14);
|
|
|
|
desc.offset_=offset;
|
|
|
|
offset+=desc.length_;
|
|
|
|
fields_.push_back(desc);
|
|
|
|
}
|
|
|
|
record_length_=offset;
|
|
|
|
if (record_length_>0)
|
|
|
|
{
|
|
|
|
record_=static_cast<char*>(::operator new (sizeof(char)*record_length_));
|
|
|
|
}
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dbf_file::read_short()
|
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
char b[2];
|
|
|
|
file_.read(b,2);
|
|
|
|
return (b[0] & 0xff) | (b[1] & 0xff) << 8;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dbf_file::read_int()
|
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
char b[4];
|
|
|
|
file_.read(b,4);
|
|
|
|
return (b[0] & 0xff) | (b[1] & 0xff) << 8 |
|
|
|
|
(b[2] & 0xff) << 16 | (b[3] & 0xff) <<24;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void dbf_file::skip(int bytes)
|
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
file_.seekg(bytes,std::ios::cur);
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|