mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-31 21:30:58 +00:00
The "from" field is required in every response. It is the name of the actor sending the message. This patch fills in the "from" field in the Actor base class so that subclasses don't have to.
51 lines
1.2 KiB
C++
51 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 = message.get_object("configuration"sv);
|
|
if (!configuration.has_value()) {
|
|
send_missing_parameter_error("configuration"sv);
|
|
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;
|
|
}
|
|
|
|
}
|