blob: b8ab9b6a0c516017f5914b5da9a5b142b8efc9cf [file] [log] [blame]
/*
* Copyright (C) 2011 Google Inc. All rights reserved.
* Copyright (C) 2015-2017 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:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * 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.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 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 THE COPYRIGHT
* OWNER OR 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 "InspectorPageAgent.h"
#include "CachedResource.h"
#include "CachedResourceLoader.h"
#include "Cookie.h"
#include "CookieJar.h"
#include "CustomHeaderFields.h"
#include "Document.h"
#include "DocumentLoader.h"
#include "Frame.h"
#include "FrameLoadRequest.h"
#include "FrameLoader.h"
#include "FrameSnapshotting.h"
#include "FrameView.h"
#include "HTMLFrameOwnerElement.h"
#include "HTMLNames.h"
#include "ImageBuffer.h"
#include "InspectorClient.h"
#include "InspectorDOMAgent.h"
#include "InspectorNetworkAgent.h"
#include "InspectorOverlay.h"
#include "InstrumentingAgents.h"
#include "MIMETypeRegistry.h"
#include "MemoryCache.h"
#include "Page.h"
#include "RenderObject.h"
#include "RenderTheme.h"
#include "ScriptController.h"
#include "SecurityOrigin.h"
#include "Settings.h"
#include "StyleScope.h"
#include "TextEncoding.h"
#include "UserGestureIndicator.h"
#include <JavaScriptCore/ContentSearchUtilities.h>
#include <JavaScriptCore/IdentifiersFactory.h>
#include <JavaScriptCore/RegularExpression.h>
#include <wtf/ListHashSet.h>
#include <wtf/Stopwatch.h>
#include <wtf/text/Base64.h>
#include <wtf/text/StringBuilder.h>
#if ENABLE(APPLICATION_MANIFEST)
#include "CachedApplicationManifest.h"
#endif
#if ENABLE(WEB_ARCHIVE) && USE(CF)
#include "LegacyWebArchive.h"
#endif
namespace WebCore {
using namespace Inspector;
// Keep this in sync with Page.Setting
#define FOR_EACH_INSPECTOR_OVERRIDE_SETTING(macro) \
macro(AuthorAndUserStylesEnabled) \
macro(ICECandidateFilteringEnabled) \
macro(ImagesEnabled) \
macro(MediaCaptureRequiresSecureConnection) \
macro(MockCaptureDevicesEnabled) \
macro(NeedsSiteSpecificQuirks) \
macro(ScriptEnabled) \
macro(WebRTCEncryptionEnabled) \
macro(WebSecurityEnabled)
static bool decodeBuffer(const char* buffer, unsigned size, const String& textEncodingName, String* result)
{
if (buffer) {
TextEncoding encoding(textEncodingName);
if (!encoding.isValid())
encoding = WindowsLatin1Encoding();
*result = encoding.decode(buffer, size);
return true;
}
return false;
}
bool InspectorPageAgent::mainResourceContent(Frame* frame, bool withBase64Encode, String* result)
{
RefPtr<SharedBuffer> buffer = frame->loader().documentLoader()->mainResourceData();
if (!buffer)
return false;
return InspectorPageAgent::dataContent(buffer->data(), buffer->size(), frame->document()->encoding(), withBase64Encode, result);
}
bool InspectorPageAgent::sharedBufferContent(RefPtr<SharedBuffer>&& buffer, const String& textEncodingName, bool withBase64Encode, String* result)
{
return dataContent(buffer ? buffer->data() : nullptr, buffer ? buffer->size() : 0, textEncodingName, withBase64Encode, result);
}
bool InspectorPageAgent::dataContent(const char* data, unsigned size, const String& textEncodingName, bool withBase64Encode, String* result)
{
if (withBase64Encode) {
*result = base64Encode(data, size);
return true;
}
return decodeBuffer(data, size, textEncodingName, result);
}
Vector<CachedResource*> InspectorPageAgent::cachedResourcesForFrame(Frame* frame)
{
Vector<CachedResource*> result;
for (auto& cachedResourceHandle : frame->document()->cachedResourceLoader().allCachedResources().values()) {
auto* cachedResource = cachedResourceHandle.get();
if (cachedResource->resourceRequest().hiddenFromInspector())
continue;
switch (cachedResource->type()) {
case CachedResource::Type::ImageResource:
// Skip images that were not auto loaded (images disabled in the user agent).
#if ENABLE(SVG_FONTS)
case CachedResource::Type::SVGFontResource:
#endif
case CachedResource::Type::FontResource:
// Skip fonts that were referenced in CSS but never used/downloaded.
if (cachedResource->stillNeedsLoad())
continue;
break;
default:
// All other CachedResource types download immediately.
break;
}
result.append(cachedResource);
}
return result;
}
void InspectorPageAgent::resourceContent(ErrorString& errorString, Frame* frame, const URL& url, String* result, bool* base64Encoded)
{
DocumentLoader* loader = assertDocumentLoader(errorString, frame);
if (!loader)
return;
RefPtr<SharedBuffer> buffer;
bool success = false;
if (equalIgnoringFragmentIdentifier(url, loader->url())) {
*base64Encoded = false;
success = mainResourceContent(frame, *base64Encoded, result);
}
if (!success) {
if (auto* resource = cachedResource(frame, url))
success = InspectorNetworkAgent::cachedResourceContent(*resource, result, base64Encoded);
}
if (!success)
errorString = "Missing resource for given url"_s;
}
String InspectorPageAgent::sourceMapURLForResource(CachedResource* cachedResource)
{
if (!cachedResource)
return String();
// Scripts are handled in a separate path.
if (cachedResource->type() != CachedResource::Type::CSSStyleSheet)
return String();
String sourceMapHeader = cachedResource->response().httpHeaderField(HTTPHeaderName::SourceMap);
if (!sourceMapHeader.isEmpty())
return sourceMapHeader;
sourceMapHeader = cachedResource->response().httpHeaderField(HTTPHeaderName::XSourceMap);
if (!sourceMapHeader.isEmpty())
return sourceMapHeader;
String content;
bool base64Encoded;
if (InspectorNetworkAgent::cachedResourceContent(*cachedResource, &content, &base64Encoded) && !base64Encoded)
return ContentSearchUtilities::findStylesheetSourceMapURL(content);
return String();
}
CachedResource* InspectorPageAgent::cachedResource(Frame* frame, const URL& url)
{
if (url.isNull())
return nullptr;
CachedResource* cachedResource = frame->document()->cachedResourceLoader().cachedResource(MemoryCache::removeFragmentIdentifierIfNeeded(url));
if (!cachedResource) {
ResourceRequest request(url);
request.setDomainForCachePartition(frame->document()->domainForCachePartition());
cachedResource = MemoryCache::singleton().resourceForRequest(request, frame->page()->sessionID());
}
return cachedResource;
}
Inspector::Protocol::Page::ResourceType InspectorPageAgent::resourceTypeJSON(InspectorPageAgent::ResourceType resourceType)
{
switch (resourceType) {
case DocumentResource:
return Inspector::Protocol::Page::ResourceType::Document;
case ImageResource:
return Inspector::Protocol::Page::ResourceType::Image;
case FontResource:
return Inspector::Protocol::Page::ResourceType::Font;
case StyleSheetResource:
return Inspector::Protocol::Page::ResourceType::StyleSheet;
case ScriptResource:
return Inspector::Protocol::Page::ResourceType::Script;
case XHRResource:
return Inspector::Protocol::Page::ResourceType::XHR;
case FetchResource:
return Inspector::Protocol::Page::ResourceType::Fetch;
case PingResource:
return Inspector::Protocol::Page::ResourceType::Ping;
case BeaconResource:
return Inspector::Protocol::Page::ResourceType::Beacon;
case WebSocketResource:
return Inspector::Protocol::Page::ResourceType::WebSocket;
case OtherResource:
return Inspector::Protocol::Page::ResourceType::Other;
#if ENABLE(APPLICATION_MANIFEST)
case ApplicationManifestResource:
break;
#endif
}
return Inspector::Protocol::Page::ResourceType::Other;
}
InspectorPageAgent::ResourceType InspectorPageAgent::inspectorResourceType(CachedResource::Type type)
{
switch (type) {
case CachedResource::Type::ImageResource:
return InspectorPageAgent::ImageResource;
#if ENABLE(SVG_FONTS)
case CachedResource::Type::SVGFontResource:
#endif
case CachedResource::Type::FontResource:
return InspectorPageAgent::FontResource;
#if ENABLE(XSLT)
case CachedResource::Type::XSLStyleSheet:
#endif
case CachedResource::Type::CSSStyleSheet:
return InspectorPageAgent::StyleSheetResource;
case CachedResource::Type::Script:
return InspectorPageAgent::ScriptResource;
case CachedResource::Type::MainResource:
return InspectorPageAgent::DocumentResource;
case CachedResource::Type::Beacon:
return InspectorPageAgent::BeaconResource;
#if ENABLE(APPLICATION_MANIFEST)
case CachedResource::Type::ApplicationManifest:
return InspectorPageAgent::ApplicationManifestResource;
#endif
case CachedResource::Type::Ping:
return InspectorPageAgent::PingResource;
case CachedResource::Type::MediaResource:
case CachedResource::Type::Icon:
case CachedResource::Type::RawResource:
default:
return InspectorPageAgent::OtherResource;
}
}
InspectorPageAgent::ResourceType InspectorPageAgent::inspectorResourceType(const CachedResource& cachedResource)
{
if (cachedResource.type() == CachedResource::Type::RawResource) {
switch (cachedResource.resourceRequest().requester()) {
case ResourceRequest::Requester::Fetch:
return InspectorPageAgent::FetchResource;
case ResourceRequest::Requester::Main:
return InspectorPageAgent::DocumentResource;
default:
return InspectorPageAgent::XHRResource;
}
}
return inspectorResourceType(cachedResource.type());
}
Inspector::Protocol::Page::ResourceType InspectorPageAgent::cachedResourceTypeJSON(const CachedResource& cachedResource)
{
return resourceTypeJSON(inspectorResourceType(cachedResource));
}
Frame* InspectorPageAgent::findFrameWithSecurityOrigin(Page& page, const String& originRawString)
{
for (Frame* frame = &page.mainFrame(); frame; frame = frame->tree().traverseNext()) {
if (frame->document()->securityOrigin().toRawString() == originRawString)
return frame;
}
return nullptr;
}
DocumentLoader* InspectorPageAgent::assertDocumentLoader(ErrorString& errorString, Frame* frame)
{
FrameLoader& frameLoader = frame->loader();
DocumentLoader* documentLoader = frameLoader.documentLoader();
if (!documentLoader)
errorString = "Missing document loader for given frame"_s;
return documentLoader;
}
InspectorPageAgent::InspectorPageAgent(PageAgentContext& context, InspectorClient* client, InspectorOverlay* overlay)
: InspectorAgentBase("Page"_s, context)
, m_frontendDispatcher(makeUnique<Inspector::PageFrontendDispatcher>(context.frontendRouter))
, m_backendDispatcher(Inspector::PageBackendDispatcher::create(context.backendDispatcher, this))
, m_inspectedPage(context.inspectedPage)
, m_client(client)
, m_overlay(overlay)
{
}
InspectorPageAgent::~InspectorPageAgent() = default;
void InspectorPageAgent::didCreateFrontendAndBackend(Inspector::FrontendRouter*, Inspector::BackendDispatcher*)
{
}
void InspectorPageAgent::willDestroyFrontendAndBackend(Inspector::DisconnectReason)
{
ErrorString unused;
disable(unused);
}
void InspectorPageAgent::enable(ErrorString& errorString)
{
if (m_instrumentingAgents.inspectorPageAgent() == this) {
errorString = "Page domain already enabled"_s;
return;
}
m_instrumentingAgents.setInspectorPageAgent(this);
auto stopwatch = m_environment.executionStopwatch();
stopwatch->reset();
stopwatch->start();
#if HAVE(OS_DARK_MODE_SUPPORT)
defaultAppearanceDidChange(m_inspectedPage.defaultUseDarkAppearance());
#endif
}
void InspectorPageAgent::disable(ErrorString&)
{
m_instrumentingAgents.setInspectorPageAgent(nullptr);
ErrorString unused;
setShowPaintRects(unused, false);
setShowRulers(unused, false);
overrideUserAgent(unused, nullptr);
setEmulatedMedia(unused, emptyString());
setForcedAppearance(unused, emptyString());
#define DISABLE_INSPECTOR_OVERRIDE_SETTING(name) \
m_inspectedPage.settings().set##name##InspectorOverride(WTF::nullopt);
FOR_EACH_INSPECTOR_OVERRIDE_SETTING(DISABLE_INSPECTOR_OVERRIDE_SETTING)
#undef DISABLE_INSPECTOR_OVERRIDE_SETTING
m_client->setMockCaptureDevicesEnabledOverride(WTF::nullopt);
}
double InspectorPageAgent::timestamp()
{
return m_environment.executionStopwatch()->elapsedTime().seconds();
}
void InspectorPageAgent::reload(ErrorString&, const bool* optionalReloadFromOrigin, const bool* optionalRevalidateAllResources)
{
bool reloadFromOrigin = optionalReloadFromOrigin && *optionalReloadFromOrigin;
bool revalidateAllResources = optionalRevalidateAllResources && *optionalRevalidateAllResources;
OptionSet<ReloadOption> reloadOptions;
if (reloadFromOrigin)
reloadOptions.add(ReloadOption::FromOrigin);
if (!revalidateAllResources)
reloadOptions.add(ReloadOption::ExpiredOnly);
m_inspectedPage.mainFrame().loader().reload(reloadOptions);
}
void InspectorPageAgent::navigate(ErrorString&, const String& url)
{
UserGestureIndicator indicator { ProcessingUserGesture };
Frame& frame = m_inspectedPage.mainFrame();
ResourceRequest resourceRequest { frame.document()->completeURL(url) };
FrameLoadRequest frameLoadRequest { *frame.document(), frame.document()->securityOrigin(), resourceRequest, "_self"_s, LockHistory::No, LockBackForwardList::No, MaybeSendReferrer, AllowNavigationToInvalidURL::No, NewFrameOpenerPolicy::Allow, ShouldOpenExternalURLsPolicy::ShouldNotAllow, InitiatedByMainFrame::Unknown };
frame.loader().changeLocation(WTFMove(frameLoadRequest));
}
void InspectorPageAgent::overrideUserAgent(ErrorString&, const String* value)
{
m_userAgentOverride = value ? *value : String();
}
static inline Optional<bool> asOptionalBool(const bool* value)
{
if (!value)
return WTF::nullopt;
return *value;
}
void InspectorPageAgent::overrideSetting(ErrorString& errorString, const String& settingString, const bool* value)
{
if (settingString.isEmpty()) {
errorString = "settingString is empty"_s;
return;
}
auto setting = Inspector::Protocol::InspectorHelpers::parseEnumValueFromString<Inspector::Protocol::Page::Setting>(settingString);
if (!setting) {
errorString = makeString("Unknown settingString: "_s, settingString);
return;
}
auto overrideValue = asOptionalBool(value);
switch (setting.value()) {
#define CASE_INSPECTOR_OVERRIDE_SETTING(name) \
case Inspector::Protocol::Page::Setting::name: \
m_inspectedPage.settings().set##name##InspectorOverride(overrideValue); \
break; \
FOR_EACH_INSPECTOR_OVERRIDE_SETTING(CASE_INSPECTOR_OVERRIDE_SETTING)
#undef CASE_INSPECTOR_OVERRIDE_SETTING
}
// Update the UIProcess / client for particular overrides.
if (setting.value() == Inspector::Protocol::Page::Setting::MockCaptureDevicesEnabled)
m_client->setMockCaptureDevicesEnabledOverride(overrideValue);
}
static Inspector::Protocol::Page::CookieSameSitePolicy cookieSameSitePolicyJSON(Cookie::SameSitePolicy policy)
{
switch (policy) {
case Cookie::SameSitePolicy::None:
return Inspector::Protocol::Page::CookieSameSitePolicy::None;
case Cookie::SameSitePolicy::Lax:
return Inspector::Protocol::Page::CookieSameSitePolicy::Lax;
case Cookie::SameSitePolicy::Strict:
return Inspector::Protocol::Page::CookieSameSitePolicy::Strict;
}
ASSERT_NOT_REACHED();
return Inspector::Protocol::Page::CookieSameSitePolicy::None;
}
static Ref<Inspector::Protocol::Page::Cookie> buildObjectForCookie(const Cookie& cookie)
{
return Inspector::Protocol::Page::Cookie::create()
.setName(cookie.name)
.setValue(cookie.value)
.setDomain(cookie.domain)
.setPath(cookie.path)
.setExpires(cookie.expires)
.setSize((cookie.name.length() + cookie.value.length()))
.setHttpOnly(cookie.httpOnly)
.setSecure(cookie.secure)
.setSession(cookie.session)
.setSameSite(cookieSameSitePolicyJSON(cookie.sameSite))
.release();
}
static Ref<JSON::ArrayOf<Inspector::Protocol::Page::Cookie>> buildArrayForCookies(ListHashSet<Cookie>& cookiesList)
{
auto cookies = JSON::ArrayOf<Inspector::Protocol::Page::Cookie>::create();
for (const auto& cookie : cookiesList)
cookies->addItem(buildObjectForCookie(cookie));
return cookies;
}
static Vector<URL> allResourcesURLsForFrame(Frame* frame)
{
Vector<URL> result;
result.append(frame->loader().documentLoader()->url());
for (auto* cachedResource : InspectorPageAgent::cachedResourcesForFrame(frame))
result.append(cachedResource->url());
return result;
}
void InspectorPageAgent::getCookies(ErrorString&, RefPtr<JSON::ArrayOf<Inspector::Protocol::Page::Cookie>>& cookies)
{
// If we can get raw cookies.
ListHashSet<Cookie> rawCookiesList;
// If we can't get raw cookies - fall back to String representation
StringBuilder stringCookiesList;
// Return value to getRawCookies should be the same for every call because
// the return value is platform/network backend specific, and the call will
// always return the same true/false value.
bool rawCookiesImplemented = false;
for (Frame* frame = &m_inspectedPage.mainFrame(); frame; frame = frame->tree().traverseNext()) {
Document* document = frame->document();
if (!document || !document->page())
continue;
for (auto& url : allResourcesURLsForFrame(frame)) {
Vector<Cookie> docCookiesList;
rawCookiesImplemented = document->page()->cookieJar().getRawCookies(*document, URL({ }, url), docCookiesList);
if (!rawCookiesImplemented) {
// FIXME: We need duplication checking for the String representation of cookies.
// Exceptions are thrown by cookie() in sandboxed frames. That won't happen here
// because "document" is the document of the main frame of the page.
stringCookiesList.append(document->cookie().releaseReturnValue());
} else {
for (auto& cookie : docCookiesList)
rawCookiesList.add(cookie);
}
}
}
// FIXME: Do not return empty string/empty array. Make returns optional instead. https://bugs.webkit.org/show_bug.cgi?id=80855
if (rawCookiesImplemented)
cookies = buildArrayForCookies(rawCookiesList);
else
cookies = JSON::ArrayOf<Inspector::Protocol::Page::Cookie>::create();
}
void InspectorPageAgent::deleteCookie(ErrorString&, const String& cookieName, const String& url)
{
URL parsedURL({ }, url);
for (Frame* frame = &m_inspectedPage.mainFrame(); frame; frame = frame->tree().traverseNext()) {
if (auto* document = frame->document()) {
if (auto* page = document->page())
page->cookieJar().deleteCookie(*document, parsedURL, cookieName);
}
}
}
void InspectorPageAgent::getResourceTree(ErrorString&, RefPtr<Inspector::Protocol::Page::FrameResourceTree>& object)
{
object = buildObjectForFrameTree(&m_inspectedPage.mainFrame());
}
void InspectorPageAgent::getResourceContent(ErrorString& errorString, const String& frameId, const String& url, String* content, bool* base64Encoded)
{
Frame* frame = assertFrame(errorString, frameId);
if (!frame)
return;
resourceContent(errorString, frame, URL({ }, url), content, base64Encoded);
}
void InspectorPageAgent::searchInResource(ErrorString& errorString, const String& frameId, const String& url, const String& query, const bool* optionalCaseSensitive, const bool* optionalIsRegex, const String* optionalRequestId, RefPtr<JSON::ArrayOf<Inspector::Protocol::GenericTypes::SearchMatch>>& results)
{
results = JSON::ArrayOf<Inspector::Protocol::GenericTypes::SearchMatch>::create();
bool isRegex = optionalIsRegex ? *optionalIsRegex : false;
bool caseSensitive = optionalCaseSensitive ? *optionalCaseSensitive : false;
if (optionalRequestId) {
if (InspectorNetworkAgent* networkAgent = m_instrumentingAgents.inspectorNetworkAgent()) {
networkAgent->searchInRequest(errorString, *optionalRequestId, query, caseSensitive, isRegex, results);
return;
}
}
Frame* frame = assertFrame(errorString, frameId);
if (!frame)
return;
DocumentLoader* loader = assertDocumentLoader(errorString, frame);
if (!loader)
return;
URL kurl({ }, url);
String content;
bool success = false;
if (equalIgnoringFragmentIdentifier(kurl, loader->url()))
success = mainResourceContent(frame, false, &content);
if (!success) {
if (auto* resource = cachedResource(frame, kurl)) {
if (auto textContent = InspectorNetworkAgent::textContentForCachedResource(*resource)) {
content = *textContent;
success = true;
}
}
}
if (!success)
return;
results = ContentSearchUtilities::searchInTextByLines(content, query, caseSensitive, isRegex);
}
static Ref<Inspector::Protocol::Page::SearchResult> buildObjectForSearchResult(const String& frameId, const String& url, int matchesCount)
{
return Inspector::Protocol::Page::SearchResult::create()
.setUrl(url)
.setFrameId(frameId)
.setMatchesCount(matchesCount)
.release();
}
void InspectorPageAgent::searchInResources(ErrorString&, const String& text, const bool* optionalCaseSensitive, const bool* optionalIsRegex, RefPtr<JSON::ArrayOf<Inspector::Protocol::Page::SearchResult>>& result)
{
result = JSON::ArrayOf<Inspector::Protocol::Page::SearchResult>::create();
bool isRegex = optionalIsRegex ? *optionalIsRegex : false;
bool caseSensitive = optionalCaseSensitive ? *optionalCaseSensitive : false;
JSC::Yarr::RegularExpression regex = ContentSearchUtilities::createSearchRegex(text, caseSensitive, isRegex);
for (Frame* frame = &m_inspectedPage.mainFrame(); frame; frame = frame->tree().traverseNext()) {
for (auto* cachedResource : cachedResourcesForFrame(frame)) {
if (auto textContent = InspectorNetworkAgent::textContentForCachedResource(*cachedResource)) {
int matchesCount = ContentSearchUtilities::countRegularExpressionMatches(regex, *textContent);
if (matchesCount)
result->addItem(buildObjectForSearchResult(frameId(frame), cachedResource->url(), matchesCount));
}
}
}
if (InspectorNetworkAgent* networkAgent = m_instrumentingAgents.inspectorNetworkAgent())
networkAgent->searchOtherRequests(regex, result);
}
void InspectorPageAgent::setShowRulers(ErrorString&, bool showRulers)
{
m_overlay->setShowRulers(showRulers);
}
void InspectorPageAgent::setShowPaintRects(ErrorString&, bool show)
{
m_showPaintRects = show;
m_client->setShowPaintRects(show);
if (m_client->overridesShowPaintRects())
return;
m_overlay->setShowPaintRects(show);
}
void InspectorPageAgent::domContentEventFired()
{
m_isFirstLayoutAfterOnLoad = true;
m_frontendDispatcher->domContentEventFired(timestamp());
}
void InspectorPageAgent::loadEventFired()
{
m_frontendDispatcher->loadEventFired(timestamp());
}
void InspectorPageAgent::frameNavigated(Frame& frame)
{
m_frontendDispatcher->frameNavigated(buildObjectForFrame(&frame));
}
void InspectorPageAgent::frameDetached(Frame& frame)
{
auto identifier = m_frameToIdentifier.take(&frame);
if (identifier.isNull())
return;
m_frontendDispatcher->frameDetached(identifier);
m_identifierToFrame.remove(identifier);
}
Frame* InspectorPageAgent::frameForId(const String& frameId)
{
return frameId.isEmpty() ? nullptr : m_identifierToFrame.get(frameId);
}
String InspectorPageAgent::frameId(Frame* frame)
{
if (!frame)
return emptyString();
return m_frameToIdentifier.ensure(frame, [this, frame] {
auto identifier = IdentifiersFactory::createIdentifier();
m_identifierToFrame.set(identifier, frame);
return identifier;
}).iterator->value;
}
String InspectorPageAgent::loaderId(DocumentLoader* loader)
{
if (!loader)
return emptyString();
return m_loaderToIdentifier.ensure(loader, [] {
return IdentifiersFactory::createIdentifier();
}).iterator->value;
}
Frame* InspectorPageAgent::assertFrame(ErrorString& errorString, const String& frameId)
{
Frame* frame = frameForId(frameId);
if (!frame)
errorString = "Missing frame for given frameId"_s;
return frame;
}
void InspectorPageAgent::loaderDetachedFromFrame(DocumentLoader& loader)
{
m_loaderToIdentifier.remove(&loader);
}
void InspectorPageAgent::frameStartedLoading(Frame& frame)
{
m_frontendDispatcher->frameStartedLoading(frameId(&frame));
}
void InspectorPageAgent::frameStoppedLoading(Frame& frame)
{
m_frontendDispatcher->frameStoppedLoading(frameId(&frame));
}
void InspectorPageAgent::frameScheduledNavigation(Frame& frame, Seconds delay)
{
m_frontendDispatcher->frameScheduledNavigation(frameId(&frame), delay.value());
}
void InspectorPageAgent::frameClearedScheduledNavigation(Frame& frame)
{
m_frontendDispatcher->frameClearedScheduledNavigation(frameId(&frame));
}
void InspectorPageAgent::defaultAppearanceDidChange(bool useDarkAppearance)
{
m_frontendDispatcher->defaultAppearanceDidChange(useDarkAppearance ? Inspector::Protocol::Page::Appearance::Dark : Inspector::Protocol::Page::Appearance::Light);
}
void InspectorPageAgent::didPaint(RenderObject& renderer, const LayoutRect& rect)
{
if (!m_showPaintRects)
return;
LayoutRect absoluteRect = LayoutRect(renderer.localToAbsoluteQuad(FloatRect(rect)).boundingBox());
FrameView* view = renderer.document().view();
LayoutRect rootRect = absoluteRect;
if (!view->frame().isMainFrame()) {
IntRect rootViewRect = view->contentsToRootView(snappedIntRect(absoluteRect));
rootRect = view->frame().mainFrame().view()->rootViewToContents(rootViewRect);
}
if (m_client->overridesShowPaintRects()) {
m_client->showPaintRect(rootRect);
return;
}
m_overlay->showPaintRect(rootRect);
}
void InspectorPageAgent::didLayout()
{
bool isFirstLayout = m_isFirstLayoutAfterOnLoad;
if (isFirstLayout)
m_isFirstLayoutAfterOnLoad = false;
m_overlay->update();
}
void InspectorPageAgent::didScroll()
{
m_overlay->update();
}
void InspectorPageAgent::didRecalculateStyle()
{
m_overlay->update();
}
Ref<Inspector::Protocol::Page::Frame> InspectorPageAgent::buildObjectForFrame(Frame* frame)
{
ASSERT_ARG(frame, frame);
auto frameObject = Inspector::Protocol::Page::Frame::create()
.setId(frameId(frame))
.setLoaderId(loaderId(frame->loader().documentLoader()))
.setUrl(frame->document()->url().string())
.setMimeType(frame->loader().documentLoader()->responseMIMEType())
.setSecurityOrigin(frame->document()->securityOrigin().toRawString())
.release();
if (frame->tree().parent())
frameObject->setParentId(frameId(frame->tree().parent()));
if (frame->ownerElement()) {
String name = frame->ownerElement()->getNameAttribute();
if (name.isEmpty())
name = frame->ownerElement()->attributeWithoutSynchronization(HTMLNames::idAttr);
frameObject->setName(name);
}
return frameObject;
}
Ref<Inspector::Protocol::Page::FrameResourceTree> InspectorPageAgent::buildObjectForFrameTree(Frame* frame)
{
ASSERT_ARG(frame, frame);
Ref<Inspector::Protocol::Page::Frame> frameObject = buildObjectForFrame(frame);
auto subresources = JSON::ArrayOf<Inspector::Protocol::Page::FrameResource>::create();
auto result = Inspector::Protocol::Page::FrameResourceTree::create()
.setFrame(WTFMove(frameObject))
.setResources(subresources.copyRef())
.release();
for (auto* cachedResource : cachedResourcesForFrame(frame)) {
auto resourceObject = Inspector::Protocol::Page::FrameResource::create()
.setUrl(cachedResource->url())
.setType(cachedResourceTypeJSON(*cachedResource))
.setMimeType(cachedResource->response().mimeType())
.release();
if (cachedResource->wasCanceled())
resourceObject->setCanceled(true);
else if (cachedResource->status() == CachedResource::LoadError || cachedResource->status() == CachedResource::DecodeError)
resourceObject->setFailed(true);
String sourceMappingURL = InspectorPageAgent::sourceMapURLForResource(cachedResource);
if (!sourceMappingURL.isEmpty())
resourceObject->setSourceMapURL(sourceMappingURL);
String targetId = cachedResource->resourceRequest().initiatorIdentifier();
if (!targetId.isEmpty())
resourceObject->setTargetId(targetId);
subresources->addItem(WTFMove(resourceObject));
}
RefPtr<JSON::ArrayOf<Inspector::Protocol::Page::FrameResourceTree>> childrenArray;
for (Frame* child = frame->tree().firstChild(); child; child = child->tree().nextSibling()) {
if (!childrenArray) {
childrenArray = JSON::ArrayOf<Inspector::Protocol::Page::FrameResourceTree>::create();
result->setChildFrames(childrenArray);
}
childrenArray->addItem(buildObjectForFrameTree(child));
}
return result;
}
void InspectorPageAgent::setEmulatedMedia(ErrorString&, const String& media)
{
if (media == m_emulatedMedia)
return;
m_emulatedMedia = media;
// FIXME: Schedule a rendering update instead of synchronously updating the layout.
m_inspectedPage.updateStyleAfterChangeInEnvironment();
auto document = makeRefPtr(m_inspectedPage.mainFrame().document());
if (!document)
return;
document->updateLayout();
document->evaluateMediaQueriesAndReportChanges();
}
void InspectorPageAgent::setForcedAppearance(ErrorString&, const String& appearance)
{
if (appearance == m_forcedAppearance)
return;
m_forcedAppearance = appearance;
if (appearance == "Light"_s)
m_inspectedPage.setUseDarkAppearanceOverride(false);
else if (appearance == "Dark"_s)
m_inspectedPage.setUseDarkAppearanceOverride(true);
else
m_inspectedPage.setUseDarkAppearanceOverride(WTF::nullopt);
}
void InspectorPageAgent::applyUserAgentOverride(String& userAgent)
{
if (!m_userAgentOverride.isEmpty())
userAgent = m_userAgentOverride;
}
void InspectorPageAgent::applyEmulatedMedia(String& media)
{
if (!m_emulatedMedia.isEmpty())
media = m_emulatedMedia;
}
void InspectorPageAgent::getCompositingBordersVisible(ErrorString&, bool* outParam)
{
*outParam = m_inspectedPage.settings().showDebugBorders() || m_inspectedPage.settings().showRepaintCounter();
}
void InspectorPageAgent::setCompositingBordersVisible(ErrorString&, bool visible)
{
m_inspectedPage.settings().setShowDebugBorders(visible);
m_inspectedPage.settings().setShowRepaintCounter(visible);
}
void InspectorPageAgent::snapshotNode(ErrorString& errorString, int nodeId, String* outDataURL)
{
InspectorDOMAgent* domAgent = m_instrumentingAgents.inspectorDOMAgent();
ASSERT(domAgent);
Node* node = domAgent->assertNode(errorString, nodeId);
if (!node)
return;
std::unique_ptr<ImageBuffer> snapshot = WebCore::snapshotNode(m_inspectedPage.mainFrame(), *node);
if (!snapshot) {
errorString = "Could not capture snapshot"_s;
return;
}
*outDataURL = snapshot->toDataURL("image/png"_s, WTF::nullopt, PreserveResolution::Yes);
}
void InspectorPageAgent::snapshotRect(ErrorString& errorString, int x, int y, int width, int height, const String& coordinateSystem, String* outDataURL)
{
SnapshotOptions options = SnapshotOptionsNone;
if (coordinateSystem == "Viewport")
options |= SnapshotOptionsInViewCoordinates;
IntRect rectangle(x, y, width, height);
std::unique_ptr<ImageBuffer> snapshot = snapshotFrameRect(m_inspectedPage.mainFrame(), rectangle, options);
if (!snapshot) {
errorString = "Could not capture snapshot"_s;
return;
}
*outDataURL = snapshot->toDataURL("image/png"_s, WTF::nullopt, PreserveResolution::Yes);
}
void InspectorPageAgent::archive(ErrorString& errorString, String* data)
{
#if ENABLE(WEB_ARCHIVE) && USE(CF)
auto archive = LegacyWebArchive::create(m_inspectedPage.mainFrame());
if (!archive) {
errorString = "Could not create web archive for main frame"_s;
return;
}
RetainPtr<CFDataRef> buffer = archive->rawDataRepresentation();
*data = base64Encode(CFDataGetBytePtr(buffer.get()), CFDataGetLength(buffer.get()));
#else
UNUSED_PARAM(data);
errorString = "Not supported"_s;
#endif
}
} // namespace WebCore