summaryrefslogtreecommitdiffstats
path: root/components/offline_pages/offline_page_metadata_store_impl.cc
blob: c68c67641a1b04b1f25d35f488a1466187d4204a (plain)
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
// Copyright 2015 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 "components/offline_pages/offline_page_metadata_store_impl.h"

#include "base/bind.h"
#include "base/files/file_path.h"
#include "base/location.h"
#include "base/message_loop/message_loop.h"
#include "base/sequenced_task_runner.h"
#include "base/strings/utf_string_conversions.h"
#include "base/thread_task_runner_handle.h"
#include "components/leveldb_proto/proto_database.h"
#include "components/offline_pages/offline_page_item.h"
#include "components/offline_pages/proto/offline_pages.pb.h"
#include "third_party/leveldatabase/env_chromium.h"
#include "third_party/leveldatabase/src/include/leveldb/db.h"
#include "url/gurl.h"

using leveldb_proto::ProtoDatabase;

namespace offline_pages {
namespace {

typedef std::vector<OfflinePageEntry> OfflinePageEntryVector;

void OfflinePageItemToEntry(const OfflinePageItem& item,
                            offline_pages::OfflinePageEntry* item_proto) {
  DCHECK(item_proto);
  item_proto->set_url(item.url.spec());
  item_proto->set_bookmark_id(item.bookmark_id);
  item_proto->set_version(item.version);
  std::string path_string;
#if defined(OS_POSIX)
  path_string = item.file_path.value();
#elif defined(OS_WIN)
  path_string = base::WideToUTF8(item.file_path.value());
#endif
  item_proto->set_file_path(path_string);
  item_proto->set_file_size(item.file_size);
  item_proto->set_creation_time(item.creation_time.ToInternalValue());
  item_proto->set_last_access_time(item.last_access_time.ToInternalValue());
}

bool OfflinePageItemFromEntry(const offline_pages::OfflinePageEntry& item_proto,
                              OfflinePageItem* item) {
  DCHECK(item);
  if (!item_proto.has_url() || !item_proto.has_bookmark_id() ||
      !item_proto.has_version() || !item_proto.has_file_path()) {
    return false;
  }
  item->url = GURL(item_proto.url());
  item->bookmark_id = item_proto.bookmark_id();
  item->version = item_proto.version();
#if defined(OS_POSIX)
  item->file_path = base::FilePath(item_proto.file_path());
#elif defined(OS_WIN)
  item->file_path = base::FilePath(base::UTF8ToWide(item_proto.file_path()));
#endif
  if (item_proto.has_file_size()) {
    item->file_size = item_proto.file_size();
  }
  if (item_proto.has_creation_time()) {
    item->creation_time =
        base::Time::FromInternalValue(item_proto.creation_time());
  }
  if (item_proto.has_last_access_time()) {
    item->last_access_time =
        base::Time::FromInternalValue(item_proto.last_access_time());
  }
  return true;
}

void OnLoadDone(const OfflinePageMetadataStore::LoadCallback& callback,
                const base::Callback<void()>& failure_callback,
                bool success,
                scoped_ptr<OfflinePageEntryVector> entries) {
  if (!success) {
    // TODO(fgorski): Add UMA for this case.
    DVLOG(1) << "Offline pages database load failed.";
    failure_callback.Run();
    base::MessageLoop::current()->PostTask(
        FROM_HERE, base::Bind(callback, false, std::vector<OfflinePageItem>()));
    return;
  }

  std::vector<OfflinePageItem> result;
  for (OfflinePageEntryVector::iterator it = entries->begin();
       it != entries->end(); ++it) {
    OfflinePageItem item;
    if (OfflinePageItemFromEntry(*it, &item))
      result.push_back(item);
    else
      DVLOG(1) << "Failed to create offline page item from proto.";
  }

  base::MessageLoop::current()->PostTask(FROM_HERE,
                                         base::Bind(callback, true, result));
}

void OnUpdateDone(const OfflinePageMetadataStore::UpdateCallback& callback,
                  const base::Callback<void()>& failure_callback,
                  bool success) {
  if (!success) {
    // TODO(fgorski): Add UMA for this case.
    DVLOG(1) << "Offline pages database update failed.";
    failure_callback.Run();
  }

  base::MessageLoop::current()->PostTask(FROM_HERE,
                                         base::Bind(callback, success));
}

}  // namespace

OfflinePageMetadataStoreImpl::OfflinePageMetadataStoreImpl(
    scoped_ptr<ProtoDatabase<OfflinePageEntry>> database,
    const base::FilePath& database_dir)
    : database_(database.Pass()), weak_ptr_factory_(this) {
  database_->Init(database_dir,
                  base::Bind(&OfflinePageMetadataStoreImpl::OnInitDone,
                             weak_ptr_factory_.GetWeakPtr()));
}

OfflinePageMetadataStoreImpl::~OfflinePageMetadataStoreImpl() {
}

void OfflinePageMetadataStoreImpl::OnInitDone(bool success) {
  if (!success) {
    // TODO(fgorski): Add UMA for this case.
    DVLOG(1) << "Offline pages database init failed.";
    ResetDB();
    return;
  }
}

void OfflinePageMetadataStoreImpl::Load(const LoadCallback& callback) {
  if (!database_.get()) {
    // Failing fast here, because DB is not initialized, and there is nothing
    // that can be done about it.
    // Callback is invoked through message loop to avoid improper retry and
    // simplify testing.
    DVLOG(1) << "Offline pages database not available in Load.";
    base::MessageLoop::current()->PostTask(
        FROM_HERE, base::Bind(callback, false, std::vector<OfflinePageItem>()));
    return;
  }

  database_->LoadEntries(base::Bind(
      &OnLoadDone, callback, base::Bind(&OfflinePageMetadataStoreImpl::ResetDB,
                                        weak_ptr_factory_.GetWeakPtr())));
}

void OfflinePageMetadataStoreImpl::AddOfflinePage(
    const OfflinePageItem& offline_page_item,
    const UpdateCallback& callback) {
  scoped_ptr<ProtoDatabase<OfflinePageEntry>::KeyEntryVector> entries_to_save(
      new ProtoDatabase<OfflinePageEntry>::KeyEntryVector());
  scoped_ptr<std::vector<std::string>> keys_to_remove(
      new std::vector<std::string>());

  OfflinePageEntry offline_page_proto;
  OfflinePageItemToEntry(offline_page_item, &offline_page_proto);
  entries_to_save->push_back(
      std::make_pair(offline_page_proto.url(), offline_page_proto));

  UpdateEntries(entries_to_save.Pass(), keys_to_remove.Pass(), callback);
}

void OfflinePageMetadataStoreImpl::RemoveOfflinePage(
    const GURL& page_url,
    const UpdateCallback& callback) {
  scoped_ptr<ProtoDatabase<OfflinePageEntry>::KeyEntryVector> entries_to_save(
      new ProtoDatabase<OfflinePageEntry>::KeyEntryVector());
  scoped_ptr<std::vector<std::string>> keys_to_remove(
      new std::vector<std::string>());

  keys_to_remove->push_back(page_url.spec());

  UpdateEntries(entries_to_save.Pass(), keys_to_remove.Pass(), callback);
}

void OfflinePageMetadataStoreImpl::UpdateEntries(
    scoped_ptr<ProtoDatabase<OfflinePageEntry>::KeyEntryVector> entries_to_save,
    scoped_ptr<std::vector<std::string>> keys_to_remove,
    const UpdateCallback& callback) {
  if (!database_.get()) {
    // Failing fast here, because DB is not initialized, and there is nothing
    // that can be done about it.
    // Callback is invoked through message loop to avoid improper retry and
    // simplify testing.
    DVLOG(1) << "Offline pages database not available in UpdateEntries.";
    base::MessageLoop::current()->PostTask(FROM_HERE,
                                           base::Bind(callback, false));
    return;
  }

  database_->UpdateEntries(
      entries_to_save.Pass(), keys_to_remove.Pass(),
      base::Bind(&OnUpdateDone, callback,
                 base::Bind(&OfflinePageMetadataStoreImpl::ResetDB,
                            weak_ptr_factory_.GetWeakPtr())));
}

void OfflinePageMetadataStoreImpl::ResetDB() {
  database_.reset();
  weak_ptr_factory_.InvalidateWeakPtrs();
}

}  // namespace offline_pages