52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#include "ResourceLoaderAppDirLinux.hpp"
|
|
#include "Base/Utils.hpp"
|
|
#include <unistd.h>
|
|
#include <climits>
|
|
#include <iostream>
|
|
|
|
namespace OpenVulkano
|
|
{
|
|
namespace
|
|
{
|
|
void* HANDLE = ResourceLoader::RegisterResourceLoader(std::make_unique<ResourceLoaderAppDirLinux>());
|
|
|
|
std::string FindAppDir()
|
|
{
|
|
char buffer[PATH_MAX];
|
|
ssize_t size;
|
|
if ((size = readlink("/proc/self/exe", buffer, sizeof(buffer))) != -1)
|
|
{
|
|
std::string_view appDirPath(buffer, size);
|
|
appDirPath = appDirPath.substr(0, appDirPath.find_last_of('/') + 1);
|
|
return std::string(appDirPath);
|
|
}
|
|
else
|
|
{
|
|
std::cerr << "Failed to find real path to application!";
|
|
}
|
|
return "";
|
|
}
|
|
|
|
const std::string& GetAppDir()
|
|
{
|
|
static const std::string appDirPath = FindAppDir();
|
|
return appDirPath;
|
|
}
|
|
}
|
|
|
|
std::string ResourceLoaderAppDirLinux::GetResourcePath(const std::string& resourceName)
|
|
{
|
|
return GetAppDir() + resourceName;
|
|
}
|
|
|
|
Array<char> ResourceLoaderAppDirLinux::GetResource(const std::string& resourceName)
|
|
{
|
|
return Utils::ReadFile(GetAppDir() + resourceName, true);
|
|
}
|
|
} |