blob: dc33d5037207fb6cac098b8933fe04823ca73934 [file] [log] [blame]
/*
* Copyright (C) 2016 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.
*/
#import "config.h"
#import "_WKRemoteWebInspectorViewController.h"
#if PLATFORM(MAC)
#import "RemoteWebInspectorProxy.h"
@interface _WKRemoteWebInspectorViewController ()
- (void)sendMessageToBackend:(NSString *)message;
- (void)closeFromFrontend;
@end
namespace WebKit {
class _WKRemoteWebInspectorProxyClient final : public RemoteWebInspectorProxyClient {
WTF_MAKE_FAST_ALLOCATED;
public:
_WKRemoteWebInspectorProxyClient(_WKRemoteWebInspectorViewController *controller)
: m_controller(controller)
{
}
virtual ~_WKRemoteWebInspectorProxyClient()
{
}
void sendMessageToBackend(const String& message) override
{
[m_controller sendMessageToBackend:message];
}
void closeFromFrontend() override
{
[m_controller closeFromFrontend];
}
private:
_WKRemoteWebInspectorViewController *m_controller;
};
} // namespace WebKit
@implementation _WKRemoteWebInspectorViewController {
RefPtr<WebKit::RemoteWebInspectorProxy> m_remoteInspectorProxy;
std::unique_ptr<WebKit::_WKRemoteWebInspectorProxyClient> m_remoteInspectorClient;
}
- (instancetype)init
{
if (!(self = [super init]))
return nil;
m_remoteInspectorProxy = WebKit::RemoteWebInspectorProxy::create();
m_remoteInspectorClient = makeUnique<WebKit::_WKRemoteWebInspectorProxyClient>(self);
m_remoteInspectorProxy->setClient(m_remoteInspectorClient.get());
return self;
}
- (NSWindow *)window
{
return m_remoteInspectorProxy->window();
}
- (WKWebView *)webView
{
return m_remoteInspectorProxy->webView();
}
static String debuggableTypeString(WKRemoteWebInspectorDebuggableType debuggableType)
{
switch (debuggableType) {
case WKRemoteWebInspectorDebuggableTypeJavaScript:
return "javascript"_s;
case WKRemoteWebInspectorDebuggableTypePage:
return "page"_s;
case WKRemoteWebInspectorDebuggableTypeServiceWorker:
return "service-worker"_s;
case WKRemoteWebInspectorDebuggableTypeWebPage:
return "web-page"_s;
ALLOW_DEPRECATED_DECLARATIONS_BEGIN
case WKRemoteWebInspectorDebuggableTypeWeb:
return "web-page"_s;
ALLOW_DEPRECATED_DECLARATIONS_END
}
}
- (void)loadForDebuggableType:(WKRemoteWebInspectorDebuggableType)debuggableType backendCommandsURL:(NSURL *)backendCommandsURL
{
m_remoteInspectorProxy->load(debuggableTypeString(debuggableType), backendCommandsURL.absoluteString);
}
- (void)close
{
m_remoteInspectorProxy->closeFromBackend();
}
- (void)show
{
m_remoteInspectorProxy->show();
}
- (void)sendMessageToFrontend:(NSString *)message
{
m_remoteInspectorProxy->sendMessageToFrontend(message);
}
- (void)sendMessageToBackend:(NSString *)message
{
if (_delegate && [_delegate respondsToSelector:@selector(inspectorViewController:sendMessageToBackend:)])
[_delegate inspectorViewController:self sendMessageToBackend:message];
}
- (void)closeFromFrontend
{
if (_delegate && [_delegate respondsToSelector:@selector(inspectorViewControllerInspectorDidClose:)])
[_delegate inspectorViewControllerInspectorDidClose:self];
}
@end
#endif // PLATFORM(MAC)