summaryrefslogtreecommitdiff
path: root/Ladybird/Utilities.cpp
blob: 12a534a1a6d14f415708668971e3d2dc72b262a1 (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
45
46
47
48
49
50
51
52
/*
 * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#define AK_DONT_REPLACE_STD

#include "Utilities.h"
#include <AK/LexicalPath.h>
#include <AK/Platform.h>
#include <LibCore/DeprecatedFile.h>
#include <QCoreApplication>

DeprecatedString s_serenity_resource_root;

AK::DeprecatedString ak_deprecated_string_from_qstring(QString const& qstring)
{
    return AK::DeprecatedString(qstring.toUtf8().data());
}

ErrorOr<String> ak_string_from_qstring(QString const& qstring)
{
    return String::from_utf8(StringView(qstring.toUtf8().data(), qstring.size()));
}

QString qstring_from_ak_deprecated_string(AK::DeprecatedString const& ak_deprecated_string)
{
    return QString::fromUtf8(ak_deprecated_string.characters(), ak_deprecated_string.length());
}

void platform_init()
{
#ifdef AK_OS_ANDROID
    extern void android_platform_init();
    android_platform_init();
#else
    s_serenity_resource_root = [] {
        auto const* source_dir = getenv("SERENITY_SOURCE_DIR");
        if (source_dir) {
            return DeprecatedString::formatted("{}/Base", source_dir);
        }
        auto* home = getenv("XDG_CONFIG_HOME") ?: getenv("HOME");
        VERIFY(home);
        auto home_lagom = DeprecatedString::formatted("{}/.lagom", home);
        if (Core::DeprecatedFile::is_directory(home_lagom))
            return home_lagom;
        auto app_dir = ak_deprecated_string_from_qstring(QCoreApplication::applicationDirPath());
        return LexicalPath(app_dir).parent().append("share"sv).string();
    }();
#endif
}