mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:28:12 +00:00

I've attempted to handle the errors gracefully where it was clear how to do so, and simple, but a lot of this was just adding `release_value_but_fixme_should_propagate_errors()` in places.
27 lines
730 B
C++
27 lines
730 B
C++
/*
|
|
* Copyright (c) 2020, Nicholas Hollett <niax@niax.co.uk>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "ClientConnection.h"
|
|
#include "Launcher.h"
|
|
#include <LibCore/ConfigFile.h>
|
|
#include <LibCore/EventLoop.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibIPC/MultiServer.h>
|
|
#include <LibMain/Main.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments)
|
|
{
|
|
Core::EventLoop event_loop;
|
|
auto server = TRY(IPC::MultiServer<LaunchServer::ClientConnection>::try_create());
|
|
|
|
auto launcher = LaunchServer::Launcher();
|
|
launcher.load_handlers();
|
|
launcher.load_config(TRY(Core::ConfigFile::open_for_app("LaunchServer")));
|
|
|
|
TRY(Core::System::pledge("stdio accept rpath proc exec"));
|
|
|
|
return event_loop.exec();
|
|
}
|