VirtualBox

source: vbox/trunk/src/VBox/Main/src-all/DisplayUtils.cpp@ 43316

Last change on this file since 43316 was 41049, checked in by vboxsync, 12 years ago

Main: query the guest screen info from saved state (xTracker 5820)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.0 KB
Line 
1/* $Id: DisplayUtils.cpp 41049 2012-04-25 07:19:53Z vboxsync $ */
2/** @file
3 * Implementation of IDisplay helpers.
4 */
5
6/*
7 * Copyright (C) 2010 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#include <DisplayUtils.h>
19
20#include <iprt/log.h>
21#include <VBox/err.h>
22#include <VBox/vmm/ssm.h>
23#include <VBox/VBoxVideo.h>
24
25int readSavedDisplayScreenshot(const Utf8Str &strStateFilePath, uint32_t u32Type, uint8_t **ppu8Data, uint32_t *pcbData, uint32_t *pu32Width, uint32_t *pu32Height)
26{
27 LogFlowFunc(("u32Type = %d [%s]\n", u32Type, strStateFilePath.c_str()));
28
29 /* @todo cache read data */
30 if (strStateFilePath.isEmpty())
31 {
32 /* No saved state data. */
33 return VERR_NOT_SUPPORTED;
34 }
35
36 uint8_t *pu8Data = NULL;
37 uint32_t cbData = 0;
38 uint32_t u32Width = 0;
39 uint32_t u32Height = 0;
40
41 PSSMHANDLE pSSM;
42 int vrc = SSMR3Open(strStateFilePath.c_str(), 0 /*fFlags*/, &pSSM);
43 if (RT_SUCCESS(vrc))
44 {
45 uint32_t uVersion;
46 vrc = SSMR3Seek(pSSM, "DisplayScreenshot", 1100 /*iInstance*/, &uVersion);
47 if (RT_SUCCESS(vrc))
48 {
49 if (uVersion == sSSMDisplayScreenshotVer)
50 {
51 uint32_t cBlocks;
52 vrc = SSMR3GetU32(pSSM, &cBlocks);
53 AssertRCReturn(vrc, vrc);
54
55 for (uint32_t i = 0; i < cBlocks; i++)
56 {
57 uint32_t cbBlock;
58 vrc = SSMR3GetU32(pSSM, &cbBlock);
59 AssertRCBreak(vrc);
60
61 uint32_t typeOfBlock;
62 vrc = SSMR3GetU32(pSSM, &typeOfBlock);
63 AssertRCBreak(vrc);
64
65 LogFlowFunc(("[%d] type %d, size %d bytes\n", i, typeOfBlock, cbBlock));
66
67 if (typeOfBlock == u32Type)
68 {
69 if (cbBlock > 2 * sizeof(uint32_t))
70 {
71 cbData = cbBlock - 2 * sizeof(uint32_t);
72 pu8Data = (uint8_t *)RTMemAlloc(cbData);
73 if (pu8Data == NULL)
74 {
75 vrc = VERR_NO_MEMORY;
76 break;
77 }
78
79 vrc = SSMR3GetU32(pSSM, &u32Width);
80 AssertRCBreak(vrc);
81 vrc = SSMR3GetU32(pSSM, &u32Height);
82 AssertRCBreak(vrc);
83 vrc = SSMR3GetMem(pSSM, pu8Data, cbData);
84 AssertRCBreak(vrc);
85 }
86 else
87 {
88 /* No saved state data. */
89 vrc = VERR_NOT_SUPPORTED;
90 }
91
92 break;
93 }
94 else
95 {
96 /* displaySSMSaveScreenshot did not write any data, if
97 * cbBlock was == 2 * sizeof (uint32_t).
98 */
99 if (cbBlock > 2 * sizeof (uint32_t))
100 {
101 vrc = SSMR3Skip(pSSM, cbBlock);
102 AssertRCBreak(vrc);
103 }
104 }
105 }
106 }
107 else
108 {
109 vrc = VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
110 }
111 }
112
113 SSMR3Close(pSSM);
114 }
115
116 if (RT_SUCCESS(vrc))
117 {
118 if (u32Type == 0 && cbData % 4 != 0)
119 {
120 /* Bitmap is 32bpp, so data is invalid. */
121 vrc = VERR_SSM_UNEXPECTED_DATA;
122 }
123 }
124
125 if (RT_SUCCESS(vrc))
126 {
127 *ppu8Data = pu8Data;
128 *pcbData = cbData;
129 *pu32Width = u32Width;
130 *pu32Height = u32Height;
131 LogFlowFunc(("cbData %d, u32Width %d, u32Height %d\n", cbData, u32Width, u32Height));
132 }
133
134 LogFlowFunc(("vrc %Rrc\n", vrc));
135 return vrc;
136}
137
138void freeSavedDisplayScreenshot(uint8_t *pu8Data)
139{
140 /* @todo not necessary when caching is implemented. */
141 RTMemFree(pu8Data);
142}
143
144int readSavedGuestScreenInfo(const Utf8Str &strStateFilePath, uint32_t u32ScreenId,
145 uint32_t *pu32OriginX, uint32_t *pu32OriginY,
146 uint32_t *pu32Width, uint32_t *pu32Height, uint16_t *pu16Flags)
147{
148 LogFlowFunc(("u32ScreenId = %d [%s]\n", u32ScreenId, strStateFilePath.c_str()));
149
150 /* @todo cache read data */
151 if (strStateFilePath.isEmpty())
152 {
153 /* No saved state data. */
154 return VERR_NOT_SUPPORTED;
155 }
156
157 PSSMHANDLE pSSM;
158 int vrc = SSMR3Open(strStateFilePath.c_str(), 0 /*fFlags*/, &pSSM);
159 if (RT_SUCCESS(vrc))
160 {
161 uint32_t uVersion;
162 vrc = SSMR3Seek(pSSM, "DisplayData", 0 /*iInstance*/, &uVersion);
163 if (RT_SUCCESS(vrc))
164 {
165 if ( uVersion == sSSMDisplayVer2
166 || uVersion == sSSMDisplayVer3)
167 {
168 uint32_t cMonitors;
169 SSMR3GetU32(pSSM, &cMonitors);
170 if (u32ScreenId > cMonitors)
171 {
172 vrc = VERR_INVALID_PARAMETER;
173 }
174 else
175 {
176 if (uVersion == sSSMDisplayVer2)
177 {
178 /* Skip all previous monitors, each 5 uint32_t, and the first 3 uint32_t entries. */
179 SSMR3Skip(pSSM, u32ScreenId * 5 * sizeof(uint32_t) + 3 * sizeof(uint32_t));
180 SSMR3GetU32(pSSM, pu32Width);
181 SSMR3GetU32(pSSM, pu32Height);
182 *pu32OriginX = 0;
183 *pu32OriginY = 0;
184 *pu16Flags = VBVA_SCREEN_F_ACTIVE;
185 }
186 else
187 {
188 Assert(uVersion == sSSMDisplayVer3);
189 /* Skip all previous monitors, each 8 uint32_t, and the first 3 uint32_t entries. */
190 SSMR3Skip(pSSM, u32ScreenId * 8 * sizeof(uint32_t) + 3 * sizeof(uint32_t));
191 SSMR3GetU32(pSSM, pu32Width);
192 SSMR3GetU32(pSSM, pu32Height);
193 SSMR3GetU32(pSSM, pu32OriginX);
194 SSMR3GetU32(pSSM, pu32OriginY);
195 uint32_t u32Flags = 0;
196 SSMR3GetU32(pSSM, &u32Flags);
197 *pu16Flags = (uint16_t)u32Flags;
198 }
199 }
200 }
201 else
202 {
203 vrc = VERR_NOT_SUPPORTED;
204 }
205 }
206
207 SSMR3Close(pSSM);
208 }
209
210 LogFlowFunc(("vrc %Rrc\n", vrc));
211 return vrc;
212}
213
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use