/* * Copyright (C) 2010, 2011, 2012 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 "InjectedBundle.h" #include "ActivateFonts.h" #include "InjectedBundlePage.h" #include "StringFunctions.h" #include #include #include #include #include #include #include #include #include namespace WTR { InjectedBundle& InjectedBundle::singleton() { static InjectedBundle& shared = *new InjectedBundle; return shared; } InjectedBundle::InjectedBundle() : m_bundle(0) , m_topLoadingFrame(0) , m_state(Idle) , m_dumpPixels(false) , m_useWaitToDumpWatchdogTimer(true) , m_useWorkQueue(false) , m_timeout(0) { } void InjectedBundle::didCreatePage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo) { static_cast(const_cast(clientInfo))->didCreatePage(page); } void InjectedBundle::willDestroyPage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo) { static_cast(const_cast(clientInfo))->willDestroyPage(page); } void InjectedBundle::didInitializePageGroup(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, const void* clientInfo) { static_cast(const_cast(clientInfo))->didInitializePageGroup(pageGroup); } void InjectedBundle::didReceiveMessage(WKBundleRef bundle, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo) { static_cast(const_cast(clientInfo))->didReceiveMessage(messageName, messageBody); } void InjectedBundle::didReceiveMessageToPage(WKBundleRef bundle, WKBundlePageRef page, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo) { static_cast(const_cast(clientInfo))->didReceiveMessageToPage(page, messageName, messageBody); } void InjectedBundle::initialize(WKBundleRef bundle, WKTypeRef initializationUserData) { m_bundle = bundle; WKBundleClientV1 client = { { 1, this }, didCreatePage, willDestroyPage, didInitializePageGroup, didReceiveMessage, didReceiveMessageToPage }; WKBundleSetClient(m_bundle, &client.base); platformInitialize(initializationUserData); activateFonts(); } void InjectedBundle::didCreatePage(WKBundlePageRef page) { m_pages.append(std::make_unique(page)); } void InjectedBundle::willDestroyPage(WKBundlePageRef page) { m_pages.removeFirstMatching([page] (const std::unique_ptr& current) { return current->page() == page; }); } void InjectedBundle::didInitializePageGroup(WKBundlePageGroupRef pageGroup) { m_pageGroup = pageGroup; } InjectedBundlePage* InjectedBundle::page() const { // It might be better to have the UI process send over a reference to the main // page instead of just assuming it's the first one. return m_pages[0].get(); } void InjectedBundle::resetLocalSettings() { setlocale(LC_ALL, ""); } void InjectedBundle::didReceiveMessage(WKStringRef messageName, WKTypeRef messageBody) { WKRetainPtr errorMessageName(AdoptWK, WKStringCreateWithUTF8CString("Error")); WKRetainPtr errorMessageBody(AdoptWK, WKStringCreateWithUTF8CString("Unknown")); WKBundlePostMessage(m_bundle, errorMessageName.get(), errorMessageBody.get()); } void InjectedBundle::didReceiveMessageToPage(WKBundlePageRef page, WKStringRef messageName, WKTypeRef messageBody) { if (WKStringIsEqualToUTF8CString(messageName, "BeginTest")) { ASSERT(messageBody); ASSERT(WKGetTypeID(messageBody) == WKDictionaryGetTypeID()); WKDictionaryRef messageBodyDictionary = static_cast(messageBody); WKRetainPtr dumpPixelsKey(AdoptWK, WKStringCreateWithUTF8CString("DumpPixels")); m_dumpPixels = WKBooleanGetValue(static_cast(WKDictionaryGetItemForKey(messageBodyDictionary, dumpPixelsKey.get()))); WKRetainPtr useWaitToDumpWatchdogTimerKey(AdoptWK, WKStringCreateWithUTF8CString("UseWaitToDumpWatchdogTimer")); m_useWaitToDumpWatchdogTimer = WKBooleanGetValue(static_cast(WKDictionaryGetItemForKey(messageBodyDictionary, useWaitToDumpWatchdogTimerKey.get()))); WKRetainPtr timeoutKey(AdoptWK, WKStringCreateWithUTF8CString("Timeout")); m_timeout = (int)WKUInt64GetValue(static_cast(WKDictionaryGetItemForKey(messageBodyDictionary, timeoutKey.get()))); WKRetainPtr ackMessageName(AdoptWK, WKStringCreateWithUTF8CString("Ack")); WKRetainPtr ackMessageBody(AdoptWK, WKStringCreateWithUTF8CString("BeginTest")); WKBundlePagePostMessage(page, ackMessageName.get(), ackMessageBody.get()); beginTesting(messageBodyDictionary); return; } if (WKStringIsEqualToUTF8CString(messageName, "Reset")) { ASSERT(messageBody); ASSERT(WKGetTypeID(messageBody) == WKDictionaryGetTypeID()); WKDictionaryRef messageBodyDictionary = static_cast(messageBody); WKRetainPtr shouldGCKey(AdoptWK, WKStringCreateWithUTF8CString("ShouldGC")); bool shouldGC = WKBooleanGetValue(static_cast(WKDictionaryGetItemForKey(messageBodyDictionary, shouldGCKey.get()))); if (shouldGC) WKBundleGarbageCollectJavaScriptObjects(m_bundle); WKRetainPtr allowedHostsKey(AdoptWK, WKStringCreateWithUTF8CString("AllowedHosts")); WKTypeRef allowedHostsValue = WKDictionaryGetItemForKey(messageBodyDictionary, allowedHostsKey.get()); if (allowedHostsValue && WKGetTypeID(allowedHostsValue) == WKArrayGetTypeID()) { WKArrayRef allowedHostsArray = static_cast(allowedHostsValue); for (size_t i = 0, size = WKArrayGetSize(allowedHostsArray); i < size; ++i) { WKTypeRef item = WKArrayGetItemAtIndex(allowedHostsArray, i); if (item && WKGetTypeID(item) == WKStringGetTypeID()) m_allowedHosts.append(toWTFString(static_cast(item))); } } m_state = Idle; m_dumpPixels = false; m_pixelResultIsPending = false; resetLocalSettings(); m_testRunner->removeAllWebNotificationPermissions(); InjectedBundle::page()->resetAfterTest(); return; } if (WKStringIsEqualToUTF8CString(messageName, "CallAddChromeInputFieldCallback")) { m_testRunner->callAddChromeInputFieldCallback(); return; } if (WKStringIsEqualToUTF8CString(messageName, "CallRemoveChromeInputFieldCallback")) { m_testRunner->callRemoveChromeInputFieldCallback(); return; } if (WKStringIsEqualToUTF8CString(messageName, "CallFocusWebViewCallback")) { m_testRunner->callFocusWebViewCallback(); return; } if (WKStringIsEqualToUTF8CString(messageName, "CallSetBackingScaleFactorCallback")) { m_testRunner->callSetBackingScaleFactorCallback(); return; } if (WKStringIsEqualToUTF8CString(messageName, "CallDidBeginSwipeCallback")) { m_testRunner->callDidBeginSwipeCallback(); return; } if (WKStringIsEqualToUTF8CString(messageName, "CallWillEndSwipeCallback")) { m_testRunner->callWillEndSwipeCallback(); return; } if (WKStringIsEqualToUTF8CString(messageName, "CallDidEndSwipeCallback")) { m_testRunner->callDidEndSwipeCallback(); return; } if (WKStringIsEqualToUTF8CString(messageName, "CallDidRemoveSwipeSnapshotCallback")) { m_testRunner->callDidRemoveSwipeSnapshotCallback(); return; } if (WKStringIsEqualToUTF8CString(messageName, "CallUISideScriptCallback")) { WKDictionaryRef messageBodyDictionary = static_cast(messageBody); WKRetainPtr resultKey(AdoptWK, WKStringCreateWithUTF8CString("Result")); WKRetainPtr callbackIDKey(AdoptWK, WKStringCreateWithUTF8CString("CallbackID")); unsigned callbackID = (unsigned)WKUInt64GetValue(static_cast(WKDictionaryGetItemForKey(messageBodyDictionary, callbackIDKey.get()))); WKStringRef resultString = static_cast(WKDictionaryGetItemForKey(messageBodyDictionary, resultKey.get())); auto resultJSString = toJS(resultString); m_testRunner->runUIScriptCallback(callbackID, resultJSString.get()); return; } if (WKStringIsEqualToUTF8CString(messageName, "WorkQueueProcessedCallback")) { if (!topLoadingFrame() && !m_testRunner->waitToDump()) InjectedBundle::page()->dump(); return; } WKRetainPtr errorMessageName(AdoptWK, WKStringCreateWithUTF8CString("Error")); WKRetainPtr errorMessageBody(AdoptWK, WKStringCreateWithUTF8CString("Unknown")); WKBundlePagePostMessage(page, errorMessageName.get(), errorMessageBody.get()); } bool InjectedBundle::booleanForKey(WKDictionaryRef dictionary, const char* key) { WKRetainPtr wkKey(AdoptWK, WKStringCreateWithUTF8CString(key)); WKTypeRef value = WKDictionaryGetItemForKey(dictionary, wkKey.get()); if (WKGetTypeID(value) != WKBooleanGetTypeID()) { outputText(makeString("Boolean value for key", key, " not found in dictionary\n")); return false; } return WKBooleanGetValue(static_cast(value)); } void InjectedBundle::beginTesting(WKDictionaryRef settings) { m_state = Testing; m_pixelResult.clear(); m_repaintRects.clear(); m_testRunner = TestRunner::create(); m_gcController = GCController::create(); m_eventSendingController = EventSendingController::create(); m_textInputController = TextInputController::create(); m_accessibilityController = AccessibilityController::create(); WKBundleSetAllowUniversalAccessFromFileURLs(m_bundle, m_pageGroup, true); WKBundleSetJavaScriptCanAccessClipboard(m_bundle, m_pageGroup, true); WKBundleSetPrivateBrowsingEnabled(m_bundle, m_pageGroup, false); WKBundleSetAuthorAndUserStylesEnabled(m_bundle, m_pageGroup, true); WKBundleSetFrameFlatteningEnabled(m_bundle, m_pageGroup, false); WKBundleSetMinimumLogicalFontSize(m_bundle, m_pageGroup, 9); WKBundleSetSpatialNavigationEnabled(m_bundle, m_pageGroup, false); WKBundleSetAllowFileAccessFromFileURLs(m_bundle, m_pageGroup, true); WKBundleSetPluginsEnabled(m_bundle, m_pageGroup, true); WKBundleSetPopupBlockingEnabled(m_bundle, m_pageGroup, false); #if PLATFORM(IOS) WKBundlePageSetUseTestingViewportConfiguration(page()->page(), !booleanForKey(settings, "UseFlexibleViewport")); #endif m_testRunner->setShouldDumpFrameLoadCallbacks(booleanForKey(settings, "DumpFrameLoadDelegates")); m_testRunner->setUserStyleSheetEnabled(false); m_testRunner->setXSSAuditorEnabled(false); m_testRunner->setCloseRemainingWindowsWhenComplete(false); m_testRunner->setAcceptsEditing(true); m_testRunner->setTabKeyCyclesThroughElements(true); m_testRunner->clearTestRunnerCallbacks(); if (m_timeout > 0) m_testRunner->setCustomTimeout(m_timeout); page()->prepare(); WKBundleClearAllDatabases(m_bundle); WKBundlePageClearApplicationCache(page()->page()); WKBundleResetOriginAccessWhitelists(m_bundle); // [WK2] REGRESSION(r128623): It made layout tests extremely slow // https://bugs.webkit.org/show_bug.cgi?id=96862 // WKBundleSetDatabaseQuota(m_bundle, 5 * 1024 * 1024); } void InjectedBundle::done() { m_state = Stopping; m_useWorkQueue = false; page()->stopLoading(); setTopLoadingFrame(0); m_testRunner->invalidateWaitToDumpWatchdogTimer(); m_accessibilityController->resetToConsistentState(); WKRetainPtr doneMessageName(AdoptWK, WKStringCreateWithUTF8CString("Done")); WKRetainPtr doneMessageBody(AdoptWK, WKMutableDictionaryCreate()); WKRetainPtr pixelResultIsPendingKey = adoptWK(WKStringCreateWithUTF8CString("PixelResultIsPending")); WKRetainPtr pixelResultIsPending(AdoptWK, WKBooleanCreate(m_pixelResultIsPending)); WKDictionarySetItem(doneMessageBody.get(), pixelResultIsPendingKey.get(), pixelResultIsPending.get()); if (!m_pixelResultIsPending) { WKRetainPtr pixelResultKey = adoptWK(WKStringCreateWithUTF8CString("PixelResult")); WKDictionarySetItem(doneMessageBody.get(), pixelResultKey.get(), m_pixelResult.get()); } WKRetainPtr repaintRectsKey = adoptWK(WKStringCreateWithUTF8CString("RepaintRects")); WKDictionarySetItem(doneMessageBody.get(), repaintRectsKey.get(), m_repaintRects.get()); WKRetainPtr audioResultKey = adoptWK(WKStringCreateWithUTF8CString("AudioResult")); WKDictionarySetItem(doneMessageBody.get(), audioResultKey.get(), m_audioResult.get()); WKBundlePagePostMessage(page()->page(), doneMessageName.get(), doneMessageBody.get()); closeOtherPages(); m_state = Idle; } void InjectedBundle::closeOtherPages() { Vector pagesToClose; size_t size = m_pages.size(); for (size_t i = 1; i < size; ++i) pagesToClose.append(m_pages[i]->page()); size = pagesToClose.size(); for (size_t i = 0; i < size; ++i) WKBundlePageClose(pagesToClose[i]); } void InjectedBundle::dumpBackForwardListsForAllPages(StringBuilder& stringBuilder) { size_t size = m_pages.size(); for (size_t i = 0; i < size; ++i) m_pages[i]->dumpBackForwardList(stringBuilder); } void InjectedBundle::outputText(const String& output) { if (m_state != Testing) return; if (output.isEmpty()) return; WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("TextOutput")); WKRetainPtr messageBody(AdoptWK, WKStringCreateWithUTF8CString(output.utf8().data())); WKBundlePagePostMessage(page()->page(), messageName.get(), messageBody.get()); } void InjectedBundle::postNewBeforeUnloadReturnValue(bool value) { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("BeforeUnloadReturnValue")); WKRetainPtr messageBody(AdoptWK, WKBooleanCreate(value)); WKBundlePagePostMessage(page()->page(), messageName.get(), messageBody.get()); } void InjectedBundle::postAddChromeInputField() { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("AddChromeInputField")); WKBundlePagePostMessage(page()->page(), messageName.get(), 0); } void InjectedBundle::postRemoveChromeInputField() { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("RemoveChromeInputField")); WKBundlePagePostMessage(page()->page(), messageName.get(), 0); } void InjectedBundle::postFocusWebView() { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("FocusWebView")); WKBundlePagePostMessage(page()->page(), messageName.get(), 0); } void InjectedBundle::postSetBackingScaleFactor(double backingScaleFactor) { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("SetBackingScaleFactor")); WKRetainPtr messageBody(AdoptWK, WKDoubleCreate(backingScaleFactor)); WKBundlePagePostMessage(page()->page(), messageName.get(), messageBody.get()); } void InjectedBundle::postSetWindowIsKey(bool isKey) { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("SetWindowIsKey")); WKRetainPtr messageBody(AdoptWK, WKBooleanCreate(isKey)); WKBundlePagePostSynchronousMessageForTesting(page()->page(), messageName.get(), messageBody.get(), 0); } void InjectedBundle::postSimulateWebNotificationClick(uint64_t notificationID) { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("SimulateWebNotificationClick")); WKRetainPtr messageBody(AdoptWK, WKUInt64Create(notificationID)); WKBundlePagePostMessage(page()->page(), messageName.get(), messageBody.get()); } void InjectedBundle::postSetAddsVisitedLinks(bool addsVisitedLinks) { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("SetAddsVisitedLinks")); WKRetainPtr messageBody(AdoptWK, WKBooleanCreate(addsVisitedLinks)); WKBundlePagePostMessage(page()->page(), messageName.get(), messageBody.get()); } void InjectedBundle::setGeolocationPermission(bool enabled) { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("SetGeolocationPermission")); WKRetainPtr messageBody(AdoptWK, WKBooleanCreate(enabled)); WKBundlePagePostMessage(page()->page(), messageName.get(), messageBody.get()); } void InjectedBundle::setMockGeolocationPosition(double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("SetMockGeolocationPosition")); WKRetainPtr messageBody(AdoptWK, WKMutableDictionaryCreate()); WKRetainPtr latitudeKeyWK(AdoptWK, WKStringCreateWithUTF8CString("latitude")); WKRetainPtr latitudeWK(AdoptWK, WKDoubleCreate(latitude)); WKDictionarySetItem(messageBody.get(), latitudeKeyWK.get(), latitudeWK.get()); WKRetainPtr longitudeKeyWK(AdoptWK, WKStringCreateWithUTF8CString("longitude")); WKRetainPtr longitudeWK(AdoptWK, WKDoubleCreate(longitude)); WKDictionarySetItem(messageBody.get(), longitudeKeyWK.get(), longitudeWK.get()); WKRetainPtr accuracyKeyWK(AdoptWK, WKStringCreateWithUTF8CString("accuracy")); WKRetainPtr accuracyWK(AdoptWK, WKDoubleCreate(accuracy)); WKDictionarySetItem(messageBody.get(), accuracyKeyWK.get(), accuracyWK.get()); WKRetainPtr providesAltitudeKeyWK(AdoptWK, WKStringCreateWithUTF8CString("providesAltitude")); WKRetainPtr providesAltitudeWK(AdoptWK, WKBooleanCreate(providesAltitude)); WKDictionarySetItem(messageBody.get(), providesAltitudeKeyWK.get(), providesAltitudeWK.get()); WKRetainPtr altitudeKeyWK(AdoptWK, WKStringCreateWithUTF8CString("altitude")); WKRetainPtr altitudeWK(AdoptWK, WKDoubleCreate(altitude)); WKDictionarySetItem(messageBody.get(), altitudeKeyWK.get(), altitudeWK.get()); WKRetainPtr providesAltitudeAccuracyKeyWK(AdoptWK, WKStringCreateWithUTF8CString("providesAltitudeAccuracy")); WKRetainPtr providesAltitudeAccuracyWK(AdoptWK, WKBooleanCreate(providesAltitudeAccuracy)); WKDictionarySetItem(messageBody.get(), providesAltitudeAccuracyKeyWK.get(), providesAltitudeAccuracyWK.get()); WKRetainPtr altitudeAccuracyKeyWK(AdoptWK, WKStringCreateWithUTF8CString("altitudeAccuracy")); WKRetainPtr altitudeAccuracyWK(AdoptWK, WKDoubleCreate(altitudeAccuracy)); WKDictionarySetItem(messageBody.get(), altitudeAccuracyKeyWK.get(), altitudeAccuracyWK.get()); WKRetainPtr providesHeadingKeyWK(AdoptWK, WKStringCreateWithUTF8CString("providesHeading")); WKRetainPtr providesHeadingWK(AdoptWK, WKBooleanCreate(providesHeading)); WKDictionarySetItem(messageBody.get(), providesHeadingKeyWK.get(), providesHeadingWK.get()); WKRetainPtr headingKeyWK(AdoptWK, WKStringCreateWithUTF8CString("heading")); WKRetainPtr headingWK(AdoptWK, WKDoubleCreate(heading)); WKDictionarySetItem(messageBody.get(), headingKeyWK.get(), headingWK.get()); WKRetainPtr providesSpeedKeyWK(AdoptWK, WKStringCreateWithUTF8CString("providesSpeed")); WKRetainPtr providesSpeedWK(AdoptWK, WKBooleanCreate(providesSpeed)); WKDictionarySetItem(messageBody.get(), providesSpeedKeyWK.get(), providesSpeedWK.get()); WKRetainPtr speedKeyWK(AdoptWK, WKStringCreateWithUTF8CString("speed")); WKRetainPtr speedWK(AdoptWK, WKDoubleCreate(speed)); WKDictionarySetItem(messageBody.get(), speedKeyWK.get(), speedWK.get()); WKBundlePagePostMessage(page()->page(), messageName.get(), messageBody.get()); } void InjectedBundle::setMockGeolocationPositionUnavailableError(WKStringRef errorMessage) { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("SetMockGeolocationPositionUnavailableError")); WKBundlePagePostMessage(page()->page(), messageName.get(), errorMessage); } bool InjectedBundle::isGeolocationProviderActive() const { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("IsGeolocationClientActive")); WKTypeRef resultToPass = 0; WKBundlePagePostSynchronousMessageForTesting(page()->page(), messageName.get(), 0, &resultToPass); WKRetainPtr isActive(AdoptWK, static_cast(resultToPass)); return WKBooleanGetValue(isActive.get()); } void InjectedBundle::setUserMediaPermission(bool enabled) { auto messageName = adoptWK(WKStringCreateWithUTF8CString("SetUserMediaPermission")); auto messageBody = adoptWK(WKBooleanCreate(enabled)); WKBundlePagePostMessage(page()->page(), messageName.get(), messageBody.get()); } void InjectedBundle::setUserMediaPermissionForOrigin(bool permission, WKStringRef url) { auto messageName = adoptWK(WKStringCreateWithUTF8CString("SetUserMediaPermissionForOrigin")); WKRetainPtr messageBody(AdoptWK, WKMutableDictionaryCreate()); WKRetainPtr permissionKeyWK(AdoptWK, WKStringCreateWithUTF8CString("permission")); WKRetainPtr permissionWK(AdoptWK, WKBooleanCreate(permission)); WKDictionarySetItem(messageBody.get(), permissionKeyWK.get(), permissionWK.get()); WKRetainPtr urlKeyWK(AdoptWK, WKStringCreateWithUTF8CString("url")); WKDictionarySetItem(messageBody.get(), urlKeyWK.get(), url); WKBundlePagePostMessage(page()->page(), messageName.get(), messageBody.get()); } void InjectedBundle::setCustomPolicyDelegate(bool enabled, bool permissive) { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("SetCustomPolicyDelegate")); WKRetainPtr messageBody(AdoptWK, WKMutableDictionaryCreate()); WKRetainPtr enabledKeyWK(AdoptWK, WKStringCreateWithUTF8CString("enabled")); WKRetainPtr enabledWK(AdoptWK, WKBooleanCreate(enabled)); WKDictionarySetItem(messageBody.get(), enabledKeyWK.get(), enabledWK.get()); WKRetainPtr permissiveKeyWK(AdoptWK, WKStringCreateWithUTF8CString("permissive")); WKRetainPtr permissiveWK(AdoptWK, WKBooleanCreate(permissive)); WKDictionarySetItem(messageBody.get(), permissiveKeyWK.get(), permissiveWK.get()); WKBundlePagePostMessage(page()->page(), messageName.get(), messageBody.get()); } void InjectedBundle::setHidden(bool hidden) { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("SetHidden")); WKRetainPtr messageBody(AdoptWK, WKMutableDictionaryCreate()); WKRetainPtr isInitialKeyWK(AdoptWK, WKStringCreateWithUTF8CString("hidden")); WKRetainPtr isInitialWK(AdoptWK, WKBooleanCreate(hidden)); WKDictionarySetItem(messageBody.get(), isInitialKeyWK.get(), isInitialWK.get()); WKBundlePagePostMessage(page()->page(), messageName.get(), messageBody.get()); } void InjectedBundle::setCacheModel(int model) { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("SetCacheModel")); WKRetainPtr messageBody(AdoptWK, WKUInt64Create(model)); WKBundlePagePostMessage(page()->page(), messageName.get(), messageBody.get()); } bool InjectedBundle::shouldProcessWorkQueue() const { if (!m_useWorkQueue) return false; WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("IsWorkQueueEmpty")); WKTypeRef resultToPass = 0; WKBundlePagePostSynchronousMessageForTesting(page()->page(), messageName.get(), 0, &resultToPass); WKRetainPtr isEmpty(AdoptWK, static_cast(resultToPass)); return !WKBooleanGetValue(isEmpty.get()); } void InjectedBundle::processWorkQueue() { WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("ProcessWorkQueue")); WKBundlePagePostMessage(page()->page(), messageName.get(), 0); } void InjectedBundle::queueBackNavigation(unsigned howFarBackward) { m_useWorkQueue = true; WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("QueueBackNavigation")); WKRetainPtr messageBody(AdoptWK, WKUInt64Create(howFarBackward)); WKBundlePagePostMessage(page()->page(), messageName.get(), messageBody.get()); } void InjectedBundle::queueForwardNavigation(unsigned howFarForward) { m_useWorkQueue = true; WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("QueueForwardNavigation")); WKRetainPtr messageBody(AdoptWK, WKUInt64Create(howFarForward)); WKBundlePagePostMessage(page()->page(), messageName.get(), messageBody.get()); } void InjectedBundle::queueLoad(WKStringRef url, WKStringRef target, bool shouldOpenExternalURLs) { m_useWorkQueue = true; WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("QueueLoad")); WKRetainPtr loadData(AdoptWK, WKMutableDictionaryCreate()); WKRetainPtr urlKey(AdoptWK, WKStringCreateWithUTF8CString("url")); WKDictionarySetItem(loadData.get(), urlKey.get(), url); WKRetainPtr targetKey(AdoptWK, WKStringCreateWithUTF8CString("target")); WKDictionarySetItem(loadData.get(), targetKey.get(), target); WKRetainPtr shouldOpenExternalURLsKey(AdoptWK, WKStringCreateWithUTF8CString("shouldOpenExternalURLs")); WKRetainPtr shouldOpenExternalURLsValue(AdoptWK, WKBooleanCreate(shouldOpenExternalURLs)); WKDictionarySetItem(loadData.get(), shouldOpenExternalURLsKey.get(), shouldOpenExternalURLsValue.get()); WKBundlePagePostMessage(page()->page(), messageName.get(), loadData.get()); } void InjectedBundle::queueLoadHTMLString(WKStringRef content, WKStringRef baseURL, WKStringRef unreachableURL) { m_useWorkQueue = true; WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("QueueLoadHTMLString")); WKRetainPtr loadData(AdoptWK, WKMutableDictionaryCreate()); WKRetainPtr contentKey(AdoptWK, WKStringCreateWithUTF8CString("content")); WKDictionarySetItem(loadData.get(), contentKey.get(), content); if (baseURL) { WKRetainPtr baseURLKey(AdoptWK, WKStringCreateWithUTF8CString("baseURL")); WKDictionarySetItem(loadData.get(), baseURLKey.get(), baseURL); } if (unreachableURL) { WKRetainPtr unreachableURLKey(AdoptWK, WKStringCreateWithUTF8CString("unreachableURL")); WKDictionarySetItem(loadData.get(), unreachableURLKey.get(), unreachableURL); } WKBundlePagePostMessage(page()->page(), messageName.get(), loadData.get()); } void InjectedBundle::queueReload() { m_useWorkQueue = true; WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("QueueReload")); WKBundlePagePostMessage(page()->page(), messageName.get(), 0); } void InjectedBundle::queueLoadingScript(WKStringRef script) { m_useWorkQueue = true; WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("QueueLoadingScript")); WKBundlePagePostMessage(page()->page(), messageName.get(), script); } void InjectedBundle::queueNonLoadingScript(WKStringRef script) { m_useWorkQueue = true; WKRetainPtr messageName(AdoptWK, WKStringCreateWithUTF8CString("QueueNonLoadingScript")); WKBundlePagePostMessage(page()->page(), messageName.get(), script); } bool InjectedBundle::isAllowedHost(WKStringRef host) { if (m_allowedHosts.isEmpty()) return false; return m_allowedHosts.contains(toWTFString(host)); } } // namespace WTR