summaryrefslogtreecommitdiff
path: root/Userland/DevTools/HackStudio/LanguageServers/Cpp/main.cpp
blob: 3fd711bbc2a7b33869186bfdf48773e89cf0d59b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * Copyright (c) 2021, Itamar S. <itamar8910@gmail.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include "ClientConnection.h"
#include "Tests.h"
#include <LibCore/ArgsParser.h>
#include <LibCore/EventLoop.h>
#include <LibCore/LocalServer.h>
#include <LibCore/System.h>
#include <LibIPC/SingleServer.h>
#include <LibMain/Main.h>

static ErrorOr<int> mode_server();

ErrorOr<int> serenity_main(Main::Arguments arguments)
{
    bool tests = false;

    Core::ArgsParser parser;
    parser.add_option(tests, "Run tests", "tests", 't');
    parser.parse(arguments);

    if (tests)
        return run_tests();

    return mode_server();
}

ErrorOr<int> mode_server()
{
    Core::EventLoop event_loop;
    TRY(Core::System::pledge("stdio unix recvfd rpath"));

    auto client = TRY(IPC::take_over_accepted_client_from_system_server<LanguageServers::Cpp::ClientConnection>());

    TRY(Core::System::pledge("stdio recvfd rpath"));
    TRY(Core::System::unveil("/usr/include", "r"));

    // unveil will be sealed later, when we know the project's root path.
    return event_loop.exec();
}