2013-05-01 19:12:29 -04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2014-07-10 15:46:34 -04:00
|
|
|
* Session Shadowing
|
2013-05-01 19:12:29 -04:00
|
|
|
*
|
2014-07-10 15:46:34 -04:00
|
|
|
* Copyright 2014 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2013-05-01 19:12:29 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2014-07-10 15:46:34 -04:00
|
|
|
#ifndef FREERDP_SERVER_SHADOW_H
|
|
|
|
#define FREERDP_SERVER_SHADOW_H
|
2013-05-01 19:12:29 -04:00
|
|
|
|
2014-07-10 15:46:34 -04:00
|
|
|
#include <freerdp/api.h>
|
|
|
|
#include <freerdp/types.h>
|
2013-05-01 19:12:29 -04:00
|
|
|
|
2014-07-12 00:01:29 -04:00
|
|
|
#include <freerdp/settings.h>
|
2014-07-11 19:30:40 -04:00
|
|
|
#include <freerdp/listener.h>
|
2013-05-01 19:12:29 -04:00
|
|
|
|
2014-07-14 18:01:29 -04:00
|
|
|
#include <freerdp/channels/wtsvc.h>
|
|
|
|
#include <freerdp/channels/channels.h>
|
|
|
|
|
|
|
|
#include <freerdp/server/encomsp.h>
|
|
|
|
#include <freerdp/server/remdesk.h>
|
|
|
|
|
2014-07-12 01:18:08 -04:00
|
|
|
#include <freerdp/codec/color.h>
|
|
|
|
#include <freerdp/codec/region.h>
|
|
|
|
|
2014-07-13 19:42:57 -04:00
|
|
|
#include <winpr/crt.h>
|
|
|
|
#include <winpr/synch.h>
|
|
|
|
#include <winpr/collections.h>
|
|
|
|
|
2014-07-11 19:30:40 -04:00
|
|
|
typedef struct rdp_shadow_client rdpShadowClient;
|
|
|
|
typedef struct rdp_shadow_server rdpShadowServer;
|
2014-07-11 20:49:56 -04:00
|
|
|
typedef struct rdp_shadow_screen rdpShadowScreen;
|
|
|
|
typedef struct rdp_shadow_surface rdpShadowSurface;
|
|
|
|
typedef struct rdp_shadow_encoder rdpShadowEncoder;
|
2014-07-11 23:01:34 -04:00
|
|
|
typedef struct rdp_shadow_subsystem rdpShadowSubsystem;
|
2014-07-11 19:30:40 -04:00
|
|
|
|
2014-07-13 21:20:36 -04:00
|
|
|
typedef rdpShadowSubsystem* (*pfnShadowCreateSubsystem)(rdpShadowServer* server);
|
|
|
|
|
|
|
|
typedef int (*pfnShadowSubsystemInit)(rdpShadowSubsystem* subsystem);
|
|
|
|
typedef int (*pfnShadowSubsystemUninit)(rdpShadowSubsystem* subsystem);
|
|
|
|
typedef int (*pfnShadowSubsystemStart)(rdpShadowSubsystem* subsystem);
|
|
|
|
typedef int (*pfnShadowSubsystemStop)(rdpShadowSubsystem* subsystem);
|
|
|
|
typedef void (*pfnShadowSubsystemFree)(rdpShadowSubsystem* subsystem);
|
|
|
|
|
|
|
|
typedef int (*pfnShadowSurfaceCopy)(rdpShadowSubsystem* subsystem);
|
|
|
|
|
|
|
|
typedef int (*pfnShadowSynchronizeEvent)(rdpShadowSubsystem* subsystem, UINT32 flags);
|
|
|
|
typedef int (*pfnShadowKeyboardEvent)(rdpShadowSubsystem* subsystem, UINT16 flags, UINT16 code);
|
|
|
|
typedef int (*pfnShadowUnicodeKeyboardEvent)(rdpShadowSubsystem* subsystem, UINT16 flags, UINT16 code);
|
|
|
|
typedef int (*pfnShadowMouseEvent)(rdpShadowSubsystem* subsystem, UINT16 flags, UINT16 x, UINT16 y);
|
|
|
|
typedef int (*pfnShadowExtendedMouseEvent)(rdpShadowSubsystem* subsystem, UINT16 flags, UINT16 x, UINT16 y);
|
|
|
|
|
2014-07-11 19:30:40 -04:00
|
|
|
struct rdp_shadow_client
|
|
|
|
{
|
|
|
|
rdpContext context;
|
|
|
|
|
2014-07-11 20:49:56 -04:00
|
|
|
HANDLE thread;
|
2014-07-12 00:01:29 -04:00
|
|
|
BOOL activated;
|
2014-07-14 18:01:29 -04:00
|
|
|
BOOL inLobby;
|
|
|
|
BOOL mayView;
|
|
|
|
BOOL mayInteract;
|
2014-07-12 01:18:08 -04:00
|
|
|
HANDLE StopEvent;
|
2014-07-11 20:49:56 -04:00
|
|
|
rdpShadowServer* server;
|
2014-07-14 18:01:29 -04:00
|
|
|
rdpShadowSurface* lobby;
|
|
|
|
|
|
|
|
HANDLE vcm;
|
|
|
|
EncomspServerContext* encomsp;
|
|
|
|
RemdeskServerContext* remdesk;
|
2014-07-11 19:30:40 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct rdp_shadow_server
|
|
|
|
{
|
2014-07-11 20:49:56 -04:00
|
|
|
void* ext;
|
2014-07-11 19:30:40 -04:00
|
|
|
HANDLE thread;
|
2014-07-12 01:18:08 -04:00
|
|
|
HANDLE StopEvent;
|
2014-07-11 20:49:56 -04:00
|
|
|
rdpShadowScreen* screen;
|
|
|
|
rdpShadowSurface* surface;
|
|
|
|
rdpShadowEncoder* encoder;
|
2014-07-11 23:01:34 -04:00
|
|
|
rdpShadowSubsystem* subsystem;
|
2014-07-11 19:30:40 -04:00
|
|
|
|
2014-07-11 20:49:56 -04:00
|
|
|
DWORD port;
|
2014-07-14 18:01:29 -04:00
|
|
|
BOOL mayView;
|
|
|
|
BOOL mayInteract;
|
2014-07-11 20:49:56 -04:00
|
|
|
freerdp_listener* listener;
|
2014-07-13 21:20:36 -04:00
|
|
|
pfnShadowCreateSubsystem CreateSubsystem;
|
2014-07-11 19:30:40 -04:00
|
|
|
};
|
2014-07-10 15:46:34 -04:00
|
|
|
|
2014-07-11 23:01:34 -04:00
|
|
|
#define RDP_SHADOW_SUBSYSTEM_COMMON() \
|
2014-07-12 01:18:08 -04:00
|
|
|
HANDLE event; \
|
2014-07-12 00:01:29 -04:00
|
|
|
int monitorCount; \
|
2014-07-13 21:20:36 -04:00
|
|
|
MONITOR_DEF monitors[16]; \
|
2014-07-14 13:33:20 -04:00
|
|
|
MONITOR_DEF virtualScreen; \
|
2014-07-13 21:20:36 -04:00
|
|
|
\
|
|
|
|
pfnShadowSubsystemInit Init; \
|
|
|
|
pfnShadowSubsystemUninit Uninit; \
|
|
|
|
pfnShadowSubsystemStart Start; \
|
|
|
|
pfnShadowSubsystemStop Stop; \
|
|
|
|
pfnShadowSubsystemFree Free; \
|
|
|
|
\
|
|
|
|
pfnShadowSurfaceCopy SurfaceCopy; \
|
|
|
|
\
|
|
|
|
pfnShadowSynchronizeEvent SynchronizeEvent; \
|
|
|
|
pfnShadowKeyboardEvent KeyboardEvent; \
|
|
|
|
pfnShadowUnicodeKeyboardEvent UnicodeKeyboardEvent; \
|
|
|
|
pfnShadowMouseEvent MouseEvent; \
|
|
|
|
pfnShadowExtendedMouseEvent ExtendedMouseEvent; \
|
|
|
|
\
|
|
|
|
rdpShadowServer* server
|
2014-07-11 23:01:34 -04:00
|
|
|
|
|
|
|
struct rdp_shadow_subsystem
|
|
|
|
{
|
|
|
|
RDP_SHADOW_SUBSYSTEM_COMMON();
|
|
|
|
};
|
|
|
|
|
2014-07-10 15:46:34 -04:00
|
|
|
#endif /* FREERDP_SERVER_SHADOW_H */
|
2013-05-01 19:12:29 -04:00
|
|
|
|