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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
#define SATDUMP_DLL_EXPORT 1
#include "satdump_vars.h"
#if defined (__APPLE__)
#include <filesystem>
#include <mach-o/dyld.h>
#include <libgen.h>
#define LIBRARIES_SEARCH_PATH "/../Resources/"
#define RESOURCES_SEARCH_PATH "/../Resources/"
#elif defined (_WIN32)
#include <filesystem>
#include <Windows.h>
#include <shlwapi.h>
#define LIBRARIES_SEARCH_PATH "\\..\\lib\\satdump\\"
#define RESOURCES_SEARCH_PATH "\\..\\share\\satdump\\"
#endif
namespace satdump
{
#if defined (__APPLE__)
std::string get_search_path(const char *target)
{
uint32_t bufsize = PATH_MAX;
char exec_path[bufsize], ret_val[bufsize], search_dir[bufsize];
char *exec_dir;
_NSGetExecutablePath(exec_path, &bufsize);
exec_dir = dirname(exec_path);
strcpy(search_dir, exec_dir);
strcat(search_dir, target);
realpath(search_dir, ret_val);
return std::string(ret_val) + "/";
}
#elif defined (_WIN32)
std::string get_search_path(const char *target)
{
char exe_path[MAX_PATH], ret_val[MAX_PATH];
GetModuleFileNameA(NULL, exe_path, MAX_PATH);
PathRemoveFileSpecA(exe_path);
strcat_s(exe_path, MAX_PATH, target);
PathCanonicalizeA(ret_val, exe_path);
return std::string(ret_val);
}
#endif
#if defined (__APPLE__) || defined (_WIN32)
std::string init_res_path()
{
std::string search_dir = get_search_path(RESOURCES_SEARCH_PATH);
if (std::filesystem::exists(search_dir) && std::filesystem::is_directory(search_dir))
return search_dir;
else
#ifdef _WIN32
return get_search_path("\\");
#else
return std::string(RESOURCES_PATH);
#endif
}
std::string init_lib_path()
{
std::string search_dir = get_search_path(LIBRARIES_SEARCH_PATH);
if (std::filesystem::exists(search_dir) && std::filesystem::is_directory(search_dir))
return search_dir;
else
#ifdef _WIN32
return get_search_path("\\");
#else
return std::string(LIBRARIES_PATH);
#endif
}
#elif defined (__ANDROID__)
std::string init_res_path()
{
return "./";
}
std::string init_lib_path()
{
return "./";
}
#else
std::string init_res_path()
{
return std::string(RESOURCES_PATH);
}
std::string init_lib_path()
{
return std::string(LIBRARIES_PATH);
}
#endif
std::string RESPATH = init_res_path();
std::string LIBPATH = init_lib_path();
}
|