blob: 20e510da960902b9229fdfc998b21ceb394caea2 [file] [log] [blame]
// Copyright 2018 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 THIRD_PARTY_BLINK_RENDERER_PLATFORM_BINDINGS_PARKABLE_STRING_MANAGER_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_BINDINGS_PARKABLE_STRING_MANAGER_H_
#include "base/feature_list.h"
#include "base/macros.h"
#include "base/memory/scoped_refptr.h"
#include "base/trace_event/memory_dump_provider.h"
#include "third_party/blink/renderer/platform/bindings/parkable_string.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/blink/renderer/platform/wtf/allocator.h"
#include "third_party/blink/renderer/platform/wtf/hash_functions.h"
#include "third_party/blink/renderer/platform/wtf/hash_map.h"
#include "third_party/blink/renderer/platform/wtf/hash_set.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace blink {
class ParkableString;
const base::Feature kCompressParkableStringsInBackground{
"CompressParkableStringsInBackground", base::FEATURE_ENABLED_BY_DEFAULT};
const base::Feature kCompressParkableStringsInForeground{
"CompressParkableStringsInForeground", base::FEATURE_DISABLED_BY_DEFAULT};
class PLATFORM_EXPORT ParkableStringManagerDumpProvider
: public base::trace_event::MemoryDumpProvider {
USING_FAST_MALLOC(ParkableStringManagerDumpProvider);
public:
static ParkableStringManagerDumpProvider* Instance();
~ParkableStringManagerDumpProvider() override;
bool OnMemoryDump(const base::trace_event::MemoryDumpArgs&,
base::trace_event::ProcessMemoryDump*) override;
private:
ParkableStringManagerDumpProvider();
DISALLOW_COPY_AND_ASSIGN(ParkableStringManagerDumpProvider);
};
// Manages all the ParkableStrings, and parks eligible strings after the
// renderer has been backgrounded.
// Main Thread only.
class PLATFORM_EXPORT ParkableStringManager {
USING_FAST_MALLOC(ParkableStringManager);
public:
static ParkableStringManager& Instance();
~ParkableStringManager();
void SetRendererBackgrounded(bool backgrounded);
bool IsRendererBackgrounded() const;
void PurgeMemory();
// Number of parked and unparked strings. Public for testing.
size_t Size() const;
bool OnMemoryDump(base::trace_event::ProcessMemoryDump* pmd);
// Whether a string is parkable or not. Can be called from any thread.
static bool ShouldPark(const StringImpl& string);
// Public for testing.
constexpr static int kAgingIntervalInSeconds = 2;
constexpr static int kParkingDelayInSeconds = 10;
constexpr static int kStatisticsRecordingDelayInSeconds = 30;
private:
friend class ParkableString;
friend class ParkableStringImpl;
scoped_refptr<ParkableStringImpl> Add(scoped_refptr<StringImpl>&&);
void Remove(ParkableStringImpl*, StringImpl*);
void OnParked(ParkableStringImpl*, StringImpl*);
void OnUnparked(ParkableStringImpl*, StringImpl*);
void ParkAll(ParkableStringImpl::ParkingMode mode);
void ParkAllIfRendererBackgrounded(ParkableStringImpl::ParkingMode mode);
void DropStringsWithCompressedDataAndRecordStatistics();
void AgeStringsAndPark();
void ScheduleAgingTaskIfNeeded();
void ResetForTesting();
ParkableStringManager();
bool backgrounded_;
bool waiting_to_record_stats_;
bool has_pending_aging_task_;
bool should_record_stats_;
HashMap<StringImpl*, ParkableStringImpl*, PtrHash<StringImpl>>
unparked_strings_;
HashSet<ParkableStringImpl*, PtrHash<ParkableStringImpl>> parked_strings_;
friend class ParkableStringTestBase;
FRIEND_TEST_ALL_PREFIXES(ParkableStringTest, SynchronousCompression);
DISALLOW_COPY_AND_ASSIGN(ParkableStringManager);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_BINDINGS_PARKABLE_STRING_MANAGER_H_