mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 10:18:15 +09:00

This is just to help make the message handlers a bit briefer. I had considered adding a TRY-like macro to auto-return when the lookup fails, but since statement expressions cannot return references, that would result in a copy of all e.g. object and array lookups.
49 lines
1.2 KiB
C++
49 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2025, Tim Flynn <trflynn89@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/JsonArray.h>
|
|
#include <AK/JsonObject.h>
|
|
#include <LibDevTools/Actors/ThreadConfigurationActor.h>
|
|
|
|
namespace DevTools {
|
|
|
|
NonnullRefPtr<ThreadConfigurationActor> ThreadConfigurationActor::create(DevToolsServer& devtools, String name)
|
|
{
|
|
return adopt_ref(*new ThreadConfigurationActor(devtools, move(name)));
|
|
}
|
|
|
|
ThreadConfigurationActor::ThreadConfigurationActor(DevToolsServer& devtools, String name)
|
|
: Actor(devtools, move(name))
|
|
{
|
|
}
|
|
|
|
ThreadConfigurationActor::~ThreadConfigurationActor() = default;
|
|
|
|
void ThreadConfigurationActor::handle_message(StringView type, JsonObject const& message)
|
|
{
|
|
JsonObject response;
|
|
|
|
if (type == "updateConfiguration"sv) {
|
|
auto configuration = get_required_parameter<JsonObject>(message, "configuration"sv);
|
|
if (!configuration.has_value())
|
|
return;
|
|
|
|
send_message(move(response));
|
|
return;
|
|
}
|
|
|
|
send_unrecognized_packet_type_error(type);
|
|
}
|
|
|
|
JsonObject ThreadConfigurationActor::serialize_configuration() const
|
|
{
|
|
JsonObject target;
|
|
target.set("actor"sv, name());
|
|
|
|
return target;
|
|
}
|
|
|
|
}
|