mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 05:20:30 +00:00
fe026fef47
The previous check of looking at `/proc/PID` was not working, it would always fail even if the process was indeed inspectable. Commit 70117781 introduced a new IPC for asking InspectorServer whether or not a given `pid` is actually inspectable. If a process is not inspectable, the `GUI::ProcessChooser` is redisplayed if it was previously displayed, otherwise it exits.
52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "InspectorServerClient.h"
|
|
#include <AK/NonnullOwnPtrVector.h>
|
|
#include <LibCore/LocalSocket.h>
|
|
|
|
namespace Inspector {
|
|
|
|
class RemoteObjectGraphModel;
|
|
class RemoteObject;
|
|
|
|
class RemoteProcess {
|
|
public:
|
|
static RemoteProcess& the();
|
|
|
|
explicit RemoteProcess(pid_t);
|
|
void update();
|
|
|
|
pid_t pid() const { return m_pid; }
|
|
const String& process_name() const { return m_process_name; }
|
|
|
|
RemoteObjectGraphModel& object_graph_model() { return *m_object_graph_model; }
|
|
const NonnullOwnPtrVector<RemoteObject>& roots() const { return m_roots; }
|
|
|
|
void set_inspected_object(FlatPtr);
|
|
|
|
void set_property(FlatPtr object, const StringView& name, const JsonValue& value);
|
|
|
|
bool is_inspectable();
|
|
|
|
Function<void()> on_update;
|
|
|
|
private:
|
|
void handle_get_all_objects_response(const JsonObject&);
|
|
void handle_identify_response(const JsonObject&);
|
|
|
|
void send_request(const JsonObject&);
|
|
|
|
pid_t m_pid { -1 };
|
|
String m_process_name;
|
|
NonnullRefPtr<RemoteObjectGraphModel> m_object_graph_model;
|
|
NonnullOwnPtrVector<RemoteObject> m_roots;
|
|
RefPtr<InspectorServerClient> m_client;
|
|
};
|
|
|
|
}
|