2022-09-19 12:06:23 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
2023-08-05 19:42:26 +03:00
|
|
|
* Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
|
2022-09-19 12:06:23 +03:00
|
|
|
*
|
|
|
|
* 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-10-04 00:40:24 +03:00
|
|
|
#include <LibCore/ResourceImplementationFile.h>
|
2023-08-05 19:42:26 +03:00
|
|
|
#include <LibCore/System.h>
|
2023-03-21 18:35:30 +03:00
|
|
|
#include <LibFileSystem/FileSystem.h>
|
2022-10-05 16:23:41 +03:00
|
|
|
|
2022-12-04 21:43:54 +03:00
|
|
|
DeprecatedString s_serenity_resource_root;
|
2022-09-19 12:06:23 +03:00
|
|
|
|
2023-08-05 19:42:26 +03:00
|
|
|
ErrorOr<String> application_directory()
|
2022-09-19 12:06:23 +03:00
|
|
|
{
|
2023-08-05 19:42:26 +03:00
|
|
|
auto current_executable_path = TRY(Core::System::current_executable_path());
|
2023-11-06 21:49:18 +03:00
|
|
|
auto dirname = LexicalPath::dirname(current_executable_path);
|
2023-08-05 19:42:26 +03:00
|
|
|
return String::from_deprecated_string(dirname);
|
2023-03-14 00:30:31 +03:00
|
|
|
}
|
|
|
|
|
2022-10-05 16:23:41 +03:00
|
|
|
void platform_init()
|
|
|
|
{
|
|
|
|
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;
|
2023-08-05 19:42:26 +03:00
|
|
|
auto app_dir = application_directory().release_value_but_fixme_should_propagate_errors().to_deprecated_string();
|
2023-09-02 18:30:21 +03:00
|
|
|
#ifdef AK_OS_MACOS
|
2023-03-26 18:53:32 +03:00
|
|
|
return LexicalPath(app_dir).parent().append("Resources"sv).string();
|
2023-09-02 18:30:21 +03:00
|
|
|
#else
|
2022-10-05 16:23:41 +03:00
|
|
|
return LexicalPath(app_dir).parent().append("share"sv).string();
|
|
|
|
#endif
|
2023-09-02 18:30:21 +03:00
|
|
|
}();
|
2023-10-04 00:40:24 +03:00
|
|
|
|
|
|
|
Core::ResourceImplementation::install(make<Core::ResourceImplementationFile>(MUST(String::formatted("{}/res", s_serenity_resource_root))));
|
2022-10-05 16:23:41 +03:00
|
|
|
}
|
2023-08-01 20:56:10 +03:00
|
|
|
|
|
|
|
ErrorOr<Vector<String>> get_paths_for_helper_process(StringView process_name)
|
|
|
|
{
|
2023-08-05 19:42:26 +03:00
|
|
|
auto application_path = TRY(application_directory());
|
2023-08-01 20:56:10 +03:00
|
|
|
Vector<String> paths;
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|