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
|
/*
Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de)
Copyright (C) 2001 Dirk Mueller <mueller@kde.org>
Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
This class provides all functionality needed for loading images, style
sheets and html
pages from the web. It has a memory cache for these objects.
*/
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_FETCH_MEMORY_CACHE_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_FETCH_MEMORY_CACHE_H_
#include "base/gtest_prod_util.h"
#include "base/task/single_thread_task_runner.h"
#include "base/time/time.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_hash_map.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_linked_hash_set.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_vector.h"
#include "third_party/blink/renderer/platform/heap/forward.h"
#include "third_party/blink/renderer/platform/instrumentation/memory_pressure_listener.h"
#include "third_party/blink/renderer/platform/instrumentation/tracing/memory_cache_dump_provider.h"
#include "third_party/blink/renderer/platform/loader/fetch/resource.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/blink/renderer/platform/scheduler/public/thread.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "third_party/blink/renderer/platform/wtf/text/string_hash.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"
namespace blink {
class KURL;
// Member<MemoryCacheEntry> + MemoryCacheEntry::clearResourceWeak() monitors
// eviction from MemoryCache due to Resource garbage collection.
// WeakMember<Resource> + Resource's prefinalizer cannot determine whether the
// Resource was on MemoryCache or not, because WeakMember is already cleared
// when the prefinalizer is executed.
class MemoryCacheEntry final : public GarbageCollected<MemoryCacheEntry> {
public:
explicit MemoryCacheEntry(Resource* resource) : resource_(resource) {}
void Trace(Visitor*) const;
Resource* GetResource() const { return resource_.Get(); }
private:
void ClearResourceWeak(const LivenessBroker&);
// We use UntracedMember<> here to do custom weak processing.
UntracedMember<Resource> resource_;
};
// This cache holds subresources used by Web pages: images, scripts,
// stylesheets, etc.
class PLATFORM_EXPORT MemoryCache final : public GarbageCollected<MemoryCache>,
public MemoryCacheDumpClient,
public MemoryPressureListener {
public:
explicit MemoryCache(scoped_refptr<base::SingleThreadTaskRunner> task_runner);
MemoryCache(const MemoryCache&) = delete;
MemoryCache& operator=(const MemoryCache&) = delete;
~MemoryCache() override;
// Return the memory cache.
// TODO(crbug.com/1127971): This should be per AgentCluster.
static MemoryCache* Get();
void Trace(Visitor*) const override;
struct TypeStatistic {
STACK_ALLOCATED();
public:
size_t count;
size_t size;
size_t decoded_size;
size_t encoded_size;
size_t overhead_size;
size_t code_cache_size;
size_t encoded_size_duplicated_in_data_urls;
TypeStatistic()
: count(0),
size(0),
decoded_size(0),
encoded_size(0),
overhead_size(0),
code_cache_size(0),
encoded_size_duplicated_in_data_urls(0) {}
void AddResource(Resource*);
};
struct Statistics {
STACK_ALLOCATED();
public:
TypeStatistic images;
TypeStatistic css_style_sheets;
TypeStatistic scripts;
TypeStatistic xsl_style_sheets;
TypeStatistic fonts;
TypeStatistic other;
};
// Do not use this method outside test purposes.
// A resourfe URL is not enough to do a correct MemoryCache lookup, and
// relying on the method would likely yield wrong results.
Resource* ResourceForURLForTesting(const KURL&) const;
Resource* ResourceForURL(const KURL&, const String& cache_identifier) const;
HeapVector<Member<Resource>> ResourcesForURL(const KURL&) const;
void Add(Resource*);
void Remove(Resource*);
bool Contains(const Resource*) const;
static KURL RemoveFragmentIdentifierIfNeeded(const KURL& original_url);
static String DefaultCacheIdentifier();
// Evicts all resources in the cache, such that they can no longer be
// retrieved with `ResourceForURL`, `ResourcesForURL` or `Contains`. Also
// releases all strong references held by the cache.
void EvictResources();
// Called to update MemoryCache::size().
void Update(Resource*, size_t old_size, size_t new_size);
void RemoveURLFromCache(const KURL&);
Statistics GetStatistics() const;
size_t size() const { return size_; }
// Called by the loader to notify that a new page is being loaded.
// The strong references the memory cache is holding for the current page
// will be moved to the previous generation.
void SavePageResourceStrongReferences(HeapVector<Member<Resource>> resources);
void SaveStrongReference(Resource* resource);
// Take memory usage snapshot for tracing.
bool OnMemoryDump(WebMemoryDumpLevelOfDetail, WebProcessMemoryDump*) override;
void OnMemoryPressure(
base::MemoryPressureListener::MemoryPressureLevel) override;
private:
// A URL-based map of all resources that are in the cache (including the
// freshest version of objects that are currently being referenced by a Web
// page). removeFragmentIdentifierIfNeeded() should be called for the url
// before using it as a key for the map.
using ResourceMap = GCedHeapHashMap<String, Member<MemoryCacheEntry>>;
using ResourceMapIndex = HeapHashMap<String, Member<ResourceMap>>;
ResourceMap* EnsureResourceMap(const String& cache_identifier);
ResourceMapIndex resource_maps_;
void AddInternal(ResourceMap*, MemoryCacheEntry*);
void RemoveInternal(ResourceMap*, const ResourceMap::iterator&);
void PruneStrongReferences();
void ClearStrongReferences();
// The number of bytes currently consumed by resources in the cache.
size_t size_ = 0;
// An LRU linked list. The tail contains the most recent items. When
// an item is accessed via `ResourceAccessed` it is moved to the end
// of the list. This list is pruned from the front based on size and
// age.
HeapLinkedHashSet<Member<Resource>> strong_references_;
base::TimeTicks strong_references_prune_time_;
base::TimeDelta strong_references_prune_duration_;
scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
friend class MemoryCacheTest;
FRIEND_TEST_ALL_PREFIXES(MemoryCacheStrongReferenceTest, ResourceTimeout);
FRIEND_TEST_ALL_PREFIXES(MemoryCacheStrongReferenceTest, LRU);
FRIEND_TEST_ALL_PREFIXES(MemoryCacheStrongReferenceTest,
ClearStrongReferences);
};
// Sets the global cache, used to swap in a test instance. Returns the old
// MemoryCache object.
PLATFORM_EXPORT MemoryCache* ReplaceMemoryCacheForTesting(MemoryCache*);
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_FETCH_MEMORY_CACHE_H_
|