2022-09-19 12:06:23 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Utilities.h"
|
2022-10-05 16:23:41 +03:00
|
|
|
#include <AK/LexicalPath.h>
|
|
|
|
#include <AK/Platform.h>
|
2023-03-21 18:35:30 +03:00
|
|
|
#include <LibFileSystem/FileSystem.h>
|
2022-10-05 16:23:41 +03:00
|
|
|
#include <QCoreApplication>
|
|
|
|
|
2022-12-04 21:43:54 +03:00
|
|
|
DeprecatedString s_serenity_resource_root;
|
2022-09-19 12:06:23 +03:00
|
|
|
|
2022-12-04 21:43:54 +03:00
|
|
|
AK::DeprecatedString ak_deprecated_string_from_qstring(QString const& qstring)
|
2022-09-19 12:06:23 +03:00
|
|
|
{
|
2022-12-04 21:43:54 +03:00
|
|
|
return AK::DeprecatedString(qstring.toUtf8().data());
|
2022-09-19 12:06:23 +03:00
|
|
|
}
|
|
|
|
|
2023-02-01 20:47:56 +03:00
|
|
|
ErrorOr<String> ak_string_from_qstring(QString const& qstring)
|
|
|
|
{
|
|
|
|
return String::from_utf8(StringView(qstring.toUtf8().data(), qstring.size()));
|
|
|
|
}
|
|
|
|
|
2022-12-04 21:43:54 +03:00
|
|
|
QString qstring_from_ak_deprecated_string(AK::DeprecatedString const& ak_deprecated_string)
|
2022-09-19 12:06:23 +03:00
|
|
|
{
|
2022-12-04 21:43:54 +03:00
|
|
|
return QString::fromUtf8(ak_deprecated_string.characters(), ak_deprecated_string.length());
|
2022-09-19 12:06:23 +03:00
|
|
|
}
|
2022-10-05 16:23:41 +03:00
|
|
|
|
2023-03-14 00:30:31 +03:00
|
|
|
QString qstring_from_ak_string(String const& ak_string)
|
|
|
|
{
|
|
|
|
auto view = ak_string.bytes_as_string_view();
|
|
|
|
return QString::fromUtf8(view.characters_without_null_termination(), view.length());
|
|
|
|
}
|
|
|
|
|
2022-10-05 16:23:41 +03:00
|
|
|
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) {
|
2022-12-04 21:43:54 +03:00
|
|
|
return DeprecatedString::formatted("{}/Base", source_dir);
|
2022-10-05 16:23:41 +03:00
|
|
|
}
|
|
|
|
auto* home = getenv("XDG_CONFIG_HOME") ?: getenv("HOME");
|
|
|
|
VERIFY(home);
|
2022-12-04 21:43:54 +03:00
|
|
|
auto home_lagom = DeprecatedString::formatted("{}/.lagom", home);
|
2023-03-21 18:35:30 +03:00
|
|
|
if (FileSystem::is_directory(home_lagom))
|
2022-10-05 16:23:41 +03:00
|
|
|
return home_lagom;
|
2022-12-04 21:43:54 +03:00
|
|
|
auto app_dir = ak_deprecated_string_from_qstring(QCoreApplication::applicationDirPath());
|
2023-03-26 18:53:32 +03:00
|
|
|
# ifdef AK_OS_MACOS
|
|
|
|
return LexicalPath(app_dir).parent().append("Resources"sv).string();
|
|
|
|
# else
|
2022-10-05 16:23:41 +03:00
|
|
|
return LexicalPath(app_dir).parent().append("share"sv).string();
|
2023-03-26 18:53:32 +03:00
|
|
|
# endif
|
2022-10-05 16:23:41 +03:00
|
|
|
}();
|
|
|
|
#endif
|
|
|
|
}
|
2023-08-01 20:56:10 +03:00
|
|
|
|
|
|
|
ErrorOr<Vector<String>> get_paths_for_helper_process(StringView process_name)
|
|
|
|
{
|
|
|
|
auto application_path = TRY(ak_string_from_qstring(QCoreApplication::applicationDirPath()));
|
|
|
|
Vector<String> paths;
|
|
|
|
|
|
|
|
TRY(paths.try_append(TRY(String::formatted("./{}/{}", process_name, process_name))));
|
|
|
|
TRY(paths.try_append(TRY(String::formatted("{}/{}/{}", application_path, process_name, process_name))));
|
|
|
|
TRY(paths.try_append(TRY(String::formatted("{}/{}", application_path, process_name))));
|
|
|
|
TRY(paths.try_append(TRY(String::formatted("./{}", process_name))));
|
|
|
|
// NOTE: Add platform-specific paths here
|
|
|
|
return paths;
|
|
|
|
}
|