FreeRDP
Loading...
Searching...
No Matches
SDL3/sdl_utils.hpp
1
20#pragma once
21
22#include <winpr/synch.h>
23#include <winpr/wlog.h>
24
25#include <freerdp/settings.h>
26
27#include <SDL3/SDL.h>
28#include <string>
29#include <vector>
30#include <memory>
31#include <functional>
32
33#include <sdl_common_utils.hpp>
34
35template <typename T> using deleted_unique_ptr = std::unique_ptr<T, std::function<void(T*)>>;
36
37enum
38{
39 SDL_EVENT_USER_UPDATE = SDL_EVENT_USER + 1,
40 SDL_EVENT_USER_CREATE_WINDOWS,
41 SDL_EVENT_USER_WINDOW_RESIZEABLE,
42 SDL_EVENT_USER_WINDOW_FULLSCREEN,
43 SDL_EVENT_USER_WINDOW_MINIMIZE,
44 SDL_EVENT_USER_POINTER_NULL,
45 SDL_EVENT_USER_POINTER_DEFAULT,
46 SDL_EVENT_USER_POINTER_POSITION,
47 SDL_EVENT_USER_POINTER_SET,
48 SDL_EVENT_USER_QUIT,
49 SDL_EVENT_USER_CERT_DIALOG,
50 SDL_EVENT_USER_SHOW_DIALOG,
51 SDL_EVENT_USER_AUTH_DIALOG,
52 SDL_EVENT_USER_SCARD_DIALOG,
53 SDL_EVENT_USER_RETRY_DIALOG,
54
55 SDL_EVENT_USER_CERT_RESULT,
56 SDL_EVENT_USER_SHOW_RESULT,
57 SDL_EVENT_USER_AUTH_RESULT,
58 SDL_EVENT_USER_SCARD_RESULT
59};
60
61typedef struct
62{
63 Uint32 type;
64 Uint32 timestamp;
65 char* title;
66 char* user;
67 char* domain;
68 char* password;
69 Sint32 result;
71
72[[nodiscard]] bool sdl_push_user_event(Uint32 type, ...);
73
74[[nodiscard]] bool sdl_push_quit();
75
76[[nodiscard]] const char* sdl_error_string(Sint32 res);
77
78#define sdl_log_error(res, log, what) sdl_log_error_ex(res, log, what, __FILE__, __LINE__, __func__)
79[[nodiscard]] BOOL sdl_log_error_ex(Sint32 res, wLog* log, const char* what, const char* file,
80 size_t line, const char* fkt);
81
82namespace sdl::utils
83{
84 [[nodiscard]] std::string touchFlagsToString(Uint32 flags);
85 [[nodiscard]] std::string toString(enum FreeRDP_DesktopRotationFlags orientation);
86 [[nodiscard]] std::string toString(SDL_DisplayOrientation orientation);
87 [[nodiscard]] std::string toString(const SDL_DisplayMode* mode);
88 [[nodiscard]] std::string toString(Uint32 type);
89
90 [[nodiscard]] UINT32 orientaion_to_rdp(SDL_DisplayOrientation orientation);
91
92 [[nodiscard]] std::string generate_uuid_v4();
93
94 enum HighDpiScaleMode
95 {
96 SCALE_MODE_INVALID,
97 SCALE_MODE_X11,
98 SCALE_MODE_WAYLAND
99 };
100
101 [[nodiscard]] HighDpiScaleMode platformScaleMode();
102
103 [[nodiscard]] std::string windowTitle(const rdpSettings* settings);
104
105} // namespace sdl::utils
106
107namespace sdl::error
108{
109 enum EXIT_CODE
110 {
111 /* section 0-15: protocol-independent codes */
112 SUCCESS = 0,
113 DISCONNECT = 1,
114 LOGOFF = 2,
115 IDLE_TIMEOUT = 3,
116 LOGON_TIMEOUT = 4,
117 CONN_REPLACED = 5,
118 OUT_OF_MEMORY = 6,
119 CONN_DENIED = 7,
120 CONN_DENIED_FIPS = 8,
121 USER_PRIVILEGES = 9,
122 FRESH_CREDENTIALS_REQUIRED = 10,
123 DISCONNECT_BY_USER = 11,
124
125 /* section 16-31: license error set */
126 LICENSE_INTERNAL = 16,
127 LICENSE_NO_LICENSE_SERVER = 17,
128 LICENSE_NO_LICENSE = 18,
129 LICENSE_BAD_CLIENT_MSG = 19,
130 LICENSE_HWID_DOESNT_MATCH = 20,
131 LICENSE_BAD_CLIENT = 21,
132 LICENSE_CANT_FINISH_PROTOCOL = 22,
133 LICENSE_CLIENT_ENDED_PROTOCOL = 23,
134 LICENSE_BAD_CLIENT_ENCRYPTION = 24,
135 LICENSE_CANT_UPGRADE = 25,
136 LICENSE_NO_REMOTE_CONNECTIONS = 26,
137
138 /* section 32-127: RDP protocol error set */
139 RDP = 32,
140
141 /* section 128-254: xfreerdp specific exit codes */
142 PARSE_ARGUMENTS = 128,
143 MEMORY = 129,
144 PROTOCOL = 130,
145 CONN_FAILED = 131,
146 AUTH_FAILURE = 132,
147 NEGO_FAILURE = 133,
148 LOGON_FAILURE = 134,
149 ACCOUNT_LOCKED_OUT = 135,
150 PRE_CONNECT_FAILED = 136,
151 CONNECT_UNDEFINED = 137,
152 POST_CONNECT_FAILED = 138,
153 DNS_ERROR = 139,
154 DNS_NAME_NOT_FOUND = 140,
155 CONNECT_FAILED = 141,
156 MCS_CONNECT_INITIAL_ERROR = 142,
157 TLS_CONNECT_FAILED = 143,
158 INSUFFICIENT_PRIVILEGES = 144,
159 CONNECT_CANCELLED = 145,
160
161 CONNECT_TRANSPORT_FAILED = 147,
162 CONNECT_PASSWORD_EXPIRED = 148,
163 CONNECT_PASSWORD_MUST_CHANGE = 149,
164 CONNECT_KDC_UNREACHABLE = 150,
165 CONNECT_ACCOUNT_DISABLED = 151,
166 CONNECT_PASSWORD_CERTAINLY_EXPIRED = 152,
167 CONNECT_CLIENT_REVOKED = 153,
168 CONNECT_WRONG_PASSWORD = 154,
169 CONNECT_ACCESS_DENIED = 155,
170 CONNECT_ACCOUNT_RESTRICTION = 156,
171 CONNECT_ACCOUNT_EXPIRED = 157,
172 CONNECT_LOGON_TYPE_NOT_GRANTED = 158,
173 CONNECT_NO_OR_MISSING_CREDENTIALS = 159,
174 CONNECT_TARGET_BOOTING = 160,
175
176 UNKNOWN = 255,
177 };
178
179 [[nodiscard]] int errorToExitCode(DWORD error);
180 [[nodiscard]] const char* errorToExitCodeTag(UINT32 error);
181 [[nodiscard]] const char* exitCodeToTag(int code);
182} // namespace sdl::error