mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
The WINPR_JSON_FOUND macro is never defined currently. Consequently, the SDL prefs always use the fallback implementation. Let's use the WITH_WINPR_JSON instead to really parse the sdl-freerdp.json file.
146 lines
3.6 KiB
C++
146 lines
3.6 KiB
C++
/**
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
* SDL Prefs
|
|
*
|
|
* Copyright 2022 Armin Novak <armin.novak@thincast.com>
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include <fstream>
|
|
#if __has_include(<filesystem>)
|
|
#include <filesystem>
|
|
namespace fs = std::filesystem;
|
|
#elif __has_include(<experimental/filesystem>)
|
|
#include <experimental/filesystem>
|
|
namespace fs = std::experimental::filesystem;
|
|
#else
|
|
#error Could not find system header "<filesystem>" or "<experimental/filesystem>"
|
|
#endif
|
|
|
|
#include "sdl_prefs.hpp"
|
|
|
|
#include <winpr/path.h>
|
|
#include <winpr/config.h>
|
|
#include <freerdp/version.h>
|
|
#include <winpr/json.h>
|
|
|
|
#if defined(WITH_WINPR_JSON)
|
|
using WINPR_JSONPtr = std::unique_ptr<WINPR_JSON, decltype(&WINPR_JSON_Delete)>;
|
|
|
|
static WINPR_JSONPtr get()
|
|
{
|
|
auto config = sdl_get_pref_file();
|
|
|
|
std::ifstream ifs(config);
|
|
std::string content((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));
|
|
return { WINPR_JSON_ParseWithLength(content.c_str(), content.size()), WINPR_JSON_Delete };
|
|
}
|
|
|
|
static WINPR_JSON* get_item(const std::string& key)
|
|
{
|
|
static WINPR_JSONPtr config{ nullptr, WINPR_JSON_Delete };
|
|
if (!config)
|
|
config = get();
|
|
if (!config)
|
|
return nullptr;
|
|
return WINPR_JSON_GetObjectItem(config.get(), key.c_str());
|
|
}
|
|
|
|
static std::string item_to_str(WINPR_JSON* item, const std::string& fallback = "")
|
|
{
|
|
if (!item || !WINPR_JSON_IsString(item))
|
|
return fallback;
|
|
auto str = WINPR_JSON_GetStringValue(item);
|
|
if (!str)
|
|
return {};
|
|
return str;
|
|
}
|
|
#endif
|
|
|
|
std::string sdl_get_pref_string(const std::string& key, const std::string& fallback)
|
|
{
|
|
#if defined(WITH_WINPR_JSON)
|
|
auto item = get_item(key);
|
|
return item_to_str(item, fallback);
|
|
#else
|
|
return fallback;
|
|
#endif
|
|
}
|
|
|
|
bool sdl_get_pref_bool(const std::string& key, bool fallback)
|
|
{
|
|
#if defined(WITH_WINPR_JSON)
|
|
auto item = get_item(key);
|
|
if (!item || !WINPR_JSON_IsBool(item))
|
|
return fallback;
|
|
return WINPR_JSON_IsTrue(item);
|
|
#else
|
|
return fallback;
|
|
#endif
|
|
}
|
|
|
|
int64_t sdl_get_pref_int(const std::string& key, int64_t fallback)
|
|
{
|
|
#if defined(WITH_WINPR_JSON)
|
|
auto item = get_item(key);
|
|
if (!item || !WINPR_JSON_IsNumber(item))
|
|
return fallback;
|
|
auto val = WINPR_JSON_GetNumberValue(item);
|
|
return static_cast<int64_t>(val);
|
|
#else
|
|
return fallback;
|
|
#endif
|
|
}
|
|
|
|
std::vector<std::string> sdl_get_pref_array(const std::string& key,
|
|
const std::vector<std::string>& fallback)
|
|
{
|
|
#if defined(WITH_WINPR_JSON)
|
|
auto item = get_item(key);
|
|
if (!item || !WINPR_JSON_IsArray(item))
|
|
return fallback;
|
|
|
|
std::vector<std::string> values;
|
|
for (int x = 0; x < WINPR_JSON_GetArraySize(item); x++)
|
|
{
|
|
auto cur = WINPR_JSON_GetArrayItem(item, x);
|
|
values.push_back(item_to_str(cur));
|
|
}
|
|
|
|
return values;
|
|
#else
|
|
return fallback;
|
|
#endif
|
|
}
|
|
|
|
std::string sdl_get_pref_dir()
|
|
{
|
|
using CStringPtr = std::unique_ptr<char, decltype(&free)>;
|
|
CStringPtr path(GetKnownPath(KNOWN_PATH_XDG_CONFIG_HOME), free);
|
|
if (!path)
|
|
return {};
|
|
|
|
fs::path config{ path.get() };
|
|
config /= FREERDP_VENDOR;
|
|
config /= FREERDP_PRODUCT;
|
|
return config.string();
|
|
}
|
|
|
|
std::string sdl_get_pref_file()
|
|
{
|
|
fs::path config{ sdl_get_pref_dir() };
|
|
config /= "sdl-freerdp.json";
|
|
return config.string();
|
|
}
|