1 | /** @file
|
---|
2 | *
|
---|
3 | * Guest client: seamless mode.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef __Additions_xclient_seamless_h
|
---|
19 | # define __Additions_xclient_seamless_h
|
---|
20 |
|
---|
21 | #include "seamless-host.h"
|
---|
22 | #include "seamless-guest.h"
|
---|
23 | #include "seamless-glue.h"
|
---|
24 |
|
---|
25 | /** Thread function class for VBoxGuestSeamlessX11. */
|
---|
26 | class VBoxGuestSeamlessGuestThread: public VBoxGuestThreadFunction
|
---|
27 | {
|
---|
28 | private:
|
---|
29 | /** The guest class "owning" us. */
|
---|
30 | VBoxGuestSeamlessGuestImpl *mGuest;
|
---|
31 | /** Should we exit the thread? */
|
---|
32 | bool mExit;
|
---|
33 |
|
---|
34 | // Copying or assigning a thread object is not sensible
|
---|
35 | VBoxGuestSeamlessGuestThread(const VBoxGuestSeamlessGuestThread&);
|
---|
36 | VBoxGuestSeamlessGuestThread& operator=(const VBoxGuestSeamlessGuestThread&);
|
---|
37 |
|
---|
38 | public:
|
---|
39 | VBoxGuestSeamlessGuestThread(VBoxGuestSeamlessGuestImpl *pGuest)
|
---|
40 | { mGuest = pGuest; mExit = false; }
|
---|
41 | virtual ~VBoxGuestSeamlessGuestThread(void) {}
|
---|
42 | /**
|
---|
43 | * The actual thread function.
|
---|
44 | *
|
---|
45 | * @returns iprt status code as thread return value
|
---|
46 | * @param pParent the VBoxGuestThread running this thread function
|
---|
47 | */
|
---|
48 | virtual int threadFunction(VBoxGuestThread *pThread)
|
---|
49 | {
|
---|
50 | while (!pThread->isStopping)
|
---|
51 | {
|
---|
52 | mGuest->nextEvent();
|
---|
53 | }
|
---|
54 | return VINF_SUCCESS;
|
---|
55 | }
|
---|
56 | /**
|
---|
57 | * Send a signal to the thread function that it should exit
|
---|
58 | */
|
---|
59 | virtual void stop(void) { mGuest->interruptEvent(); }
|
---|
60 | };
|
---|
61 |
|
---|
62 | /** Observer for the host class - start and stop seamless reporting in the guest when the
|
---|
63 | host requests. */
|
---|
64 | class VBoxGuestSeamlessHostObserver : public VBoxGuestSeamlessObserver
|
---|
65 | {
|
---|
66 | private:
|
---|
67 | VBoxGuestSeamlessHost *mHost;
|
---|
68 | VBoxGuestSeamlessGuestImpl *mGuest;
|
---|
69 |
|
---|
70 | public:
|
---|
71 | VBoxGuestSeamlessHostObserver(VBoxGuestSeamlessHost *pHost,
|
---|
72 | VBoxGuestSeamlessGuestImpl *pGuest)
|
---|
73 | {
|
---|
74 | mHost = pHost;
|
---|
75 | mGuest = pGuest;
|
---|
76 | }
|
---|
77 |
|
---|
78 | void notify(void)
|
---|
79 | {
|
---|
80 | switch (mHost->getState())
|
---|
81 | {
|
---|
82 | case VBoxGuestSeamlessGuest::ENABLE:
|
---|
83 | mGuest->start();
|
---|
84 | break;
|
---|
85 | case VBoxGuestSeamlessGuest::DISABLE:
|
---|
86 | mGuest->stop();
|
---|
87 | break;
|
---|
88 | default:
|
---|
89 | break;
|
---|
90 | }
|
---|
91 | }
|
---|
92 | };
|
---|
93 |
|
---|
94 | /** Observer for the guest class - send the host updated seamless rectangle information when
|
---|
95 | it becomes available. */
|
---|
96 | class VBoxGuestSeamlessGuestObserver : public VBoxGuestSeamlessObserver
|
---|
97 | {
|
---|
98 | private:
|
---|
99 | VBoxGuestSeamlessHost *mHost;
|
---|
100 | VBoxGuestSeamlessGuestImpl *mGuest;
|
---|
101 |
|
---|
102 | public:
|
---|
103 | VBoxGuestSeamlessGuestObserver(VBoxGuestSeamlessHost *pHost,
|
---|
104 | VBoxGuestSeamlessGuestImpl *pGuest)
|
---|
105 | {
|
---|
106 | mHost = pHost;
|
---|
107 | mGuest = pGuest;
|
---|
108 | }
|
---|
109 |
|
---|
110 | void notify(void)
|
---|
111 | {
|
---|
112 | mHost->updateRects(mGuest->getRects());
|
---|
113 | }
|
---|
114 | };
|
---|
115 |
|
---|
116 | class VBoxGuestSeamless
|
---|
117 | {
|
---|
118 | private:
|
---|
119 | VBoxGuestSeamlessHost mHost;
|
---|
120 | VBoxGuestSeamlessGuestImpl mGuest;
|
---|
121 | VBoxGuestSeamlessHostObserver mHostObs;
|
---|
122 | VBoxGuestSeamlessGuestObserver mGuestObs;
|
---|
123 | VBoxGuestSeamlessGuestThread mGuestFunction;
|
---|
124 | VBoxGuestThread mGuestThread;
|
---|
125 |
|
---|
126 | bool isInitialised;
|
---|
127 | public:
|
---|
128 | int init(void)
|
---|
129 | {
|
---|
130 | int rc = VINF_SUCCESS;
|
---|
131 |
|
---|
132 | if (isInitialised) /* Assertion */
|
---|
133 | {
|
---|
134 | LogRelFunc(("error: called a second time!\n"));
|
---|
135 | rc = VERR_INTERNAL_ERROR;
|
---|
136 | }
|
---|
137 | if (RT_SUCCESS(rc))
|
---|
138 | {
|
---|
139 | rc = mHost.init(&mHostObs);
|
---|
140 | }
|
---|
141 | if (RT_SUCCESS(rc))
|
---|
142 | {
|
---|
143 | rc = mGuest.init(&mGuestObs);
|
---|
144 | }
|
---|
145 | if (RT_SUCCESS(rc))
|
---|
146 | {
|
---|
147 | rc = mHost.start();
|
---|
148 | }
|
---|
149 | if (RT_SUCCESS(rc))
|
---|
150 | {
|
---|
151 | rc = mGuestThread.start();
|
---|
152 | }
|
---|
153 | isInitialised = true;
|
---|
154 | return rc;
|
---|
155 | }
|
---|
156 |
|
---|
157 | void uninit(void)
|
---|
158 | {
|
---|
159 | if (isInitialised)
|
---|
160 | {
|
---|
161 | mGuestThread.stop();
|
---|
162 | mHost.stop();
|
---|
163 | mGuest.uninit();
|
---|
164 | isInitialised = false;
|
---|
165 | }
|
---|
166 | }
|
---|
167 |
|
---|
168 | VBoxGuestSeamless() : mHostObs(&mHost, &mGuest), mHostObs(&mHost, &mGuest),
|
---|
169 | mGuestFunction(&mGuest), mGuestThread(&mGuestFunction)
|
---|
170 | {
|
---|
171 | isInitialised = false;
|
---|
172 | }
|
---|
173 | ~VBoxGuestSeamless() { uninit(); }
|
---|
174 | };
|
---|
175 |
|
---|
176 | #endif /* __Additions_xclient_seamless_h not defined */
|
---|