Milestone 5: deliver embedded RDP sessions and lifecycle hardening
This commit is contained in:
160
third_party/FreeRDP/client/SDL/SDL3/sdl_clip.hpp
vendored
Normal file
160
third_party/FreeRDP/client/SDL/SDL3/sdl_clip.hpp
vendored
Normal file
@@ -0,0 +1,160 @@
|
||||
/**
|
||||
* FreeRDP: A Remote Desktop Protocol Implementation
|
||||
* SDL Client keyboard helper
|
||||
*
|
||||
* Copyright 2024 Armin Novak <armin.novak@thincast.com>
|
||||
* Copyright 2024 Thincast Technologies GmbH
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
#include <atomic>
|
||||
#include <queue>
|
||||
#include <map>
|
||||
|
||||
#include <winpr/wtypes.h>
|
||||
#include <freerdp/freerdp.h>
|
||||
#include <freerdp/client/client_cliprdr_file.h>
|
||||
#include <SDL3/SDL.h>
|
||||
|
||||
#include "sdl_types.hpp"
|
||||
#include "sdl_utils.hpp"
|
||||
|
||||
/** @brief a clipboard format request */
|
||||
class ClipRequest
|
||||
{
|
||||
public:
|
||||
ClipRequest(UINT32 format, const std::string& mime);
|
||||
ClipRequest(const ClipRequest& other) = default;
|
||||
ClipRequest(ClipRequest&& other) = default;
|
||||
~ClipRequest() = default;
|
||||
|
||||
ClipRequest& operator=(const ClipRequest& other) = delete;
|
||||
ClipRequest& operator=(ClipRequest&& other) = delete;
|
||||
|
||||
[[nodiscard]] uint32_t format() const;
|
||||
[[nodiscard]] std::string formatstr() const;
|
||||
[[nodiscard]] std::string mime() const;
|
||||
[[nodiscard]] bool success() const;
|
||||
void setSuccess(bool status);
|
||||
|
||||
private:
|
||||
uint32_t _format;
|
||||
std::string _mime;
|
||||
bool _success;
|
||||
};
|
||||
|
||||
class CliprdrFormat
|
||||
{
|
||||
public:
|
||||
CliprdrFormat(uint32_t formatID, const char* formatName);
|
||||
|
||||
[[nodiscard]] uint32_t formatId() const;
|
||||
[[nodiscard]] const char* formatName() const;
|
||||
|
||||
private:
|
||||
uint32_t _formatID;
|
||||
std::string _formatName;
|
||||
};
|
||||
|
||||
/** @brief object that handles clipboard context for the SDL3 client */
|
||||
class sdlClip
|
||||
{
|
||||
public:
|
||||
explicit sdlClip(SdlContext* sdl);
|
||||
virtual ~sdlClip();
|
||||
|
||||
sdlClip(const sdlClip&) = delete;
|
||||
sdlClip(sdlClip&&) = delete;
|
||||
|
||||
sdlClip& operator=(const sdlClip&) = delete;
|
||||
sdlClip& operator=(sdlClip&&) = delete;
|
||||
|
||||
[[nodiscard]] bool init(CliprdrClientContext* clip);
|
||||
[[nodiscard]] bool uninit(CliprdrClientContext* clip);
|
||||
|
||||
[[nodiscard]] bool handleEvent(const SDL_ClipboardEvent& ev);
|
||||
|
||||
private:
|
||||
[[nodiscard]] UINT SendClientCapabilities();
|
||||
void clearServerFormats();
|
||||
[[nodiscard]] UINT SendFormatListResponse(BOOL status);
|
||||
[[nodiscard]] UINT SendDataResponse(const BYTE* data, size_t size);
|
||||
[[nodiscard]] UINT SendDataRequest(uint32_t formatID, const std::string& mime);
|
||||
|
||||
[[nodiscard]] std::string getServerFormat(uint32_t id);
|
||||
[[nodiscard]] uint32_t serverIdForMime(const std::string& mime);
|
||||
|
||||
[[nodiscard]] bool contains(const char** mime_types, Sint32 count);
|
||||
|
||||
[[nodiscard]] static UINT MonitorReady(CliprdrClientContext* context,
|
||||
const CLIPRDR_MONITOR_READY* monitorReady);
|
||||
|
||||
[[nodiscard]] static UINT ReceiveServerCapabilities(CliprdrClientContext* context,
|
||||
const CLIPRDR_CAPABILITIES* capabilities);
|
||||
[[nodiscard]] static UINT ReceiveServerFormatList(CliprdrClientContext* context,
|
||||
const CLIPRDR_FORMAT_LIST* formatList);
|
||||
[[nodiscard]] static UINT
|
||||
ReceiveFormatListResponse(CliprdrClientContext* context,
|
||||
const CLIPRDR_FORMAT_LIST_RESPONSE* formatListResponse);
|
||||
[[nodiscard]] static std::shared_ptr<BYTE> ReceiveFormatDataRequestHandle(
|
||||
sdlClip* clipboard, const CLIPRDR_FORMAT_DATA_REQUEST* formatDataRequest, uint32_t& len);
|
||||
[[nodiscard]] static UINT
|
||||
ReceiveFormatDataRequest(CliprdrClientContext* context,
|
||||
const CLIPRDR_FORMAT_DATA_REQUEST* formatDataRequest);
|
||||
[[nodiscard]] static UINT
|
||||
ReceiveFormatDataResponse(CliprdrClientContext* context,
|
||||
const CLIPRDR_FORMAT_DATA_RESPONSE* formatDataResponse);
|
||||
|
||||
[[nodiscard]] static const void* SDLCALL ClipDataCb(void* userdata, const char* mime_type,
|
||||
size_t* size);
|
||||
static void SDLCALL ClipCleanCb(void* userdata);
|
||||
|
||||
[[nodiscard]] static bool mime_is_file(const std::string& mime);
|
||||
[[nodiscard]] static bool mime_is_text(const std::string& mime);
|
||||
[[nodiscard]] static bool mime_is_image(const std::string& mime);
|
||||
[[nodiscard]] static bool mime_is_bmp(const std::string& mime);
|
||||
[[nodiscard]] static bool mime_is_html(const std::string& mime);
|
||||
|
||||
SdlContext* _sdl = nullptr;
|
||||
CliprdrFileContext* _file = nullptr;
|
||||
CliprdrClientContext* _ctx = nullptr;
|
||||
wLog* _log = nullptr;
|
||||
wClipboard* _system = nullptr;
|
||||
std::atomic<bool> _sync = false;
|
||||
HANDLE _event = nullptr;
|
||||
Uint64 _last_timestamp = 0;
|
||||
|
||||
std::vector<CliprdrFormat> _serverFormats;
|
||||
CriticalSection _lock;
|
||||
|
||||
std::queue<ClipRequest> _request_queue;
|
||||
|
||||
struct cache_entry
|
||||
{
|
||||
cache_entry(size_t len, std::shared_ptr<void> p) : size(len), ptr(std::move(p))
|
||||
{
|
||||
}
|
||||
|
||||
size_t size;
|
||||
std::shared_ptr<void> ptr;
|
||||
};
|
||||
std::map<std::string, cache_entry> _cache_data;
|
||||
std::vector<const char*> _current_mimetypes;
|
||||
std::string _uuid;
|
||||
std::string _mime_uuid;
|
||||
};
|
||||
Reference in New Issue
Block a user