1 | /** @file
|
---|
2 | *
|
---|
3 | * VirtualBox COM class implementation
|
---|
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 ____H_DISPLAYIMPL
|
---|
19 | #define ____H_DISPLAYIMPL
|
---|
20 |
|
---|
21 | #include "VirtualBoxBase.h"
|
---|
22 | #include "SchemaDefs.h"
|
---|
23 | #include <iprt/semaphore.h>
|
---|
24 | #include <VBox/pdmdrv.h>
|
---|
25 | #include <VBox/VBoxGuest.h>
|
---|
26 | #include <VBox/VBoxVideo.h>
|
---|
27 |
|
---|
28 | class Console;
|
---|
29 |
|
---|
30 | enum {
|
---|
31 | ResizeStatus_Void,
|
---|
32 | ResizeStatus_InProgress,
|
---|
33 | ResizeStatus_UpdateDisplayData
|
---|
34 | };
|
---|
35 |
|
---|
36 | typedef struct _DISPLAYFBINFO
|
---|
37 | {
|
---|
38 | uint32_t u32Offset;
|
---|
39 | uint32_t u32MaxFramebufferSize;
|
---|
40 | uint32_t u32InformationSize;
|
---|
41 |
|
---|
42 | ComPtr<IFramebuffer> pFramebuffer;
|
---|
43 |
|
---|
44 | LONG xOrigin;
|
---|
45 | LONG yOrigin;
|
---|
46 |
|
---|
47 | ULONG w;
|
---|
48 | ULONG h;
|
---|
49 |
|
---|
50 | VBOXVIDEOINFOHOSTEVENTS *pHostEvents;
|
---|
51 |
|
---|
52 | volatile uint32_t u32ResizeStatus;
|
---|
53 |
|
---|
54 | /* The Framebuffer has default format and must be updates immediately. */
|
---|
55 | bool fDefaultFormat;
|
---|
56 |
|
---|
57 | struct {
|
---|
58 | /* The rectangle that includes all dirty rectangles. */
|
---|
59 | int32_t xLeft;
|
---|
60 | int32_t xRight;
|
---|
61 | int32_t yTop;
|
---|
62 | int32_t yBottom;
|
---|
63 | } dirtyRect;
|
---|
64 |
|
---|
65 | } DISPLAYFBINFO;
|
---|
66 |
|
---|
67 | class ATL_NO_VTABLE Display :
|
---|
68 | public IConsoleCallback,
|
---|
69 | public VirtualBoxSupportErrorInfoImpl <Display, IDisplay>,
|
---|
70 | public VirtualBoxSupportTranslation <Display>,
|
---|
71 | public VirtualBoxBase,
|
---|
72 | public IDisplay
|
---|
73 | {
|
---|
74 |
|
---|
75 | public:
|
---|
76 |
|
---|
77 | DECLARE_NOT_AGGREGATABLE(Display)
|
---|
78 |
|
---|
79 | DECLARE_PROTECT_FINAL_CONSTRUCT()
|
---|
80 |
|
---|
81 | BEGIN_COM_MAP(Display)
|
---|
82 | COM_INTERFACE_ENTRY(ISupportErrorInfo)
|
---|
83 | COM_INTERFACE_ENTRY(IDisplay)
|
---|
84 | END_COM_MAP()
|
---|
85 |
|
---|
86 | NS_DECL_ISUPPORTS
|
---|
87 |
|
---|
88 | HRESULT FinalConstruct();
|
---|
89 | void FinalRelease();
|
---|
90 |
|
---|
91 | // public initializer/uninitializer for internal purposes only
|
---|
92 | HRESULT init (Console *parent);
|
---|
93 | void uninit();
|
---|
94 |
|
---|
95 | // public methods only for internal purposes
|
---|
96 | int handleDisplayResize (unsigned uScreenId, uint32_t bpp, void *pvVRAM, uint32_t cbLine, int w, int h);
|
---|
97 | void handleDisplayUpdate (int x, int y, int cx, int cy);
|
---|
98 | IFramebuffer *getFramebuffer()
|
---|
99 | {
|
---|
100 | return maFramebuffers[VBOX_VIDEO_PRIMARY_SCREEN].pFramebuffer;
|
---|
101 | }
|
---|
102 |
|
---|
103 | int VideoAccelEnable (bool fEnable, VBVAMEMORY *pVbvaMemory);
|
---|
104 | void VideoAccelFlush (void);
|
---|
105 |
|
---|
106 | bool VideoAccelAllowed (void);
|
---|
107 |
|
---|
108 | #ifdef VBOX_VRDP
|
---|
109 | void VideoAccelVRDP (bool fEnable);
|
---|
110 | #endif /* VBOX_VRDP */
|
---|
111 |
|
---|
112 | // IConsoleCallback methods
|
---|
113 | STDMETHOD(OnMousePointerShapeChange)(BOOL visible, BOOL alpha, ULONG xHot, ULONG yHot,
|
---|
114 | ULONG width, ULONG height, BYTE *shape)
|
---|
115 | {
|
---|
116 | return S_OK;
|
---|
117 | }
|
---|
118 |
|
---|
119 | STDMETHOD(OnMouseCapabilityChange)(BOOL supportsAbsolute, BOOL needsHostCursor)
|
---|
120 | {
|
---|
121 | return S_OK;
|
---|
122 | }
|
---|
123 |
|
---|
124 | STDMETHOD(OnKeyboardLedsChange)(BOOL fNumLock, BOOL fCapsLock, BOOL fScrollLock)
|
---|
125 | {
|
---|
126 | return S_OK;
|
---|
127 | }
|
---|
128 |
|
---|
129 | STDMETHOD(OnStateChange)(MachineState_T machineState);
|
---|
130 |
|
---|
131 | STDMETHOD(OnAdditionsStateChange)()
|
---|
132 | {
|
---|
133 | return S_OK;
|
---|
134 | }
|
---|
135 |
|
---|
136 | STDMETHOD(OnDVDDriveChange)()
|
---|
137 | {
|
---|
138 | return S_OK;
|
---|
139 | }
|
---|
140 |
|
---|
141 | STDMETHOD(OnFloppyDriveChange)()
|
---|
142 | {
|
---|
143 | return S_OK;
|
---|
144 | }
|
---|
145 |
|
---|
146 | STDMETHOD(OnNetworkAdapterChange) (INetworkAdapter *aNetworkAdapter)
|
---|
147 | {
|
---|
148 | return S_OK;
|
---|
149 | }
|
---|
150 |
|
---|
151 | STDMETHOD(OnSerialPortChange) (ISerialPort *aSerialPort)
|
---|
152 | {
|
---|
153 | return S_OK;
|
---|
154 | }
|
---|
155 |
|
---|
156 | STDMETHOD(OnParallelPortChange) (IParallelPort *aParallelPort)
|
---|
157 | {
|
---|
158 | return S_OK;
|
---|
159 | }
|
---|
160 |
|
---|
161 | STDMETHOD(OnVRDPServerChange)()
|
---|
162 | {
|
---|
163 | return S_OK;
|
---|
164 | }
|
---|
165 |
|
---|
166 | STDMETHOD(OnUSBControllerChange)()
|
---|
167 | {
|
---|
168 | return S_OK;
|
---|
169 | }
|
---|
170 |
|
---|
171 | STDMETHOD(OnUSBDeviceStateChange)(IUSBDevice *device, BOOL attached,
|
---|
172 | IVirtualBoxErrorInfo *message)
|
---|
173 | {
|
---|
174 | return S_OK;
|
---|
175 | }
|
---|
176 |
|
---|
177 | STDMETHOD(OnSharedFolderChange) (Scope_T aScope)
|
---|
178 | {
|
---|
179 | return S_OK;
|
---|
180 | }
|
---|
181 |
|
---|
182 | STDMETHOD(OnRuntimeError)(BOOL fatal, INPTR BSTR id, INPTR BSTR message)
|
---|
183 | {
|
---|
184 | return S_OK;
|
---|
185 | }
|
---|
186 |
|
---|
187 | STDMETHOD(OnCanShowWindow)(BOOL *canShow)
|
---|
188 | {
|
---|
189 | if (canShow)
|
---|
190 | *canShow = TRUE;
|
---|
191 | return S_OK;
|
---|
192 | }
|
---|
193 |
|
---|
194 | STDMETHOD(OnShowWindow)(ULONG64 *winId)
|
---|
195 | {
|
---|
196 | if (winId)
|
---|
197 | *winId = 0;
|
---|
198 | return S_OK;
|
---|
199 | }
|
---|
200 |
|
---|
201 | // IDisplay properties
|
---|
202 | STDMETHOD(COMGETTER(Width)) (ULONG *width);
|
---|
203 | STDMETHOD(COMGETTER(Height)) (ULONG *height);
|
---|
204 | STDMETHOD(COMGETTER(BitsPerPixel)) (ULONG *bitsPerPixel);
|
---|
205 |
|
---|
206 | // IDisplay methods
|
---|
207 | STDMETHOD(SetupInternalFramebuffer)(ULONG depth);
|
---|
208 | STDMETHOD(LockFramebuffer)(BYTE **address);
|
---|
209 | STDMETHOD(UnlockFramebuffer)();
|
---|
210 | STDMETHOD(RegisterExternalFramebuffer)(IFramebuffer *frameBuf);
|
---|
211 | STDMETHOD(SetFramebuffer)(ULONG aScreenId, IFramebuffer *aFramebuffer);
|
---|
212 | STDMETHOD(GetFramebuffer)(ULONG aScreenId, IFramebuffer **aFramebuffer, LONG *aXOrigin, LONG *aYOrigin);
|
---|
213 | STDMETHOD(SetVideoModeHint)(ULONG width, ULONG height, ULONG bitsPerPixel, ULONG display);
|
---|
214 | STDMETHOD(TakeScreenShot)(BYTE *address, ULONG width, ULONG height);
|
---|
215 | STDMETHOD(DrawToScreen)(BYTE *address, ULONG x, ULONG y, ULONG width, ULONG height);
|
---|
216 | STDMETHOD(InvalidateAndUpdate)();
|
---|
217 | STDMETHOD(ResizeCompleted)(ULONG aScreenId);
|
---|
218 | STDMETHOD(UpdateCompleted)();
|
---|
219 | STDMETHOD(SetSeamlessMode)(BOOL enabled);
|
---|
220 |
|
---|
221 | // for VirtualBoxSupportErrorInfoImpl
|
---|
222 | static const wchar_t *getComponentName() { return L"Display"; }
|
---|
223 |
|
---|
224 | static const PDMDRVREG DrvReg;
|
---|
225 |
|
---|
226 | private:
|
---|
227 |
|
---|
228 | void updateDisplayData (bool aCheckParams = false);
|
---|
229 |
|
---|
230 | static DECLCALLBACK(int) changeFramebuffer (Display *that, IFramebuffer *aFB,
|
---|
231 | bool aInternal, unsigned uScreenId);
|
---|
232 |
|
---|
233 | static DECLCALLBACK(void*) drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface);
|
---|
234 | static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle);
|
---|
235 | static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
|
---|
236 | static DECLCALLBACK(int) displayResizeCallback(PPDMIDISPLAYCONNECTOR pInterface, uint32_t bpp, void *pvVRAM, uint32_t cbLine, uint32_t cx, uint32_t cy);
|
---|
237 | static DECLCALLBACK(void) displayUpdateCallback(PPDMIDISPLAYCONNECTOR pInterface,
|
---|
238 | uint32_t x, uint32_t y, uint32_t cx, uint32_t cy);
|
---|
239 | static DECLCALLBACK(void) displayRefreshCallback(PPDMIDISPLAYCONNECTOR pInterface);
|
---|
240 | static DECLCALLBACK(void) displayResetCallback(PPDMIDISPLAYCONNECTOR pInterface);
|
---|
241 | static DECLCALLBACK(void) displayLFBModeChangeCallback(PPDMIDISPLAYCONNECTOR pInterface, bool fEnabled);
|
---|
242 | static DECLCALLBACK(void) displayProcessAdapterDataCallback(PPDMIDISPLAYCONNECTOR pInterface, void *pvVRAM, uint32_t u32VRAMSize);
|
---|
243 | static DECLCALLBACK(void) displayProcessDisplayDataCallback(PPDMIDISPLAYCONNECTOR pInterface, void *pvVRAM, unsigned uScreenId);
|
---|
244 |
|
---|
245 | ComObjPtr <Console, ComWeakRef> mParent;
|
---|
246 | /** Pointer to the associated display driver. */
|
---|
247 | struct DRVMAINDISPLAY *mpDrv;
|
---|
248 | /** Pointer to the device instance for the VMM Device. */
|
---|
249 | PPDMDEVINS mpVMMDev;
|
---|
250 | /** Set after the first attempt to find the VMM Device. */
|
---|
251 | bool mfVMMDevInited;
|
---|
252 | bool mInternalFramebuffer;
|
---|
253 |
|
---|
254 | unsigned mcMonitors;
|
---|
255 | DISPLAYFBINFO maFramebuffers[SchemaDefs::MaxGuestMonitors];
|
---|
256 |
|
---|
257 | bool mFramebufferOpened;
|
---|
258 | /** bitmask of acceleration operations supported by current framebuffer */
|
---|
259 | ULONG mSupportedAccelOps;
|
---|
260 | RTSEMEVENTMULTI mUpdateSem;
|
---|
261 |
|
---|
262 | /* arguments of the last handleDisplayResize() call */
|
---|
263 | void *mLastAddress;
|
---|
264 | uint32_t mLastBytesPerLine;
|
---|
265 | uint32_t mLastBitsPerPixel;
|
---|
266 | int mLastWidth;
|
---|
267 | int mLastHeight;
|
---|
268 |
|
---|
269 | VBVAMEMORY *mpVbvaMemory;
|
---|
270 | bool mfVideoAccelEnabled;
|
---|
271 | bool mfVideoAccelVRDP;
|
---|
272 | uint32_t mfu32SupportedOrders;
|
---|
273 |
|
---|
274 | int32_t volatile mcVideoAccelVRDPRefs;
|
---|
275 |
|
---|
276 | VBVAMEMORY *mpPendingVbvaMemory;
|
---|
277 | bool mfPendingVideoAccelEnable;
|
---|
278 | bool mfMachineRunning;
|
---|
279 |
|
---|
280 | uint8_t *mpu8VbvaPartial;
|
---|
281 | uint32_t mcbVbvaPartial;
|
---|
282 |
|
---|
283 | bool vbvaFetchCmd (VBVACMDHDR **ppHdr, uint32_t *pcbCmd);
|
---|
284 | void vbvaReleaseCmd (VBVACMDHDR *pHdr, int32_t cbCmd);
|
---|
285 |
|
---|
286 | void handleResizeCompletedEMT (void);
|
---|
287 | };
|
---|
288 |
|
---|
289 | #endif // ____H_DISPLAYIMPL
|
---|