File: sql_storage.cc

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (287 lines) | stat: -rw-r--r-- 8,821 bytes parent folder | download | duplicates (6)
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
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chromeos/ash/components/file_manager/indexing/sql_storage.h"

#include "base/files/file_util.h"
#include "base/metrics/histogram_functions.h"
#include "sql/error_delegate_util.h"
#include "sql/statement.h"

namespace ash::file_manager {

enum class DbOperationStatus {
  kUnknown = 0,
  kOpenOk,
  kDirectoryCreateError,
  kOpenDbError,
  kTableInitError,
  kDatabaseRazed,

  kMaxValue = kDatabaseRazed,
};

SqlStorage::SqlStorage(base::FilePath db_path, sql::Database::Tag uma_tag)
    : db_path_(db_path),
      db_(sql::Database(uma_tag)),
      token_table_(&db_),
      term_table_(&db_),
      url_table_(&db_),
      file_info_table_(&db_),
      posting_list_table_(&db_) {
  DETACH_FROM_SEQUENCE(sequence_checker_);
}

SqlStorage::~SqlStorage() {
  db_.Close();
  db_.reset_error_callback();
}

bool SqlStorage::Init() {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  // Make sure we have the directory and open the database on it. Set histogram
  // tags, and error handlers.
  const base::FilePath db_dir = db_path_.DirName();
  if (!base::PathExists(db_dir) && !base::CreateDirectory(db_dir)) {
    LOG(ERROR) << "Failed to create a db directory " << db_dir;
    base::UmaHistogramEnumeration(db_.histogram_tag(),
                                  DbOperationStatus::kDirectoryCreateError);
    return false;
  }

  if (!db_.Open(db_path_)) {
    LOG(ERROR) << "Failed to open " << db_path_;
    base::UmaHistogramEnumeration(db_.histogram_tag(),
                                  DbOperationStatus::kOpenDbError);
    return false;
  }
  // base::Unretained is safe as SqlStorage (this) owns the sql::Database (db_).
  // It thus always outlives it, as destroying this, requires db_ to be
  // destroyed first and thus guarantees that the error callback cannot be
  // invoked after db_ and this are destroyed.
  db_.set_error_callback(base::BindRepeating(&SqlStorage::OnErrorCallback,
                                             base::Unretained(this)));

  // Initialize all tables owned by SqlStorage.
  if (!InitTables()) {
    return false;
  }

  // Record successful operation and let the world know.
  base::UmaHistogramEnumeration(db_.histogram_tag(),
                                DbOperationStatus::kOpenOk);
  return true;
}

bool SqlStorage::InitTables() {
  if (!token_table_.Init()) {
    LOG(ERROR) << "Failed to initialize token_table";
    base::UmaHistogramEnumeration(db_.histogram_tag(),
                                  DbOperationStatus::kTableInitError);
    return false;
  }
  if (!term_table_.Init()) {
    LOG(ERROR) << "Failed to initialize term_table";
    base::UmaHistogramEnumeration(db_.histogram_tag(),
                                  DbOperationStatus::kTableInitError);
    return false;
  }
  if (!url_table_.Init()) {
    LOG(ERROR) << "Failed to initialize url_table";
    base::UmaHistogramEnumeration(db_.histogram_tag(),
                                  DbOperationStatus::kTableInitError);
    return false;
  }
  if (!file_info_table_.Init()) {
    LOG(ERROR) << "Failed to initialize file_info_table";
    base::UmaHistogramEnumeration(db_.histogram_tag(),
                                  DbOperationStatus::kTableInitError);
    return false;
  }
  if (!posting_list_table_.Init()) {
    LOG(ERROR) << "Failed to initialize file_info_table";
    base::UmaHistogramEnumeration(db_.histogram_tag(),
                                  DbOperationStatus::kTableInitError);
    return false;
  }
  return true;
}

bool SqlStorage::Close() {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  db_.Close();
  return true;
}

void SqlStorage::OnErrorCallback(int error, sql::Statement* stmt) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);

  LOG(ERROR) << "Database error: " << sql::ToSqliteResultCode(error);
  if (stmt) {
    LOG(ERROR) << "Database error statement: " << stmt->GetSQLStatement();
  }
  if (sql::IsErrorCatastrophic(error)) {
    LOG(ERROR) << "Database error is catastrophic.";
    Restart();
  }
}

void SqlStorage::Restart() {
  LOG(ERROR) << "Attempting to raze the database.";
  if (!db_.Raze()) {
    LOG(ERROR) << "Failed to raze the database.";
    return;
  }
  base::UmaHistogramEnumeration(db_.histogram_tag(),
                                DbOperationStatus::kDatabaseRazed);
  if (InitTables()) {
    LOG(ERROR) << "Failed to re-initialize db tables after Raze";
  }
}

