blob: 40ff1c69c13cb5bd60c323693dc2239fdcfe7ac3 [file] [log] [blame]
/*
* Copyright (C) 2019 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "WebBackForwardCache.h"
#include "Logging.h"
#include "SuspendedPageProxy.h"
#include "WebBackForwardCacheEntry.h"
#include "WebBackForwardListItem.h"
#include "WebPageProxy.h"
#include "WebProcessMessages.h"
#include "WebProcessPool.h"
#include "WebProcessProxy.h"
#include "WebsiteDataStore.h"
namespace WebKit {
class EntryWithSuspendedPage final : public WebBackForwardCacheEntry {
public:
EntryWithSuspendedPage(WebBackForwardCache& backForwardCache, std::unique_ptr<SuspendedPageProxy>&& suspendedPage)
: WebBackForwardCacheEntry(backForwardCache)
, m_suspendedPage(WTFMove(suspendedPage))
{
}
SuspendedPageProxy* suspendedPage() const final { return m_suspendedPage.get(); }
std::unique_ptr<SuspendedPageProxy> takeSuspendedPage() final { return std::exchange(m_suspendedPage, nullptr); }
WebCore::ProcessIdentifier processIdentifier() const final { return process().coreProcessIdentifier(); }
WebProcessProxy& process() const final { return m_suspendedPage->process(); }
private:
std::unique_ptr<SuspendedPageProxy> m_suspendedPage;
};
class EntryWithoutSuspendedPage final : public WebBackForwardCacheEntry {
public:
EntryWithoutSuspendedPage(WebBackForwardCache& backForwardCache, const WebCore::BackForwardItemIdentifier& backForwardItemID, WebCore::ProcessIdentifier processIdentifier)
: WebBackForwardCacheEntry(backForwardCache)
, m_processIdentifier(processIdentifier)
, m_backForwardItemID(backForwardItemID)
{
}
~EntryWithoutSuspendedPage()
{
auto& process = this->process();
process.sendWithAsyncReply(Messages::WebProcess::ClearCachedPage(m_backForwardItemID), [token = process.throttler().backgroundActivityToken()] { });
}
WebCore::ProcessIdentifier processIdentifier() const final { return m_processIdentifier; }
WebProcessProxy& process() const final
{
auto* process = WebProcessProxy::processForIdentifier(m_processIdentifier);
ASSERT(process);
return *process;
}
private:
SuspendedPageProxy* suspendedPage() const final { return nullptr; }
std::unique_ptr<SuspendedPageProxy> takeSuspendedPage() final { return nullptr; }
WebCore::ProcessIdentifier m_processIdentifier;
WebCore::BackForwardItemIdentifier m_backForwardItemID;
};
WebBackForwardCache::WebBackForwardCache(WebProcessPool& processPool)
: m_processPool(processPool)
{
}
WebBackForwardCache::~WebBackForwardCache()
{
clear();
}
inline void WebBackForwardCache::removeOldestEntry()
{
ASSERT(!m_itemsWithCachedPage.isEmpty());
removeEntry(*m_itemsWithCachedPage.first());
}
void WebBackForwardCache::setCapacity(unsigned capacity)
{
if (m_capacity == capacity)
return;
m_capacity = capacity;
while (size() > capacity)
removeOldestEntry();
m_processPool.sendToAllProcesses(Messages::WebProcess::SetBackForwardCacheCapacity(m_capacity));
}
void WebBackForwardCache::addEntry(WebBackForwardListItem& item, std::unique_ptr<WebBackForwardCacheEntry>&& backForwardCacheEntry)
{
ASSERT(capacity());
ASSERT(backForwardCacheEntry);
if (item.backForwardCacheEntry()) {
ASSERT(m_itemsWithCachedPage.contains(&item));
m_itemsWithCachedPage.removeFirst(&item);
}
item.setBackForwardCacheEntry(WTFMove(backForwardCacheEntry));
m_itemsWithCachedPage.append(&item);
if (size() > capacity())
removeOldestEntry();
ASSERT(size() <= capacity());
RELEASE_LOG(BackForwardCache, "WebBackForwardCache::addEntry: item: %s, hasSuspendedPage: %d, size: %u / %u", item.itemID().string().utf8().data(), !!item.suspendedPage(), size(), capacity());
}
void WebBackForwardCache::addEntry(WebBackForwardListItem& item, std::unique_ptr<SuspendedPageProxy>&& suspendedPage)
{
addEntry(item, makeUnique<EntryWithSuspendedPage>(*this, WTFMove(suspendedPage)));
}
void WebBackForwardCache::addEntry(WebBackForwardListItem& item, WebCore::ProcessIdentifier processIdentifier)
{
addEntry(item, makeUnique<EntryWithoutSuspendedPage>(*this, item.itemID(), WTFMove(processIdentifier)));
}
void WebBackForwardCache::removeEntry(WebBackForwardListItem& item)
{
ASSERT(m_itemsWithCachedPage.contains(&item));
m_itemsWithCachedPage.removeFirst(&item);
item.setBackForwardCacheEntry(nullptr);
RELEASE_LOG(BackForwardCache, "WebBackForwardCache::removeEntry: item: %s, size: %u / %u", item.itemID().string().utf8().data(), size(), capacity());
}
void WebBackForwardCache::removeEntry(SuspendedPageProxy& suspendedPage)
{
removeEntriesMatching([&suspendedPage](auto& item) {
return item.suspendedPage() == &suspendedPage;
});
}
std::unique_ptr<SuspendedPageProxy> WebBackForwardCache::takeSuspendedPage(WebBackForwardListItem& item)
{
RELEASE_LOG(BackForwardCache, "WebBackForwardCache::takeSuspendedPage: item: %s", item.itemID().string().utf8().data());
ASSERT(m_itemsWithCachedPage.contains(&item));
ASSERT(item.backForwardCacheEntry());
auto suspendedPage = item.backForwardCacheEntry()->takeSuspendedPage();
ASSERT(suspendedPage);
removeEntry(item);
return suspendedPage;
}
void WebBackForwardCache::removeEntriesForProcess(WebProcessProxy& process)
{
removeEntriesMatching([processIdentifier = process.coreProcessIdentifier()](auto& entry) {
ASSERT(entry.backForwardCacheEntry());
return entry.backForwardCacheEntry()->processIdentifier() == processIdentifier;
});
}
void WebBackForwardCache::removeEntriesForSession(PAL::SessionID sessionID)
{
removeEntriesMatching([sessionID](auto& item) {
return item.backForwardCacheEntry()->process().websiteDataStore().sessionID() == sessionID;
});
}
void WebBackForwardCache::removeEntriesForPage(WebPageProxy& page)
{
removeEntriesMatching([pageID = page.identifier()](auto& item) {
return item.pageID() == pageID;
});
}
void WebBackForwardCache::removeEntriesMatching(const Function<bool(WebBackForwardListItem&)>& matches)
{
m_itemsWithCachedPage.removeAllMatching([&](auto* item) {
if (matches(*item)) {
item->setBackForwardCacheEntry(nullptr);
return true;
}
return false;
});
}
void WebBackForwardCache::clear()
{
RELEASE_LOG(BackForwardCache, "WebBackForwardCache::clear");
auto itemsWithCachedPage = WTFMove(m_itemsWithCachedPage);
for (auto* item : itemsWithCachedPage)
item->setBackForwardCacheEntry(nullptr);
}
} // namespace WebKit.