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
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/webdata/web_intents_table.h"
#include <string>
#include "base/i18n/case_conversion.h"
#include "base/logging.h"
#include "base/string_util.h"
#include "base/utf_string_conversions.h"
#include "googleurl/src/gurl.h"
#include "net/base/mime_util.h"
#include "sql/statement.h"
#include "third_party/sqlite/sqlite3.h"
WebIntentsTable::WebIntentsTable(sql::Connection* db,
sql::MetaTable* meta_table)
: WebDatabaseTable(db, meta_table) {
}
WebIntentsTable::~WebIntentsTable() {
}
bool WebIntentsTable::Init() {
if (!db_->DoesTableExist("web_intents")) {
if (!db_->Execute("CREATE TABLE web_intents ("
" service_url LONGVARCHAR,"
" action VARCHAR,"
" type VARCHAR,"
" title LONGVARCHAR,"
" disposition VARCHAR,"
" scheme VARCHAR,"
" UNIQUE (service_url, action, scheme, type))")) {
return false;
}
if (!db_->Execute("CREATE INDEX IF NOT EXISTS web_intents_index"
" ON web_intents (action)"))
return false;
if (!db_->Execute("CREATE INDEX IF NOT EXISTS web_intents_index"
" ON web_intents (scheme)"))
return false;
}
if (!db_->DoesTableExist("web_intents_defaults")) {
if (!db_->Execute("CREATE TABLE web_intents_defaults ("
" action VARCHAR,"
" type VARCHAR,"
" url_pattern LONGVARCHAR,"
" user_date INTEGER,"
" suppression INTEGER,"
" service_url LONGVARCHAR,"
" scheme VARCHAR,"
" UNIQUE (action, scheme, type, url_pattern))")) {
return false;
}
if (!db_->Execute("CREATE INDEX IF NOT EXISTS web_intents_default_index"
" ON web_intents_defaults (action)"))
return false;
if (!db_->Execute("CREATE INDEX IF NOT EXISTS web_intents_default_index"
" ON web_intents_defaults (scheme)"))
return false;
}
return true;
}
// TODO(jhawkins): Figure out Sync story.
bool WebIntentsTable::IsSyncable() {
return false;
}
// Updates the table by way of renaming the old tables, rerunning
// the Init method, then selecting old values into the new tables.
bool WebIntentsTable::MigrateToVersion46AddSchemeColumn() {
if (!db_->Execute("ALTER TABLE web_intents RENAME TO old_web_intents")) {
DLOG(WARNING) << "Could not backup web_intents table.";
return false;
}
if (!db_->Execute("ALTER TABLE web_intents_defaults"
" RENAME TO old_web_intents_defaults")) {
DLOG(WARNING) << "Could not backup web_intents_defaults table.";
return false;
}
if (!Init()) return false;
int error = db_->ExecuteAndReturnErrorCode(
"INSERT INTO web_intents"
" (service_url, action, type, title, disposition)"
" SELECT "
" service_url, action, type, title, disposition"
" FROM old_web_intents");
if (error != SQLITE_OK) {
DLOG(WARNING) << "Could not copy old intent data to upgraded table."
<< db_->GetErrorMessage();
}
error = db_->ExecuteAndReturnErrorCode(
"INSERT INTO web_intents_defaults"
" (service_url, action, type, url_pattern, user_date, suppression)"
" SELECT "
" service_url, action, type, url_pattern, user_date, suppression"
" FROM old_web_intents_defaults");
if (error != SQLITE_OK) {
DLOG(WARNING) << "Could not copy old intent defaults to upgraded table."
<< db_->GetErrorMessage();
}
if (!db_->Execute("DROP table old_web_intents")) {
LOG(WARNING) << "Could not drop backup web_intents table.";
return false;
}
if (!db_->Execute("DROP table old_web_intents_defaults")) {
DLOG(WARNING) << "Could not drop backup web_intents_defaults table.";
return false;
}
return true;
}
|