~mmach/netext73/webkit2gtk

« back to all changes in this revision

Viewing changes to Source/WebKit/UIProcess/Inspector/socket/RemoteInspectorClient.h

  • Committer: mmach
  • Date: 2023-06-16 17:21:37 UTC
  • Revision ID: netbit73@gmail.com-20230616172137-2rqx6yr96ga9g3kp
1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2019 Sony Interactive Entertainment Inc.
 
3
 *
 
4
 * Redistribution and use in source and binary forms, with or without
 
5
 * modification, are permitted provided that the following conditions
 
6
 * are met:
 
7
 * 1. Redistributions of source code must retain the above copyright
 
8
 *    notice, this list of conditions and the following disclaimer.
 
9
 * 2. Redistributions in binary form must reproduce the above copyright
 
10
 *    notice, this list of conditions and the following disclaimer in the
 
11
 *    documentation and/or other materials provided with the distribution.
 
12
 *
 
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
 
14
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 
15
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
16
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
 
17
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
18
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
19
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
20
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
21
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
22
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 
23
 * THE POSSIBILITY OF SUCH DAMAGE.
 
24
 */
 
25
 
 
26
#pragma once
 
27
 
 
28
#if ENABLE(REMOTE_INSPECTOR)
 
29
 
 
30
#include <JavaScriptCore/RemoteControllableTarget.h>
 
31
#include <JavaScriptCore/RemoteInspectorConnectionClient.h>
 
32
#include <WebCore/InspectorDebuggableType.h>
 
33
#include <wtf/HashMap.h>
 
34
#include <wtf/URL.h>
 
35
#include <wtf/Vector.h>
 
36
#include <wtf/text/WTFString.h>
 
37
 
 
38
namespace WebKit {
 
39
 
 
40
class RemoteInspectorClient;
 
41
class RemoteInspectorProxy;
 
42
 
 
43
class RemoteInspectorObserver {
 
44
public:
 
45
    virtual ~RemoteInspectorObserver() { }
 
46
    virtual void targetListChanged(RemoteInspectorClient&) = 0;
 
47
    virtual void connectionClosed(RemoteInspectorClient&) = 0;
 
48
};
 
49
 
 
50
using ConnectionID = Inspector::ConnectionID;
 
51
using TargetID = Inspector::TargetID;
 
52
 
 
53
class RemoteInspectorClient final : public Inspector::RemoteInspectorConnectionClient {
 
54
    WTF_MAKE_FAST_ALLOCATED();
 
55
public:
 
56
    RemoteInspectorClient(URL, RemoteInspectorObserver&);
 
57
    ~RemoteInspectorClient();
 
58
 
 
59
    // FIXME: We should update the messaging protocol to use DebuggableType instead of String for the target type.
 
60
    // https://bugs.webkit.org/show_bug.cgi?id=206047
 
61
    struct Target {
 
62
        TargetID id;
 
63
        String type;
 
64
        String name;
 
65
        String url;
 
66
    };
 
67
 
 
68
    const HashMap<ConnectionID, Vector<Target>>& targets() const { return m_targets; }
 
69
    const String& backendCommandsURL() const { return m_backendCommandsURL; }
 
70
 
 
71
    void inspect(ConnectionID, TargetID, Inspector::DebuggableType);
 
72
    void sendMessageToBackend(ConnectionID, TargetID, const String&);
 
73
    void closeFromFrontend(ConnectionID, TargetID);
 
74
 
 
75
private:
 
76
    friend class NeverDestroyed<RemoteInspectorClient>;
 
77
 
 
78
    void startInitialCommunication();
 
79
    void connectionClosed();
 
80
 
 
81
    void setTargetList(const Event&);
 
82
    void sendMessageToFrontend(const Event&);
 
83
    void setBackendCommands(const Event&);
 
84
 
 
85
    void didClose(ConnectionID) final;
 
86
    HashMap<String, CallHandler>& dispatchMap() final;
 
87
 
 
88
    void sendWebInspectorEvent(const String&);
 
89
 
 
90
    String m_backendCommandsURL;
 
91
    RemoteInspectorObserver& m_observer;
 
92
    Optional<ConnectionID> m_connectionID;
 
93
    HashMap<ConnectionID, Vector<Target>> m_targets;
 
94
    HashMap<std::pair<ConnectionID, TargetID>, std::unique_ptr<RemoteInspectorProxy>> m_inspectorProxyMap;
 
95
};
 
96
 
 
97
} // namespace WebKit
 
98
 
 
99
#endif // ENABLE(REMOTE_INSPECTOR)