VirtualBox

source: vbox/trunk/src/VBox/Main/src-client/DisplaySourceBitmapImpl.cpp@ 70772

Last change on this file since 70772 was 69500, checked in by vboxsync, 7 years ago

*: scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.9 KB
Line 
1/* $Id: DisplaySourceBitmapImpl.cpp 69500 2017-10-28 15:14:05Z vboxsync $ */
2/** @file
3 * Bitmap of a guest screen implementation.
4 */
5
6/*
7 * Copyright (C) 2014-2017 Oracle Corporation
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#define LOG_GROUP LOG_GROUP_MAIN_DISPLAYSOURCEBITMAP
19#include "LoggingNew.h"
20
21#include "DisplayImpl.h"
22
23/*
24 * DisplaySourceBitmap implementation.
25 */
26DEFINE_EMPTY_CTOR_DTOR(DisplaySourceBitmap)
27
28HRESULT DisplaySourceBitmap::FinalConstruct()
29{
30 return BaseFinalConstruct();
31}
32
33void DisplaySourceBitmap::FinalRelease()
34{
35 uninit();
36
37 BaseFinalRelease();
38}
39
40HRESULT DisplaySourceBitmap::init(ComObjPtr<Display> pDisplay, unsigned uScreenId, DISPLAYFBINFO *pFBInfo)
41{
42 LogFlowThisFunc(("[%u]\n", uScreenId));
43
44 ComAssertRet(!pDisplay.isNull(), E_INVALIDARG);
45
46 /* Enclose the state transition NotReady->InInit->Ready */
47 AutoInitSpan autoInitSpan(this);
48 AssertReturn(autoInitSpan.isOk(), E_FAIL);
49
50 m.pDisplay = pDisplay;
51 m.uScreenId = uScreenId;
52 m.pFBInfo = pFBInfo;
53
54 m.pu8Allocated = NULL;
55
56 m.pu8Address = NULL;
57 m.ulWidth = 0;
58 m.ulHeight = 0;
59 m.ulBitsPerPixel = 0;
60 m.ulBytesPerLine = 0;
61 m.bitmapFormat = BitmapFormat_Opaque;
62
63 int rc = initSourceBitmap(uScreenId, pFBInfo);
64
65 if (RT_FAILURE(rc))
66 return E_FAIL;
67
68 /* Confirm a successful initialization */
69 autoInitSpan.setSucceeded();
70
71 return S_OK;
72}
73
74void DisplaySourceBitmap::uninit()
75{
76 /* Enclose the state transition Ready->InUninit->NotReady */
77 AutoUninitSpan autoUninitSpan(this);
78 if (autoUninitSpan.uninitDone())
79 return;
80
81 LogFlowThisFunc(("[%u]\n", m.uScreenId));
82
83 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
84
85 m.pDisplay.setNull();
86 RTMemFree(m.pu8Allocated);
87}
88
89HRESULT DisplaySourceBitmap::getScreenId(ULONG *aScreenId)
90{
91 HRESULT hr = S_OK;
92 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
93
94 *aScreenId = m.uScreenId;
95 return hr;
96}
97
98HRESULT DisplaySourceBitmap::queryBitmapInfo(BYTE **aAddress,
99 ULONG *aWidth,
100 ULONG *aHeight,
101 ULONG *aBitsPerPixel,
102 ULONG *aBytesPerLine,
103 BitmapFormat_T *aBitmapFormat)
104{
105 HRESULT hr = S_OK;
106 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
107
108 *aAddress = m.pu8Address;
109 *aWidth = m.ulWidth;
110 *aHeight = m.ulHeight;
111 *aBitsPerPixel = m.ulBitsPerPixel;
112 *aBytesPerLine = m.ulBytesPerLine;
113 *aBitmapFormat = m.bitmapFormat;
114
115 return hr;
116}
117
118int DisplaySourceBitmap::initSourceBitmap(unsigned aScreenId,
119 DISPLAYFBINFO *pFBInfo)
120{
121 RT_NOREF(aScreenId);
122 int rc = VINF_SUCCESS;
123
124 if (pFBInfo->w == 0 || pFBInfo->h == 0)
125 {
126 return VERR_NOT_SUPPORTED;
127 }
128
129 BYTE *pAddress = NULL;
130 ULONG ulWidth = 0;
131 ULONG ulHeight = 0;
132 ULONG ulBitsPerPixel = 0;
133 ULONG ulBytesPerLine = 0;
134 BitmapFormat_T bitmapFormat = BitmapFormat_Opaque;
135
136 if (pFBInfo->pu8FramebufferVRAM && pFBInfo->u16BitsPerPixel == 32 && !pFBInfo->fDisabled)
137 {
138 /* From VRAM. */
139 LogFunc(("%d from VRAM\n", aScreenId));
140 pAddress = pFBInfo->pu8FramebufferVRAM;
141 ulWidth = pFBInfo->w;
142 ulHeight = pFBInfo->h;
143 ulBitsPerPixel = pFBInfo->u16BitsPerPixel;
144 ulBytesPerLine = pFBInfo->u32LineSize;
145 bitmapFormat = BitmapFormat_BGR;
146 m.pu8Allocated = NULL;
147 }
148 else
149 {
150 /* Allocated byffer */
151 LogFunc(("%d allocated\n", aScreenId));
152 pAddress = NULL;
153 ulWidth = pFBInfo->w;
154 ulHeight = pFBInfo->h;
155 ulBitsPerPixel = 32;
156 ulBytesPerLine = ulWidth * 4;
157 bitmapFormat = BitmapFormat_BGR;
158
159 m.pu8Allocated = (uint8_t *)RTMemAlloc(ulBytesPerLine * ulHeight);
160 if (m.pu8Allocated == NULL)
161 {
162 rc = VERR_NO_MEMORY;
163 }
164 else
165 {
166 pAddress = m.pu8Allocated;
167 }
168 }
169
170 if (RT_SUCCESS(rc))
171 {
172 m.pu8Address = pAddress;
173 m.ulWidth = ulWidth;
174 m.ulHeight = ulHeight;
175 m.ulBitsPerPixel = ulBitsPerPixel;
176 m.ulBytesPerLine = ulBytesPerLine;
177 m.bitmapFormat = bitmapFormat;
178 if (pFBInfo->fDisabled)
179 {
180 RT_BZERO(pAddress, ulBytesPerLine * ulHeight);
181 }
182 }
183
184 return rc;
185}
186
187/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use