1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; version 2 of the
* License.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#include "sqlide_generics.h"
#include <sqlite/execute.hpp>
#ifndef _WIN32
#include <sys/time.h>
#endif
#include <locale>
namespace sqlide
{
class IsVarTypeEqTo : public boost::static_visitor<bool>
{
public:
IsVarTypeEqTo() {}
template <typename T> result_type operator()(const T &v1, const T &v2) const { return true; }
template <typename T1, typename T2> result_type operator()(const T1 &v1, const T2 &v2) const { return false; }
};
static const IsVarTypeEqTo is_var_type_eq_to;
bool is_var_null(const sqlite::variant_t &value)
{
static const sqlite::variant_t null_value= sqlite::null_t();
return boost::apply_visitor(is_var_type_eq_to, value, null_value);
}
bool is_var_unknown(const sqlite::variant_t &value)
{
static const sqlite::variant_t unknown_value= sqlite::unknown_t();
return boost::apply_visitor(is_var_type_eq_to, value, unknown_value);
}
bool is_var_blob(const sqlite::variant_t &value)
{
static const sqlite::variant_t blob_value= sqlite::blob_ref_t();
return boost::apply_visitor(is_var_type_eq_to, value, blob_value);
}
void optimize_sqlite_connection_for_speed(sqlite::connection *conn)
{
//!sqlite::execute(*conn, "pragma locking_mode = exclusive", true);
sqlite::execute(*conn, "pragma fsync = 0", true);
sqlite::execute(*conn, "pragma synchronous = off", true);
sqlite::execute(*conn, "pragma encoding = \"UTF-8\"", true);
sqlite::execute(*conn, "pragma temp_store = 2", true);
sqlite::execute(*conn, "pragma auto_vacuum = 0", true);
sqlite::execute(*conn, "pragma count_changes = 0", true);
sqlite::execute(*conn, "pragma journal_mode = OFF");
}
Sqlite_transaction_guarder::Sqlite_transaction_guarder(sqlite::connection *conn, bool use_immediate)
:
_conn(conn),
_in_trans(false)
{
if (_conn)
{
if (use_immediate)
sqlite::execute(*conn, "begin immediate", true);
else
sqlite::execute(*conn, "BEGIN", true);
_in_trans= true;
}
}
Sqlite_transaction_guarder::~Sqlite_transaction_guarder()
{
if (!_in_trans)
return;
const char *action= std::uncaught_exception() ? "rollback" : "commit";
sqlite::execute(*_conn, action, true);
}
void Sqlite_transaction_guarder::commit()
{
sqlite::execute(*_conn, "commit", true);
_in_trans= false;
}
void Sqlite_transaction_guarder::commit_and_start_new_transaction()
{
commit();
sqlite::execute(*_conn, "begin", true);
_in_trans= true;
}
} // namespace sqlide
/*
double timestamp()
{
#if defined(__WIN__) || defined(_WIN32) || defined(_WIN64)
return (double)GetTickCount() / 1000.0;
#else
struct timeval tv;
gettimeofday(&tv, NULL);
double seconds = tv.tv_sec;
double fraction = tv.tv_usec / (double)(1000000);
return seconds + fraction;
#endif
}
*/
std::tm local_timestamp()
{
std::time_t ltime;
time(<ime);
std::tm t;
#ifdef _WIN32
localtime_s(&t, <ime);
#else
localtime_r(<ime, &t);
#endif
return t;
}
std::string format_time(const std::tm &t, const char* format)
{
const size_t BUFFER_SIZE= 256;
char buf[BUFFER_SIZE];
strftime(buf, BUFFER_SIZE, format, &t);
return std::string(buf);
}
std::string current_time(const char* format)
{
return format_time(local_timestamp(), format);
}
|