2022-09-19 06:06:23 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
2023-08-05 13:42:26 -03:00
|
|
|
* Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
|
2022-09-19 06:06:23 -03:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "Utilities.h"
|
2022-10-05 10:23:41 -03:00
|
|
|
#include <AK/LexicalPath.h>
|
|
|
|
|
#include <AK/Platform.h>
|
2023-10-03 18:40:24 -03:00
|
|
|
#include <LibCore/ResourceImplementationFile.h>
|
2023-08-05 13:42:26 -03:00
|
|
|
#include <LibCore/System.h>
|
2023-03-21 12:35:30 -03:00
|
|
|
#include <LibFileSystem/FileSystem.h>
|
2022-10-05 10:23:41 -03:00
|
|
|
|
2023-12-16 11:19:34 -03:00
|
|
|
ByteString s_serenity_resource_root;
|
2022-09-19 06:06:23 -03:00
|
|
|
|
2023-08-05 13:42:26 -03:00
|
|
|
ErrorOr<String> application_directory()
|
2022-09-19 06:06:23 -03:00
|
|
|
{
|
2023-08-05 13:42:26 -03:00
|
|
|
auto current_executable_path = TRY(Core::System::current_executable_path());
|
2023-11-06 15:49:18 -03:00
|
|
|
auto dirname = LexicalPath::dirname(current_executable_path);
|
2023-12-16 11:19:34 -03:00
|
|
|
return String::from_byte_string(dirname);
|
2023-03-13 18:30:31 -03:00
|
|
|
}
|
|
|
|
|
|
2022-10-05 10:23:41 -03:00
|
|
|
void platform_init()
|
|
|
|
|
{
|
|
|
|
|
s_serenity_resource_root = [] {
|
|
|
|
|
auto const* source_dir = getenv("SERENITY_SOURCE_DIR");
|
|
|
|
|
if (source_dir) {
|
2023-12-16 11:19:34 -03:00
|
|
|
return ByteString::formatted("{}/Base", source_dir);
|
2022-10-05 10:23:41 -03:00
|
|
|
}
|
|
|
|
|
auto* home = getenv("XDG_CONFIG_HOME") ?: getenv("HOME");
|
|
|
|
|
VERIFY(home);
|
2023-12-16 11:19:34 -03:00
|
|
|
auto home_lagom = ByteString::formatted("{}/.lagom", home);
|
2023-03-21 12:35:30 -03:00
|
|
|
if (FileSystem::is_directory(home_lagom))
|
2022-10-05 10:23:41 -03:00
|
|
|
return home_lagom;
|
2023-12-16 11:19:34 -03:00
|
|
|
auto app_dir = application_directory().release_value_but_fixme_should_propagate_errors().to_byte_string();
|
2023-09-02 12:30:21 -03:00
|
|
|
#ifdef AK_OS_MACOS
|
2023-03-26 12:53:32 -03:00
|
|
|
return LexicalPath(app_dir).parent().append("Resources"sv).string();
|
2023-09-02 12:30:21 -03:00
|
|
|
#else
|
2022-10-05 10:23:41 -03:00
|
|
|
return LexicalPath(app_dir).parent().append("share"sv).string();
|
|
|
|
|
#endif
|
2023-09-02 12:30:21 -03:00
|
|
|
}();
|
2023-10-03 18:40:24 -03:00
|
|
|
|
|
|
|
|
Core::ResourceImplementation::install(make<Core::ResourceImplementationFile>(MUST(String::formatted("{}/res", s_serenity_resource_root))));
|
2022-10-05 10:23:41 -03:00
|
|
|
}
|
2023-08-01 14:56:10 -03:00
|
|
|
|
|
|
|
|
ErrorOr<Vector<String>> get_paths_for_helper_process(StringView process_name)
|
|
|
|
|
{
|
2023-08-05 13:42:26 -03:00
|
|
|
auto application_path = TRY(application_directory());
|
2023-08-01 14: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;
|
|
|
|
|
}
|