size_t SqlStorage::AddTermIdsForUrl(const std::set<int64_t>& term_ids,
                                    int64_t url_id) {
  size_t added_terms_count = 0;
  for (const int64_t term_id : term_ids) {
    added_terms_count += AddToPostingList(term_id, url_id);
  }
  return added_terms_count;
}

size_t SqlStorage::DeleteTermIdsForUrl(const std::set<int64_t>& term_ids,
                                       int64_t url_id) {
  size_t deleted_terms_count = 0;
  for (const int64_t term_id : term_ids) {
    deleted_terms_count += DeleteFromPostingList(term_id, url_id);
  }
  return deleted_terms_count;
}

const std::set<int64_t> SqlStorage::GetUrlIdsForTermId(int64_t term_id) const {
  return posting_list_table_.GetUrlIdsForTerm(term_id);
}

const std::set<int64_t> SqlStorage::GetTermIdsForUrl(int64_t url_id) const {
  return posting_list_table_.GetTermIdsForUrl(url_id);
}

size_t SqlStorage::AddToPostingList(int64_t term_id, int64_t url_id) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  DCHECK(term_id != -1);
  DCHECK(url_id != -1);
  return posting_list_table_.AddToPostingList(term_id, url_id);
}

size_t SqlStorage::DeleteFromPostingList(int64_t term_id, int64_t url_id) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  DCHECK(term_id != -1);
  DCHECK(url_id != -1);
  return posting_list_table_.DeleteFromPostingList(term_id, url_id);
}

int64_t SqlStorage::GetTokenId(const std::string& term_bytes) const {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  return token_table_.GetTokenId(term_bytes);
}

int64_t SqlStorage::GetOrCreateTokenId(const std::string& term_bytes) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  return token_table_.GetOrCreateTokenId(term_bytes);
}

int64_t SqlStorage::GetTermId(const Term& term) const {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  int64_t term_id = GetTokenId(term.token_bytes());
  if (term_id == -1) {
    return -1;
  }
  return term_table_.GetTermId(term.field(), term_id);
}

int64_t SqlStorage::GetOrCreateTermId(const Term& term) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  int64_t term_id = GetTermId(term);
  if (term_id != -1) {
    return term_id;
  }
  int64_t token_id = GetOrCreateTokenId(term.token_bytes());
  return term_table_.GetOrCreateTermId(term.field(), token_id);
}

int64_t SqlStorage::GetOrCreateUrlId(const GURL& url) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  if (!url.is_valid()) {
    return -1;
  }
  return url_table_.GetOrCreateUrlId(url);
}

int64_t SqlStorage::GetUrlId(const GURL& url) const {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  if (!url.is_valid()) {
    return -1;
  }
  return url_table_.GetUrlId(url);
}

int64_t SqlStorage::MoveUrl(const GURL& from, const GURL& to) {
  int64_t url_id = GetUrlId(from);
  if (url_id == -1) {
    return -1;
  }
  if (from == to) {
    return url_id;
  }
  if (GetUrlId(to) != -1) {
    return -1;
  }
  int64_t moved_url_id = url_table_.ChangeUrl(from, to);
  DCHECK(moved_url_id == url_id);
  return moved_url_id;
}

int64_t SqlStorage::DeleteUrl(const GURL& url) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  return url_table_.DeleteUrl(url);
}

int64_t SqlStorage::PutFileInfo(const FileInfo& file_info) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  int64_t url_id = url_table_.GetOrCreateUrlId(file_info.file_url);
  if (url_id == -1) {
    return -1;
  }
  return file_info_table_.PutFileInfo(url_id, file_info);
}

std::optional<FileInfo> SqlStorage::GetFileInfo(int64_t url_id) const {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  if (url_id == -1) {
    return std::nullopt;
  }
  auto url_spec = url_table_.GetUrlSpec(url_id);
  if (!url_spec.has_value()) {
    return std::nullopt;
  }
  GURL url(url_spec.value());
  if (!url.is_valid()) {
    return std::nullopt;
  }
  std::optional<FileInfo> file_info = file_info_table_.GetFileInfo(url_id);
  if (!file_info.has_value()) {
    return std::nullopt;
  }
  file_info.value().file_url = url;
  return file_info;
}

int64_t SqlStorage::DeleteFileInfo(int64_t url_id) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
  if (url_id == -1) {
    return -1;
  }
  return file_info_table_.DeleteFileInfo(url_id);
}

}  // namespace ash::file_manager