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
|
// Copyright 2013 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.
#ifndef COMPONENTS_SYNC_SESSIONS_FAVICON_CACHE_H_
#define COMPONENTS_SYNC_SESSIONS_FAVICON_CACHE_H_
#include <stddef.h>
#include <stdint.h>
#include <map>
#include <memory>
#include <set>
#include <string>
#include <vector>
#include "base/compiler_specific.h"
#include "base/gtest_prod_util.h"
#include "base/macros.h"
#include "base/memory/linked_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/memory/ref_counted_memory.h"
#include "base/memory/weak_ptr.h"
#include "base/scoped_observer.h"
#include "base/task/cancelable_task_tracker.h"
#include "components/history/core/browser/history_service_observer.h"
#include "components/history/core/browser/history_types.h"
#include "components/sessions/core/session_id.h"
#include "components/sync/model/sync_change.h"
#include "components/sync/model/sync_error_factory.h"
#include "components/sync/model/syncable_service.h"
#include "url/gurl.h"
namespace chrome {
struct FaviconRawBitmapResult;
}
namespace favicon {
class FaviconService;
}
namespace history {
class HistoryService;
}
namespace sync_sessions {
enum IconSize {
SIZE_INVALID,
SIZE_16,
SIZE_32,
SIZE_64,
NUM_SIZES
};
struct SyncedFaviconInfo;
// Encapsulates the logic for loading and storing synced favicons.
// TODO(zea): make this a KeyedService.
class FaviconCache : public syncer::SyncableService,
public history::HistoryServiceObserver {
public:
FaviconCache(favicon::FaviconService* favicon_service,
history::HistoryService* history_service,
int max_sync_favicon_limit);
~FaviconCache() override;
// SyncableService implementation.
syncer::SyncMergeResult MergeDataAndStartSyncing(
syncer::ModelType type,
const syncer::SyncDataList& initial_sync_data,
std::unique_ptr<syncer::SyncChangeProcessor> sync_processor,
std::unique_ptr<syncer::SyncErrorFactory> error_handler) override;
void StopSyncing(syncer::ModelType type) override;
syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const override;
syncer::SyncError ProcessSyncChanges(
const tracked_objects::Location& from_here,
const syncer::SyncChangeList& change_list) override;
// If a valid favicon for the icon at |favicon_url| is found, fills
// |favicon_png| with the png-encoded image and returns true. Else, returns
// false.
bool GetSyncedFaviconForFaviconURL(
const GURL& favicon_url,
scoped_refptr<base::RefCountedMemory>* favicon_png) const;
// If a valid favicon for the icon associated with |page_url| is found, fills
// |favicon_png| with the png-encoded image and returns true. Else, returns
// false.
bool GetSyncedFaviconForPageURL(
const GURL& page_url,
scoped_refptr<base::RefCountedMemory>* favicon_png) const;
// Load the favicon for |page_url|. Will create a new sync node or update
// an existing one as necessary, and set the last visit time to the current
// time. Only those favicon types defined in SupportedFaviconTypes will be
// synced.
void OnPageFaviconUpdated(const GURL& page_url);
// Update the visit count for the favicon associated with |favicon_url|.
// If no favicon exists associated with |favicon_url|, triggers a load
// for the favicon associated with |page_url|.
void OnFaviconVisited(const GURL& page_url, const GURL& favicon_url);
// Consume Session sync favicon data. Will not overwrite existing favicons.
// If |icon_bytes| is empty, only updates the page->favicon url mapping.
// Safe to call within a transaction.
void OnReceivedSyncFavicon(const GURL& page_url,
const GURL& icon_url,
const std::string& icon_bytes,
int64_t visit_time_ms);
private:
friend class SyncFaviconCacheTest;
FRIEND_TEST_ALL_PREFIXES(SyncFaviconCacheTest, HistoryFullClear);
FRIEND_TEST_ALL_PREFIXES(SyncFaviconCacheTest, HistorySubsetClear);
// Functor for ordering SyncedFaviconInfo objects by recency;
struct FaviconRecencyFunctor {
bool operator()(const linked_ptr<SyncedFaviconInfo>& lhs,
const linked_ptr<SyncedFaviconInfo>& rhs) const;
};
// Map of favicon url to favicon image.
typedef std::map<GURL, linked_ptr<SyncedFaviconInfo> > FaviconMap;
typedef std::set<linked_ptr<SyncedFaviconInfo>,
FaviconRecencyFunctor> RecencySet;
// Map of page url to task id (for favicon loading).
typedef std::map<GURL, base::CancelableTaskTracker::TaskId> PageTaskMap;
// Map of page url to favicon url.
typedef std::map<GURL, GURL> PageFaviconMap;
// Helper method to perform OnReceivedSyncFavicon work without worrying about
// whether caller holds a sync transaction.
void OnReceivedSyncFaviconImpl(const GURL& icon_url,
const std::string& icon_bytes,
int64_t visit_time_ms);
// Callback method to store a tab's favicon into its sync node once it becomes
// available. Does nothing if no favicon data was available.
void OnFaviconDataAvailable(
const GURL& page_url,
const std::vector<favicon_base::FaviconRawBitmapResult>& bitmap_result);
// Helper method to update the sync state of the favicon at |icon_url|. If
// either |image_change_type| or |tracking_change_type| is ACTION_INVALID,
// the corresponding datatype won't be updated.
// Note: should only be called after both FAVICON_IMAGES and FAVICON_TRACKING
// have been successfully set up.
void UpdateSyncState(const GURL& icon_url,
syncer::SyncChange::SyncChangeType image_change_type,
syncer::SyncChange::SyncChangeType tracking_change_type);
// Helper method to get favicon info from |synced_favicons_|. If no info
// exists for |icon_url|, creates a new SyncedFaviconInfo in both
// |synced_favicons_| and |recent_favicons_| and returns it.
SyncedFaviconInfo* GetFaviconInfo(const GURL& icon_url);
// Updates the last visit time for the favicon at |icon_url| to |time| (and
// correspondly updates position in |recent_favicons_|.
void UpdateFaviconVisitTime(const GURL& icon_url, base::Time time);
// Expiration method. Looks through |recent_favicons_| to find any favicons
// that should be expired in order to maintain the sync favicon limit,
// appending deletions to |image_changes| and |tracking_changes| as necessary.
void ExpireFaviconsIfNecessary(syncer::SyncChangeList* image_changes,
syncer::SyncChangeList* tracking_changes);
// Returns the local favicon url associated with |sync_favicon| if one exists
// in |synced_favicons_|, else returns an invalid GURL.
GURL GetLocalFaviconFromSyncedData(
const syncer::SyncData& sync_favicon) const;
// Merges |sync_favicon| into |synced_favicons_|, updating |local_changes|
// with any changes that should be pushed to the sync processor.
void MergeSyncFavicon(const syncer::SyncData& sync_favicon,
syncer::SyncChangeList* sync_changes);
// Updates |synced_favicons_| with the favicon data from |sync_favicon|.
void AddLocalFaviconFromSyncedData(const syncer::SyncData& sync_favicon);
// Creates a SyncData object from the |type| data of |favicon_url|
// from within |synced_favicons_|.
syncer::SyncData CreateSyncDataFromLocalFavicon(
syncer::ModelType type,
const GURL& favicon_url) const;
// Deletes all synced favicons corresponding with |favicon_urls| and pushes
// the deletions to sync.
void DeleteSyncedFavicons(const std::set<GURL>& favicon_urls);
// Deletes the favicon pointed to by |favicon_iter| and appends the necessary
// sync deletions to |image_changes| and |tracking_changes|.
void DeleteSyncedFavicon(FaviconMap::iterator favicon_iter,
syncer::SyncChangeList* image_changes,
syncer::SyncChangeList* tracking_changes);
// Locally drops the favicon pointed to by |favicon_iter|.
void DropSyncedFavicon(FaviconMap::iterator favicon_iter);
// Only drops the data associated with |type| of |favicon_iter|.
void DropPartialFavicon(FaviconMap::iterator favicon_iter,
syncer::ModelType type);
// For testing only.
size_t NumFaviconsForTest() const;
size_t NumTasksForTest() const;
// history::HistoryServiceObserver:
void OnURLsDeleted(history::HistoryService* history_service,
bool all_history,
bool expired,
const history::URLRows& deleted_rows,
const std::set<GURL>& favicon_urls) override;
favicon::FaviconService* favicon_service_;
// Trask tracker for loading favicons.
base::CancelableTaskTracker cancelable_task_tracker_;
// Our actual cached favicon data.
FaviconMap synced_favicons_;
// An LRU ordering of the favicons comprising |synced_favicons_| (oldest to
// newest).
RecencySet recent_favicons_;
// Our set of pending favicon loads, indexed by page url.
PageTaskMap page_task_map_;
// Map of page and associated favicon urls.
PageFaviconMap page_favicon_map_;
// TODO(zea): consider creating a favicon handler here for fetching unsynced
// favicons from the web.
std::unique_ptr<syncer::SyncChangeProcessor> favicon_images_sync_processor_;
std::unique_ptr<syncer::SyncChangeProcessor> favicon_tracking_sync_processor_;
// Maximum number of favicons to sync. 0 means no limit.
const size_t max_sync_favicon_limit_;
ScopedObserver<history::HistoryService, history::HistoryServiceObserver>
history_service_observer_;
// Weak pointer factory for favicon loads.
base::WeakPtrFactory<FaviconCache> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(FaviconCache);
};
} // namespace sync_sessions
#endif // COMPONENTS_SYNC_SESSIONS_FAVICON_CACHE_H_
|