mapnik/utils/pgsql2sqlite/sqlite.hpp

190 lines
5.3 KiB
C++
Raw Normal View History

/*****************************************************************************
2011-11-14 04:54:32 +01:00
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2009 Artem Pavlenko
*
* 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,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* 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
*
*****************************************************************************/
//$Id$
// boost
#include <boost/shared_ptr.hpp>
#include <boost/utility.hpp>
#include <boost/variant.hpp>
//sqlite3
#include <sqlite3.h>
//stl
2009-02-21 01:23:41 +01:00
//#ifdef MAPNIK_DEBUG
2011-11-14 04:54:32 +01:00
#include <iostream>
2009-02-21 01:23:41 +01:00
//#endif
#include <string>
#include <vector>
namespace mapnik { namespace sqlite {
2010-06-02 13:03:30 +02:00
class database : private boost::noncopyable
{
friend class prepared_statement;
2011-11-14 04:54:32 +01:00
2010-06-02 13:03:30 +02:00
struct database_closer
{
void operator () (sqlite3 * db)
{
#ifdef MAPNIK_DEBUG
2010-06-02 13:03:30 +02:00
std::cerr << "close database " << db << "\n";
#endif
2010-06-02 13:03:30 +02:00
sqlite3_close(db);
}
2010-06-02 13:03:30 +02:00
};
2011-11-14 04:54:32 +01:00
typedef boost::shared_ptr<sqlite3> sqlite_db;
2010-06-02 13:03:30 +02:00
sqlite_db db_;
2011-11-14 04:54:32 +01:00
2010-06-02 13:03:30 +02:00
public:
database(std::string const& name);
~database();
bool execute(std::string const& sql);
};
2010-06-02 13:03:30 +02:00
struct null_type {};
2011-11-14 04:54:32 +01:00
struct blob
2010-06-02 13:03:30 +02:00
{
blob(const char* buf, unsigned size)
2009-02-21 12:22:17 +01:00
: buf_(buf), size_(size) {}
2011-11-14 04:54:32 +01:00
2010-06-02 13:03:30 +02:00
const char * buf_;
unsigned size_;
};
2009-02-21 12:22:17 +01:00
2010-06-02 13:03:30 +02:00
typedef boost::variant<int,double,std::string, blob,null_type> value_type;
typedef std::vector<value_type> record_type;
2011-11-14 04:54:32 +01:00
class prepared_statement : boost::noncopyable
2010-06-02 13:03:30 +02:00
{
struct binder : public boost::static_visitor<bool>
{
binder(sqlite3_stmt * stmt, unsigned index)
2010-06-02 13:03:30 +02:00
: stmt_(stmt), index_(index) {}
2011-11-14 04:54:32 +01:00
2010-06-02 13:03:30 +02:00
bool operator() (null_type )
{
if (sqlite3_bind_null(stmt_, index_) != SQLITE_OK)
{
std::cerr << "cannot bind NULL\n";
return false;
}
return true;
}
2011-11-14 04:54:32 +01:00
bool operator() (int val)
{
2010-06-02 13:03:30 +02:00
if (sqlite3_bind_int(stmt_, index_ , val ) != SQLITE_OK)
{
std::cerr << "cannot bind " << val << "\n";
return false;
}
return true;
}
2011-11-14 04:54:32 +01:00
bool operator() (double val)
{
2010-06-02 13:03:30 +02:00
if (sqlite3_bind_double(stmt_, index_ , val ) != SQLITE_OK)
{
std::cerr << "cannot bind " << val << "\n";
return false;
}
return true;
}
2011-11-14 04:54:32 +01:00
bool operator() (std::string const& val)
{
2010-06-02 13:03:30 +02:00
if (sqlite3_bind_text(stmt_, index_, val.c_str(), val.length(), SQLITE_STATIC) != SQLITE_OK)
{
std::cerr << "cannot bind " << val << "\n";
return false;
}
return true;
}
2011-11-14 04:54:32 +01:00
2009-02-21 12:22:17 +01:00
bool operator() (blob const& val)
{
2010-06-02 13:03:30 +02:00
if (sqlite3_bind_blob(stmt_, index_, val.buf_, val.size_, SQLITE_STATIC) != SQLITE_OK)
{
std::cerr << "cannot bind BLOB\n";
return false;
}
return true;
2009-02-21 12:22:17 +01:00
}
2011-11-14 04:54:32 +01:00
sqlite3_stmt * stmt_;
unsigned index_;
2010-06-02 13:03:30 +02:00
};
public:
prepared_statement(database & db, std::string const& sql)
: db_(db.db_.get()), stmt_(0)
2010-06-02 13:03:30 +02:00
{
const char * tail;
2009-02-21 00:04:30 +01:00
//char * err_msg;
int res = sqlite3_prepare_v2(db_, sql.c_str(),-1, &stmt_,&tail);
if (res != SQLITE_OK)
{
2011-11-14 04:54:32 +01:00
std::cerr << "ERR:"<< res << "\n";
2010-06-02 13:03:30 +02:00
throw;
}
2010-06-02 13:03:30 +02:00
}
2011-11-14 04:54:32 +01:00
2010-06-02 13:03:30 +02:00
~prepared_statement()
{
int res = sqlite3_finalize(stmt_);
if (res != SQLITE_OK)
{
2011-11-14 04:54:32 +01:00
std::cerr << "ERR:" << res << "\n";
}
2010-06-02 13:03:30 +02:00
}
2011-11-14 04:54:32 +01:00
2010-06-02 13:03:30 +02:00
bool insert_record(record_type const& rec) const
2011-11-14 04:54:32 +01:00
{
2009-02-21 01:23:41 +01:00
#ifdef MAPNIK_DEBUG
2009-02-21 12:22:17 +01:00
assert( unsigned(sqlite3_bind_parameter_count(stmt_)) == rec.size());
2009-02-21 01:23:41 +01:00
#endif
record_type::const_iterator itr = rec.begin();
record_type::const_iterator end = rec.end();
int count = 1;
for (; itr!=end;++itr)
{
2010-06-02 13:03:30 +02:00
binder op(stmt_,count++);
if (!boost::apply_visitor(op,*itr))
{
return false;
}
}
2011-11-14 04:54:32 +01:00
sqlite3_step(stmt_);
sqlite3_reset(stmt_);
return true;
2010-06-02 13:03:30 +02:00
}
2010-06-02 13:03:30 +02:00
private:
sqlite3 * db_;
sqlite3_stmt * stmt_;
};
}
}