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 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
|
/* sql.vala
*
* Copyright © 2011-2012 Collabora Ltd.
* By Siegfried-Angel Gevatter Pujals <siegfried@gevatter.com>
* By Seif Lotfy <seif@lotfy.com>
* Copyright © 2011 Manish Sinha <manishsinha@ubuntu.com>
* Copyright © 2012 Canonical Ltd.
* By Siegfried-A. Gevatter <siegfried.gevatter@collabora.co.uk>
*
* This program 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 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 Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
using Zeitgeist;
namespace Zeitgeist.SQLite
{
public enum EventViewRows
{
ID,
TIMESTAMP,
INTERPRETATION,
MANIFESTATION,
ACTOR,
PAYLOAD,
SUBJECT_URI,
SUBJECT_ID,
SUBJECT_INTERPRETATION,
SUBJECT_MANIFESTATION,
SUBJECT_ORIGIN,
SUBJECT_ORIGIN_URI,
SUBJECT_MIMETYPE,
SUBJECT_TEXT,
SUBJECT_STORAGE,
SUBJECT_STORAGE_STATE,
EVENT_ORIGIN,
EVENT_ORIGIN_URI,
SUBJECT_CURRENT_URI,
SUBJECT_ID_CURRENT,
SUBJECT_TEXT_ID,
SUBJECT_STORAGE_ID,
ACTOR_URI,
SUBJECT_CURRENT_ORIGIN,
SUBJECT_CURRENT_ORIGIN_URI
}
public delegate void DeletionCallback (string table, int64 rowid);
public class Database : Object
{
private const int DEFAULT_OPEN_FLAGS =
Sqlite.OPEN_READWRITE | Sqlite.OPEN_CREATE;
public Sqlite.Statement event_insertion_stmt;
public Sqlite.Statement id_retrieval_stmt;
public Sqlite.Statement move_handling_stmt;
public Sqlite.Statement payload_insertion_stmt;
// The DB should be accessible from engine for statement preperations
// as well as allowing extensions to add tables to it.
public Sqlite.Database database;
private DeletionCallback? deletion_callback = null;
private bool is_read_only = false;
public Database () throws EngineError
{
open_database (true);
prepare_read_queries ();
prepare_modification_queries ();
// Register a data change notification callback to look for
// deletions, so we can keep the TableLookups up to date.
database.update_hook (update_callback);
}
public Database.read_only () throws EngineError
{
is_read_only = true;
open_database (false);
prepare_read_queries ();
// not initializing the modification queries will let us find
// issues more easily
// Register a data change notification callback to look for
// deletions, so we can keep the TableLookups up to date.
database.update_hook (update_callback);
}
private void open_database (bool retry)
throws EngineError
{
int flags = is_read_only ? Sqlite.OPEN_READONLY : DEFAULT_OPEN_FLAGS;
int rc = Sqlite.Database.open_v2 (
Utils.get_database_file_path (),
out database, flags);
if (rc == Sqlite.OK)
{
try
{
// Errors (like a malformed database) may not be exposed
// until we try to operate on the database.
if (is_read_only)
{
int ver = DatabaseSchema.get_schema_version (database);
if (ver < DatabaseSchema.CORE_SCHEMA_VERSION)
{
throw new EngineError.DATABASE_CANTOPEN (
"Unable to open database: old schema version");
}
}
else
{
DatabaseSchema.ensure_schema (database);
}
}
catch (EngineError err)
{
if (err is EngineError.DATABASE_CORRUPT && retry)
rc = Sqlite.CORRUPT;
else if (err is EngineError.DATABASE_CANTOPEN)
rc = Sqlite.CANTOPEN;
else if (err is EngineError.DATABASE_BUSY)
rc = Sqlite.BUSY;
else
throw err;
}
}
if (rc != Sqlite.OK)
{
if (rc == Sqlite.CORRUPT && retry)
{
// The database disk image is malformed
warning ("It looks like your database is corrupt. " +
"It will be renamed and a new one will be created.");
retire_database ();
open_database (false);
}
else if (rc == Sqlite.PERM || rc == Sqlite.CANTOPEN)
{
// Access permission denied / Unable to open database file
throw new EngineError.DATABASE_CANTOPEN (
database.errmsg ());
}
else if (rc == Sqlite.BUSY)
{
// The database file is locked
throw new EngineError.DATABASE_BUSY (database.errmsg ());
}
else
{
string message = "Can't open database: %d, %s".printf (rc,
database.errmsg ());
throw new EngineError.DATABASE_ERROR (message);
}
}
}
private static void retire_database () throws EngineError
{
try
{
File dbfile = File.new_for_path (
Utils.get_database_file_path ());
dbfile.set_display_name (
Utils.get_database_file_retire_name ());
}
catch (Error err)
{
string message = "Could not rename database: %s".printf (
err.message);
throw new EngineError.DATABASE_RETIRE_FAILED (message);
}
}
public uint32 get_last_id () throws EngineError
{
int last_id = -1;
int rc = database.exec ("SELECT MAX(id) FROM event",
(n_columns, values, column_names) =>
{
if (values[0] == null)
last_id = 0;
else
last_id = int.parse (values[0]);
return 0;
}, null);
assert_query_success (rc, "Can't query database");
assert (last_id != -1);
return last_id;
}
public void set_deletion_callback (owned DeletionCallback? callback)
{
deletion_callback = (owned) callback;
}
/**
* Join all given event_ids into a comma-separated string suitable
* for use in a SQL query like "WHERE id IN (...)".
*/
public string get_sql_string_from_event_ids (uint32[] event_ids)
requires (event_ids.length > 0)
{
var sql_condition = new StringBuilder ();
sql_condition.append_printf ("%u", event_ids[0]);
for (int i = 1; i < event_ids.length; ++i) {
sql_condition.append_printf (", %u", event_ids[i]);
}
return sql_condition.str;
}
public TimeRange? get_time_range_for_event_ids (uint32[] event_ids)
throws EngineError
{
if (event_ids.length == 0)
return null;
string sql = """
SELECT MIN(timestamp), MAX(timestamp)
FROM event
WHERE id IN (%s)
""".printf (get_sql_string_from_event_ids (event_ids));
TimeRange? time_range = null;
int rc = database.exec (sql,
(n_columns, values, column_names) =>
{
if (values[0] != null)
{
int64 start = int64.parse (values[0]);
int64 end = int64.parse (values[1]);
time_range = new TimeRange (start, end);
}
return 0;
}, null);
assert_query_success (rc, "SQL Error");
return time_range;
}
public void insert_or_ignore_into_table (string table_name,
GenericArray<string> values) throws EngineError
{
if (values.length == 0)
return;
int rc;
var sql = new StringBuilder ();
sql.append ("INSERT OR IGNORE INTO ");
sql.append (table_name);
sql.append (" (value) SELECT ?");
for (int i = 1; i < values.length; ++i)
sql.append (" UNION SELECT ?");
Sqlite.Statement stmt;
rc = database.prepare_v2 (sql.str, -1, out stmt);
assert_query_success (rc, "SQL error");
for (int i = 0; i < values.length; ++i)
stmt.bind_text (i+1, values[i]);
rc = stmt.step ();
assert_query_success (rc, "SQL error", Sqlite.DONE);
}
public void begin_transaction () throws EngineError
{
int rc = database.exec ("BEGIN");
assert_query_success (rc, "Can't start transaction");
}
public void end_transaction () throws EngineError
{
int rc = database.exec ("COMMIT");
assert_query_success (rc, "Can't commit transaction");
}
public void abort_transaction () throws EngineError
{
int rc = database.exec ("ROLLBACK");
assert_query_success (rc, "Can't rollback transaction");
}
public void close ()
{
// SQLite connection is implicitly closed upon destruction
database = null;
}
#if EXPLAIN_QUERIES
public void explain_query (Sqlite.Statement prepared_stmt)
throws EngineError
{
int rc;
Sqlite.Statement stmt;
var explain_sql = "EXPLAIN QUERY PLAN %s".printf (prepared_stmt.sql ());
rc = prepared_stmt.db_handle ().prepare_v2 (explain_sql, -1, out stmt);
assert_query_success(rc, "SQL error");
print ("%s\n", explain_sql);
while ((rc = stmt.step()) == Sqlite.ROW)
{
int select_id = stmt.column_int (0);
int order = stmt.column_int (1);
int from = stmt.column_int (2);
unowned string detail = stmt.column_text (3);
print ("%d %d %d %s\n", select_id, order, from, detail);
}
}
#endif
/**
* Ensure `rc' is SQLITE_OK. If it isn't, print an error message
* and throw an error.
*
* @param rc error code returned by a SQLite call
* @param msg message to print if `rc' indicates an error
* @throws EngineError err
*/
[Diagnostics]
public void assert_query_success (int rc, string msg,
int success_code=Sqlite.OK) throws EngineError
{
if (unlikely (rc != success_code))
{
string error_message = "%s: %d, %s".printf (
msg, rc, database.errmsg ());
warning ("%s\n", error_message);
assert_not_corrupt (rc);
throw new EngineError.DATABASE_ERROR (error_message);
}
}
/**
* Ensure `rc' isn't SQLITE_CORRUPT. If it is, schedule a database
* retire and Zeitgeist restart so a new database can be created,
* unless in read-only mode, in which case EngineError.DATABASE_ERROR
* will be thrown.
*
* This function should be called whenever assert_query_success isn't
* used.
*
* @param rc error code returned by a SQLite call
*/
public void assert_not_corrupt (int rc)
throws EngineError
{
if (unlikely (rc == Sqlite.CORRUPT))
{
warning ("It looks like your database is corrupt: %s".printf (
database.errmsg ()));
if (!is_read_only)
{
// Sets a flag in the database indicating that it is
// corrupt. This will trigger a database retire and
// re-creation on the next startup.
DatabaseSchema.set_corruption_flag (database);
}
throw new EngineError.DATABASE_CORRUPT (database.errmsg ());
}
}
private void prepare_read_queries () throws EngineError
{
int rc;
string sql;
// Event ID retrieval statement
sql = """
SELECT id FROM event
WHERE timestamp=? AND interpretation=? AND
manifestation=? AND actor=?
""";
rc = database.prepare_v2 (sql, -1, out id_retrieval_stmt);
assert_query_success (rc, "Event ID retrieval query error");
}
private void prepare_modification_queries () throws EngineError
{
int rc;
string sql;
// Event insertion statement
sql = """
INSERT INTO event (
id, timestamp, interpretation, manifestation, actor,
origin, payload, subj_id, subj_id_current,
subj_interpretation, subj_manifestation, subj_origin,
subj_origin_current, subj_mimetype, subj_text, subj_storage
) VALUES (
?, ?, ?, ?, ?,
(SELECT id FROM uri WHERE value=?),
?,
(SELECT id FROM uri WHERE value=?),
(SELECT id FROM uri WHERE value=?),
?, ?,
(SELECT id FROM uri WHERE value=?),
(SELECT id FROM uri WHERE value=?),
?,
(SELECT id FROM text WHERE value=?),
(SELECT id FROM storage WHERE value=?)
)""";
rc = database.prepare_v2 (sql, -1, out event_insertion_stmt);
assert_query_success (rc, "Insertion query error");
// Move handling statment
sql = """
UPDATE event
SET subj_id_current=(SELECT id FROM uri WHERE value=?)
, subj_origin_current=(SELECT id FROM uri WHERE value=?)
WHERE subj_id_current=(SELECT id FROM uri WHERE value=?)
AND interpretation!=? AND timestamp<?
""";
rc = database.prepare_v2 (sql, -1, out move_handling_stmt);
assert_query_success (rc, "Move handling error");
// Payload insertion statment
sql = """
INSERT INTO payload (value) VALUES (?)
""";
rc = database.prepare_v2 (sql, -1, out payload_insertion_stmt);
assert_query_success (rc, "Payload insertion query error");
}
public bool analyze() throws EngineError
{
int rc = database.exec("ANALYZE");
assert_query_success (rc, "Event ID retrieval query error");
return false;
}
public void set_cache_size (int size) {
DatabaseSchema.exec_query (database,
"PRAGMA cache_size = %i".printf (size));
}
protected void update_callback (Sqlite.Action action,
string dbname, string table, int64 rowid)
{
if (action != Sqlite.Action.DELETE)
return;
if (deletion_callback != null)
deletion_callback (table, rowid);
//interpretations_table
// manifestations_
//mimetypes_table - mimetype table
// actors_ . actor table
// FIXME!
/*
stdout.printf ("%s", dbname); // = main
stdout.printf ("%s", table);
stdout.printf ("%li", (long) rowid);
*/
}
}
}
// vim:expandtab:ts=4:sw=4
|