1 // Copyright 2013 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.
5 #include "components/precache/core/precache_database.h"
8 #include "base/files/file_path.h"
9 #include "base/message_loop/message_loop.h"
10 #include "base/metrics/histogram.h"
11 #include "base/time/time.h"
12 #include "sql/connection.h"
13 #include "sql/transaction.h"
18 // The number of days old that an entry in the precache URL table can be before
19 // it is considered "old" and is removed from the table.
20 const int kPrecacheHistoryExpiryPeriodDays
= 60;
26 PrecacheDatabase::PrecacheDatabase() : is_flush_posted_(false) {
27 // A PrecacheDatabase can be constructed on any thread.
28 thread_checker_
.DetachFromThread();
31 PrecacheDatabase::~PrecacheDatabase() {
32 // Since the PrecacheDatabase is refcounted, it will only be deleted if there
33 // are no references remaining to it, meaning that it is not in use. Thus, it
34 // is safe to delete it, regardless of what thread we are on.
35 thread_checker_
.DetachFromThread();
38 bool PrecacheDatabase::Init(const base::FilePath
& db_path
) {
39 DCHECK(thread_checker_
.CalledOnValidThread());
40 DCHECK(!db_
); // Init must only be called once.
42 db_
.reset(new sql::Connection());
43 db_
->set_histogram_tag("Precache");
45 if (!db_
->Open(db_path
)) {
46 // Don't initialize the URL table if unable to access
51 if (!precache_url_table_
.Init(db_
.get())) {
52 // Raze and close the database connection to indicate that it's not usable,
53 // and so that the database will be created anew next time, in case it's
61 void PrecacheDatabase::DeleteExpiredPrecacheHistory(
62 const base::Time
& current_time
) {
63 if (!IsDatabaseAccessible()) {
64 // Do nothing if unable to access the database.
68 // Delete old precache history that has expired.
69 base::Time delete_end
= current_time
- base::TimeDelta::FromDays(
70 kPrecacheHistoryExpiryPeriodDays
);
71 buffered_writes_
.push_back(
72 base::Bind(&PrecacheURLTable::DeleteAllPrecachedBefore
,
73 base::Unretained(&precache_url_table_
), delete_end
));
78 void PrecacheDatabase::RecordURLPrecached(const GURL
& url
,
79 const base::Time
& fetch_time
,
80 int64 size
, bool was_cached
) {
81 if (!IsDatabaseAccessible()) {
82 // Don't track anything if unable to access the database.
86 if (buffered_urls_
.find(url
.spec()) != buffered_urls_
.end()) {
87 // If the URL for this fetch is in the write buffer, then flush the write
92 if (was_cached
&& !precache_url_table_
.HasURL(url
)) {
93 // Since the precache came from the cache, and there's no entry in the URL
94 // table for the URL, this means that the resource was already in the cache
95 // because of user browsing. Thus, this precache had no effect, so ignore
101 // The precache only counts as overhead if it was downloaded over the
103 UMA_HISTOGRAM_COUNTS("Precache.DownloadedPrecacheMotivated", size
);
106 // Use the URL table to keep track of URLs that are in the cache thanks to
107 // precaching. If a row for the URL already exists, than update the timestamp
109 buffered_writes_
.push_back(
110 base::Bind(&PrecacheURLTable::AddURL
,
111 base::Unretained(&precache_url_table_
), url
, fetch_time
));
112 buffered_urls_
.insert(url
.spec());
116 void PrecacheDatabase::RecordURLFetched(const GURL
& url
,
117 const base::Time
& fetch_time
,
118 int64 size
, bool was_cached
,
119 bool is_connection_cellular
) {
120 if (!IsDatabaseAccessible()) {
121 // Don't track anything if unable to access the database.
125 if (buffered_urls_
.find(url
.spec()) != buffered_urls_
.end()) {
126 // If the URL for this fetch is in the write buffer, then flush the write
131 if (was_cached
&& !precache_url_table_
.HasURL(url
)) {
132 // Ignore cache hits that precache can't take credit for.
137 // The fetch was served over the network during user browsing, so count it
138 // as downloaded non-precache bytes.
139 UMA_HISTOGRAM_COUNTS("Precache.DownloadedNonPrecache", size
);
140 if (is_connection_cellular
) {
141 UMA_HISTOGRAM_COUNTS("Precache.DownloadedNonPrecache.Cellular", size
);
144 // The fetch was served from the cache, and since there's an entry for this
145 // URL in the URL table, this means that the resource was served from the
146 // cache only because precaching put it there. Thus, precaching was helpful,
147 // so count the fetch as saved bytes.
148 UMA_HISTOGRAM_COUNTS("Precache.Saved", size
);
149 if (is_connection_cellular
) {
150 UMA_HISTOGRAM_COUNTS("Precache.Saved.Cellular", size
);
154 // Since the resource has been fetched during user browsing, remove any record
155 // of that URL having been precached from the URL table, if any exists.
156 // The current fetch would have put this resource in the cache regardless of
157 // whether or not it was previously precached, so delete any record of that
158 // URL having been precached from the URL table.
159 buffered_writes_
.push_back(
160 base::Bind(&PrecacheURLTable::DeleteURL
,
161 base::Unretained(&precache_url_table_
), url
));
162 buffered_urls_
.insert(url
.spec());
166 bool PrecacheDatabase::IsDatabaseAccessible() const {
167 DCHECK(thread_checker_
.CalledOnValidThread());
170 return db_
->is_open();
173 void PrecacheDatabase::Flush() {
174 DCHECK(thread_checker_
.CalledOnValidThread());
175 if (buffered_writes_
.empty()) {
176 // Do nothing if there's nothing to flush.
177 DCHECK(buffered_urls_
.empty());
181 if (IsDatabaseAccessible()) {
182 sql::Transaction
transaction(db_
.get());
183 if (transaction
.Begin()) {
184 for (std::vector
<base::Closure
>::const_iterator it
=
185 buffered_writes_
.begin();
186 it
!= buffered_writes_
.end(); ++it
) {
190 transaction
.Commit();
194 // Clear the buffer, even if the database is inaccessible or unable to begin a
196 buffered_writes_
.clear();
197 buffered_urls_
.clear();
200 void PrecacheDatabase::PostedFlush() {
201 DCHECK(thread_checker_
.CalledOnValidThread());
202 DCHECK(is_flush_posted_
);
203 is_flush_posted_
= false;
207 void PrecacheDatabase::MaybePostFlush() {
208 DCHECK(thread_checker_
.CalledOnValidThread());
210 if (buffered_writes_
.empty() || is_flush_posted_
) {
211 // There's no point in posting a flush if there's nothing to be flushed or
212 // if a flush has already been posted.
216 DCHECK(base::MessageLoop::current());
217 // Post a delayed task to flush the buffer in 1 second, so that multiple
218 // database writes can be buffered up and flushed together in the same
220 base::MessageLoop::current()->PostDelayedTask(
221 FROM_HERE
, base::Bind(&PrecacheDatabase::PostedFlush
,
222 scoped_refptr
<PrecacheDatabase
>(this)),
223 base::TimeDelta::FromSeconds(1));
224 is_flush_posted_
= true;
227 } // namespace precache