mirror of
https://github.com/wiiu-env/libwupsbackend.git
synced 2024-11-22 01:39:18 +01:00
231 lines
11 KiB
C++
231 lines
11 KiB
C++
#include "wups_backend/api.h"
|
|
#include "imports.h"
|
|
#include "logger.h"
|
|
#include "wups_backend/import_defines.h"
|
|
#include <coreinit/debug.h>
|
|
#include <coreinit/dynload.h>
|
|
|
|
static OSDynLoad_Module sModuleHandle = nullptr;
|
|
|
|
static PluginBackendApiErrorType (*sWUPSGetAPIVersion)(WUPSBackendAPIVersion *) = nullptr;
|
|
static PluginBackendApiErrorType (*sWUPSGetSectionInformationForPlugin)(
|
|
wups_backend_plugin_container_handle handle,
|
|
wups_backend_plugin_section_info *plugin_section_list,
|
|
uint32_t buffer_size,
|
|
uint32_t *out_count) = nullptr;
|
|
|
|
static PluginBackendApiErrorType (*sWUPSGetNumberOfLoadedPlugins)(uint32_t *out) = nullptr;
|
|
static PluginBackendApiErrorType (*sWUPSWillReloadPluginsOnNextLaunch)(bool *out) = nullptr;
|
|
static PluginBackendApiErrorType (*sWUPSGetSectionMemoryAddresses)(wups_backend_plugin_container_handle handle,
|
|
void **textAddress,
|
|
void **dataAddress) = nullptr;
|
|
|
|
static bool sLibInitDone = false;
|
|
|
|
static WUPSBackendAPIVersion sWUPSAPIVersion = WUPS_BACKEND_MODULE_API_VERSION_ERROR;
|
|
|
|
const char *WUPSBackend_GetStatusStr(PluginBackendApiErrorType status) {
|
|
switch (status) {
|
|
case PLUGIN_BACKEND_API_ERROR_NONE:
|
|
return "PLUGIN_BACKEND_API_ERROR_NONE";
|
|
case PLUGIN_BACKEND_API_ERROR_INVALID_SIZE:
|
|
return "PLUGIN_BACKEND_API_ERROR_INVALID_SIZE";
|
|
case PLUGIN_BACKEND_API_ERROR_INVALID_ARG:
|
|
return "PLUGIN_BACKEND_API_ERROR_INVALID_ARG";
|
|
case PLUGIN_BACKEND_API_ERROR_FAILED_ALLOC:
|
|
return "PLUGIN_BACKEND_API_ERROR_FAILED_ALLOC";
|
|
case PLUGIN_BACKEND_API_ERROR_FILE_NOT_FOUND:
|
|
return "PLUGIN_BACKEND_API_ERROR_FILE_NOT_FOUND";
|
|
case PLUGIN_BACKEND_API_INVALID_HANDLE:
|
|
return "PLUGIN_BACKEND_API_INVALID_HANDLE";
|
|
case PLUGIN_BACKEND_API_ERROR_MODULE_NOT_FOUND:
|
|
return "PLUGIN_BACKEND_API_ERROR_MODULE_NOT_FOUND";
|
|
case PLUGIN_BACKEND_API_ERROR_MODULE_MISSING_EXPORT:
|
|
return "PLUGIN_BACKEND_API_ERROR_MODULE_MISSING_EXPORT";
|
|
case PLUGIN_BACKEND_API_ERROR_UNSUPPORTED_VERSION:
|
|
return "PLUGIN_BACKEND_API_ERROR_UNSUPPORTED_VERSION";
|
|
case PLUGIN_BACKEND_API_ERROR_LIB_UNINITIALIZED:
|
|
return "PLUGIN_BACKEND_API_ERROR_LIB_UNINITIALIZED";
|
|
case PLUGIN_BACKEND_API_ERROR_UNSUPPORTED_COMMAND:
|
|
return "PLUGIN_BACKEND_API_ERROR_UNSUPPORTED_COMMAND";
|
|
}
|
|
return "PLUGIN_BACKEND_API_ERROR_UNKNOWN_ERROR";
|
|
}
|
|
|
|
PluginBackendApiErrorType WUPSBackend_InitLibrary() {
|
|
if (sLibInitDone) {
|
|
return PLUGIN_BACKEND_API_ERROR_NONE;
|
|
}
|
|
if (OSDynLoad_Acquire("homebrew_wupsbackend", &sModuleHandle) != OS_DYNLOAD_OK) {
|
|
DEBUG_FUNCTION_LINE_ERR("OSDynLoad_Acquire failed.");
|
|
return PLUGIN_BACKEND_API_ERROR_MODULE_NOT_FOUND;
|
|
}
|
|
|
|
if (OSDynLoad_FindExport(sModuleHandle, OS_DYNLOAD_EXPORT_FUNC, "WUPSGetAPIVersion", (void **) &sWUPSGetAPIVersion) != OS_DYNLOAD_OK) {
|
|
DEBUG_FUNCTION_LINE_ERR("FindExport WUPSGetAPIVersion failed.");
|
|
return PLUGIN_BACKEND_API_ERROR_MODULE_MISSING_EXPORT;
|
|
}
|
|
|
|
if (OSDynLoad_FindExport(sModuleHandle, OS_DYNLOAD_EXPORT_FUNC, "WUPSWillReloadPluginsOnNextLaunch", (void **) &sWUPSWillReloadPluginsOnNextLaunch) != OS_DYNLOAD_OK) {
|
|
DEBUG_FUNCTION_LINE_WARN("FindExport WUPSWillReloadPluginsOnNextLaunch failed.");
|
|
sWUPSWillReloadPluginsOnNextLaunch = nullptr;
|
|
}
|
|
|
|
if (OSDynLoad_FindExport(sModuleHandle, OS_DYNLOAD_EXPORT_FUNC, "WUPSGetNumberOfLoadedPlugins", (void **) &sWUPSGetNumberOfLoadedPlugins) != OS_DYNLOAD_OK) {
|
|
DEBUG_FUNCTION_LINE_WARN("FindExport WUPSGetNumberOfLoadedPlugins failed.");
|
|
sWUPSGetNumberOfLoadedPlugins = nullptr;
|
|
}
|
|
|
|
if (OSDynLoad_FindExport(sModuleHandle, OS_DYNLOAD_EXPORT_FUNC, "WUPSGetSectionMemoryAddresses", (void **) &sWUPSGetSectionMemoryAddresses) != OS_DYNLOAD_OK) {
|
|
DEBUG_FUNCTION_LINE_WARN("FindExport WUPSGetSectionMemoryAddresses failed.");
|
|
sWUPSGetSectionMemoryAddresses = nullptr;
|
|
}
|
|
|
|
auto res = WUPSBackend_GetApiVersion(&sWUPSAPIVersion);
|
|
if (res != PLUGIN_BACKEND_API_ERROR_NONE) {
|
|
sWUPSAPIVersion = WUPS_BACKEND_MODULE_API_VERSION_ERROR;
|
|
return PLUGIN_BACKEND_API_ERROR_UNSUPPORTED_VERSION;
|
|
}
|
|
|
|
sLibInitDone = true;
|
|
return PLUGIN_BACKEND_API_ERROR_NONE;
|
|
}
|
|
|
|
PluginBackendApiErrorType WUPSBackend_DeInitLibrary() {
|
|
if (sLibInitDone) {
|
|
sWUPSGetAPIVersion = nullptr;
|
|
sWUPSAPIVersion = WUPS_BACKEND_MODULE_API_VERSION_ERROR;
|
|
OSDynLoad_Release(sModuleHandle);
|
|
sModuleHandle = nullptr;
|
|
sLibInitDone = false;
|
|
}
|
|
return PLUGIN_BACKEND_API_ERROR_NONE;
|
|
}
|
|
|
|
PluginBackendApiErrorType WUPSBackend_GetApiVersion(WUPSBackendAPIVersion *outVersion) {
|
|
if (sWUPSGetAPIVersion == nullptr) {
|
|
if (OSDynLoad_Acquire("homebrew_wupsbackend", &sModuleHandle) != OS_DYNLOAD_OK) {
|
|
DEBUG_FUNCTION_LINE_WARN("OSDynLoad_Acquire failed.");
|
|
return PLUGIN_BACKEND_API_ERROR_MODULE_NOT_FOUND;
|
|
}
|
|
|
|
if (OSDynLoad_FindExport(sModuleHandle, OS_DYNLOAD_EXPORT_FUNC, "WUPSGetAPIVersion", (void **) &sWUPSGetAPIVersion) != OS_DYNLOAD_OK) {
|
|
DEBUG_FUNCTION_LINE_WARN("FindExport WUPSGetAPIVersion failed.");
|
|
return PLUGIN_BACKEND_API_ERROR_MODULE_MISSING_EXPORT;
|
|
}
|
|
}
|
|
|
|
return reinterpret_cast<decltype(&WUPSBackend_GetApiVersion)>(sWUPSGetAPIVersion)(outVersion);
|
|
}
|
|
|
|
PluginBackendApiErrorType WUPSBackend_GetSectionInformationForPlugin(wups_backend_plugin_container_handle handle, wups_backend_plugin_section_info *plugin_section_list, uint32_t buffer_size, uint32_t *out_count) {
|
|
if (sWUPSAPIVersion == WUPS_BACKEND_MODULE_API_VERSION_ERROR) {
|
|
return PLUGIN_BACKEND_API_ERROR_LIB_UNINITIALIZED;
|
|
}
|
|
if (sWUPSGetSectionInformationForPlugin == nullptr || sWUPSAPIVersion < 2) {
|
|
return PLUGIN_BACKEND_API_ERROR_UNSUPPORTED_COMMAND;
|
|
}
|
|
|
|
if (handle == 0) {
|
|
return PLUGIN_BACKEND_API_ERROR_INVALID_ARG;
|
|
}
|
|
|
|
return reinterpret_cast<decltype(&WUPSBackend_GetSectionInformationForPlugin)>(sWUPSGetSectionInformationForPlugin)(handle, plugin_section_list, buffer_size, out_count);
|
|
}
|
|
|
|
PluginBackendApiErrorType WUPSBackend_GetNumberOfLoadedPlugins(uint32_t *out_count) {
|
|
if (sWUPSAPIVersion == WUPS_BACKEND_MODULE_API_VERSION_ERROR) {
|
|
return PLUGIN_BACKEND_API_ERROR_LIB_UNINITIALIZED;
|
|
}
|
|
if (sWUPSGetNumberOfLoadedPlugins == nullptr || sWUPSAPIVersion < 2) {
|
|
return PLUGIN_BACKEND_API_ERROR_UNSUPPORTED_COMMAND;
|
|
}
|
|
|
|
if (out_count == nullptr) {
|
|
return PLUGIN_BACKEND_API_ERROR_INVALID_ARG;
|
|
}
|
|
|
|
return reinterpret_cast<decltype(&WUPSBackend_GetNumberOfLoadedPlugins)>(sWUPSGetNumberOfLoadedPlugins)(out_count);
|
|
}
|
|
|
|
PluginBackendApiErrorType WUPSBackend_WillReloadPluginsOnNextLaunch(bool *out) {
|
|
if (sWUPSAPIVersion == WUPS_BACKEND_MODULE_API_VERSION_ERROR) {
|
|
return PLUGIN_BACKEND_API_ERROR_LIB_UNINITIALIZED;
|
|
}
|
|
if (sWUPSWillReloadPluginsOnNextLaunch == nullptr || sWUPSAPIVersion < 2) {
|
|
return PLUGIN_BACKEND_API_ERROR_UNSUPPORTED_COMMAND;
|
|
}
|
|
|
|
if (out == nullptr) {
|
|
return PLUGIN_BACKEND_API_ERROR_INVALID_ARG;
|
|
}
|
|
|
|
return reinterpret_cast<decltype(&WUPSBackend_WillReloadPluginsOnNextLaunch)>(sWUPSWillReloadPluginsOnNextLaunch)(out);
|
|
}
|
|
|
|
PluginBackendApiErrorType WUPSBackend_GetSectionMemoryAddresses(wups_backend_plugin_container_handle handle, void **textAddress, void **dataAddress) {
|
|
if (sWUPSAPIVersion == WUPS_BACKEND_MODULE_API_VERSION_ERROR) {
|
|
return PLUGIN_BACKEND_API_ERROR_LIB_UNINITIALIZED;
|
|
}
|
|
if (sWUPSGetSectionMemoryAddresses == nullptr || sWUPSAPIVersion < 2) {
|
|
return PLUGIN_BACKEND_API_ERROR_UNSUPPORTED_COMMAND;
|
|
}
|
|
|
|
if (handle == 0 || textAddress == nullptr || dataAddress == nullptr) {
|
|
return PLUGIN_BACKEND_API_ERROR_INVALID_ARG;
|
|
}
|
|
|
|
return reinterpret_cast<decltype(&WUPSBackend_GetSectionMemoryAddresses)>(sWUPSGetSectionMemoryAddresses)(handle, textAddress, dataAddress);
|
|
}
|
|
|
|
#define PRINT_WARNING_FOR_LEGACY_FUNCTION_WHEN_NOT_INITIALIZED() \
|
|
do { \
|
|
if (sWUPSAPIVersion == WUPS_BACKEND_MODULE_API_VERSION_ERROR) { DEBUG_FUNCTION_LINE_WARN("libwupsbackend is not initialized, please make sure to call WUPSBackend_InitLibrary"); } \
|
|
} while (0)
|
|
|
|
|
|
PluginBackendApiErrorType WUPSBackend_LoadAndLinkByDataHandle(const wups_backend_plugin_data_handle *plugin_data_handle_list, uint32_t plugin_data_handle_list_size) {
|
|
PRINT_WARNING_FOR_LEGACY_FUNCTION_WHEN_NOT_INITIALIZED();
|
|
return WUPSLoadAndLinkByDataHandle(plugin_data_handle_list, plugin_data_handle_list_size);
|
|
}
|
|
|
|
PluginBackendApiErrorType WUPSBackend_DeletePluginData(const wups_backend_plugin_data_handle *plugin_data_handle_list, uint32_t plugin_data_handle_list_size) {
|
|
PRINT_WARNING_FOR_LEGACY_FUNCTION_WHEN_NOT_INITIALIZED();
|
|
return WUPSDeletePluginData(plugin_data_handle_list, plugin_data_handle_list_size);
|
|
}
|
|
|
|
PluginBackendApiErrorType WUPSBackend_LoadPluginAsDataByPath(wups_backend_plugin_data_handle *output, const char *path) {
|
|
PRINT_WARNING_FOR_LEGACY_FUNCTION_WHEN_NOT_INITIALIZED();
|
|
return WUPSLoadPluginAsDataByPath(output, path);
|
|
}
|
|
|
|
PluginBackendApiErrorType WUPSBackend_LoadPluginAsDataByBuffer(wups_backend_plugin_data_handle *output, char *buffer, size_t size) {
|
|
PRINT_WARNING_FOR_LEGACY_FUNCTION_WHEN_NOT_INITIALIZED();
|
|
return WUPSLoadPluginAsDataByBuffer(output, buffer, size);
|
|
}
|
|
|
|
PluginBackendApiErrorType WUPSBackend_GetPluginMetaInformationByPath(wups_backend_plugin_information *output, const char *path) {
|
|
PRINT_WARNING_FOR_LEGACY_FUNCTION_WHEN_NOT_INITIALIZED();
|
|
return WUPSGetPluginMetaInformationByPath(output, path);
|
|
}
|
|
|
|
PluginBackendApiErrorType WUPSBackend_GetPluginMetaInformationByBuffer(wups_backend_plugin_information *output, char *buffer, size_t size) {
|
|
PRINT_WARNING_FOR_LEGACY_FUNCTION_WHEN_NOT_INITIALIZED();
|
|
return WUPSGetPluginMetaInformationByBuffer(output, buffer, size);
|
|
}
|
|
|
|
PluginBackendApiErrorType WUPSBackend_GetPluginDataForContainerHandles(const wups_backend_plugin_container_handle *plugin_container_handle_list, const wups_backend_plugin_data_handle *plugin_data_list, uint32_t buffer_size) {
|
|
PRINT_WARNING_FOR_LEGACY_FUNCTION_WHEN_NOT_INITIALIZED();
|
|
return WUPSGetPluginDataForContainerHandles(plugin_container_handle_list, plugin_data_list, buffer_size);
|
|
}
|
|
|
|
PluginBackendApiErrorType WUPSBackend_GetMetaInformation(const wups_backend_plugin_container_handle *plugin_container_handle_list, wups_backend_plugin_information *plugin_information_list, uint32_t buffer_size) {
|
|
PRINT_WARNING_FOR_LEGACY_FUNCTION_WHEN_NOT_INITIALIZED();
|
|
return WUPSGetMetaInformation(plugin_container_handle_list, plugin_information_list, buffer_size);
|
|
}
|
|
|
|
PluginBackendApiErrorType WUPSBackend_GetLoadedPlugins(const wups_backend_plugin_container_handle *io_handles, uint32_t buffer_size, uint32_t *outSize, uint32_t *plugin_information_version) {
|
|
PRINT_WARNING_FOR_LEGACY_FUNCTION_WHEN_NOT_INITIALIZED();
|
|
return WUPSGetLoadedPlugins(io_handles, buffer_size, outSize, plugin_information_version);
|
|
}
|