diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2012-08-13 00:40:07 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2012-09-01 02:34:00 +0800 |
commit | 7c07f1031fea5582d2068bcc813cfa54afef10b7 (patch) | |
tree | 1be97267384ec51a624874dd49dd7a4da5416e85 /lib/history/ephy-history-service-urls-table.c | |
parent | 03c2cd35009afd4f572130c44ca4018f425a9def (diff) | |
download | gsoc2013-epiphany-7c07f1031fea5582d2068bcc813cfa54afef10b7.tar gsoc2013-epiphany-7c07f1031fea5582d2068bcc813cfa54afef10b7.tar.gz gsoc2013-epiphany-7c07f1031fea5582d2068bcc813cfa54afef10b7.tar.bz2 gsoc2013-epiphany-7c07f1031fea5582d2068bcc813cfa54afef10b7.tar.lz gsoc2013-epiphany-7c07f1031fea5582d2068bcc813cfa54afef10b7.tar.xz gsoc2013-epiphany-7c07f1031fea5582d2068bcc813cfa54afef10b7.tar.zst gsoc2013-epiphany-7c07f1031fea5582d2068bcc813cfa54afef10b7.zip |
ephy-history-service: add backend bits to support the new hidden column
Diffstat (limited to 'lib/history/ephy-history-service-urls-table.c')
-rw-r--r-- | lib/history/ephy-history-service-urls-table.c | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/lib/history/ephy-history-service-urls-table.c b/lib/history/ephy-history-service-urls-table.c index 8f54dd386..ff8bcbdf3 100644 --- a/lib/history/ephy-history-service-urls-table.c +++ b/lib/history/ephy-history-service-urls-table.c @@ -70,11 +70,11 @@ ephy_history_service_get_url_row (EphyHistoryService *self, const char *url_stri if (url != NULL && url->id != -1) { statement = ephy_sqlite_connection_create_statement (priv->history_database, - "SELECT id, url, title, visit_count, typed_count, last_visit_time FROM urls " + "SELECT id, url, title, visit_count, typed_count, last_visit_time, hidden_from_overview FROM urls " "WHERE id=?", &error); } else { statement = ephy_sqlite_connection_create_statement (priv->history_database, - "SELECT id, url, title, visit_count, typed_count, last_visit_time FROM urls " + "SELECT id, url, title, visit_count, typed_count, last_visit_time, hidden_from_overview FROM urls " "WHERE url=?", &error); } @@ -117,6 +117,7 @@ ephy_history_service_get_url_row (EphyHistoryService *self, const char *url_stri url->visit_count = ephy_sqlite_statement_get_column_as_int (statement, 3), url->typed_count = ephy_sqlite_statement_get_column_as_int (statement, 4), url->last_visit_time = ephy_sqlite_statement_get_column_as_int (statement, 5); + url->hidden = ephy_sqlite_statement_get_column_as_int (statement, 6); g_object_unref (statement); return url; @@ -174,7 +175,7 @@ ephy_history_service_update_url_row (EphyHistoryService *self, EphyHistoryURL *u g_assert (priv->history_database != NULL); statement = ephy_sqlite_connection_create_statement (priv->history_database, - "UPDATE urls SET title=?, visit_count=?, typed_count=?, last_visit_time=? " + "UPDATE urls SET title=?, visit_count=?, typed_count=?, last_visit_time=?, hidden_from_overview=? " "WHERE id=?", &error); if (error) { g_error ("Could not build urls table modification statement: %s", error->message); @@ -186,7 +187,8 @@ ephy_history_service_update_url_row (EphyHistoryService *self, EphyHistoryURL *u ephy_sqlite_statement_bind_int (statement, 1, url->visit_count, &error) == FALSE || ephy_sqlite_statement_bind_int (statement, 2, url->typed_count, &error) == FALSE || ephy_sqlite_statement_bind_int (statement, 3, url->last_visit_time, &error) == FALSE || - ephy_sqlite_statement_bind_int (statement, 4, url->id, &error) == FALSE) { + ephy_sqlite_statement_bind_int (statement, 4, url->hidden, &error) == FALSE || + ephy_sqlite_statement_bind_int (statement, 5, url->id, &error) == FALSE) { g_error ("Could not modify URL in urls table: %s", error->message); g_error_free (error); return; @@ -211,7 +213,8 @@ create_url_from_statement (EphySQLiteStatement *statement) url->id = ephy_sqlite_statement_get_column_as_int (statement, 0); url->host = ephy_history_host_new (NULL, NULL, 0, 1.0); - url->host->id = ephy_sqlite_statement_get_column_as_int (statement, 6); + url->hidden = ephy_sqlite_statement_get_column_as_int (statement, 6); + url->host->id = ephy_sqlite_statement_get_column_as_int (statement, 7); return url; } @@ -233,6 +236,7 @@ ephy_history_service_find_url_rows (EphyHistoryService *self, EphyHistoryQuery * "urls.visit_count, " "urls.typed_count, " "urls.last_visit_time, " + "urls.hidden_from_overview, " "urls.host " "FROM " "urls "; @@ -254,6 +258,9 @@ ephy_history_service_find_url_rows (EphyHistoryService *self, EphyHistoryQuery * statement_str = g_string_append (statement_str, "WHERE "); } + if (query->ignore_hidden) + statement_str = g_string_append (statement_str, "urls.hidden_from_overview = 0 AND "); + if (query->host > 0) statement_str = g_string_append (statement_str, "urls.host = ? AND "); |