OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "webkit/database/quota_table.h" | |
6 | |
7 #include "base/logging.h" | |
8 #include "base/utf_string_conversions.h" | |
9 #include "sql/statement.h" | |
10 | |
11 namespace webkit_database { | |
12 | |
13 bool QuotaTable::Init() { | |
14 // 'Quota' schema: | |
15 // origin The origin. | |
16 // quota The quota for this origin. | |
17 return db_->DoesTableExist("Quota") || | |
18 db_->Execute( | |
19 "CREATE TABLE Quota (" | |
20 "origin TEXT NOT NULL PRIMARY KEY, " | |
21 "quota INTEGER NOT NULL)"); | |
22 } | |
23 | |
24 int64 QuotaTable::GetOriginQuota(const string16& origin_identifier) { | |
25 sql::Statement statement(db_->GetCachedStatement( | |
26 SQL_FROM_HERE, "SELECT quota FROM Quota WHERE origin = ?")); | |
27 statement.BindString16(0, origin_identifier); | |
28 if (statement.Step()) { | |
29 return statement.ColumnInt64(0); | |
30 } | |
31 | |
32 return -1; | |
33 } | |
34 | |
35 bool QuotaTable::SetOriginQuota(const string16& origin_identifier, | |
36 int64 quota) { | |
37 DCHECK(quota >= 0); | |
38 | |
39 // Insert or update the quota for this origin. | |
40 sql::Statement replace_statement(db_->GetCachedStatement( | |
41 SQL_FROM_HERE, "REPLACE INTO Quota VALUES (?, ?)")); | |
42 replace_statement.BindString16(0, origin_identifier); | |
43 replace_statement.BindInt64(1, quota); | |
44 return replace_statement.Run(); | |
45 } | |
46 | |
47 bool QuotaTable::ClearOriginQuota(const string16& origin_identifier) { | |
48 sql::Statement statement(db_->GetCachedStatement( | |
49 SQL_FROM_HERE, "DELETE FROM Quota WHERE origin = ?")); | |
50 statement.BindString16(0, origin_identifier); | |
51 | |
52 return (statement.Run() && db_->GetLastChangeCount()); | |
53 } | |
54 | |
55 } // namespace webkit_database | |
OLD | NEW |