VirtualBox

source: vbox/trunk/src/VBox/Additions/haiku/VBoxTray/VBoxDisplay.cpp

Last change on this file was 98103, checked in by vboxsync, 17 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.2 KB
Line 
1/* $Id: VBoxDisplay.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * VBoxDisplayService, Haiku Guest Additions, implementation.
4 */
5
6/*
7 * Copyright (C) 2012-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28/*
29 * This code is based on:
30 *
31 * VirtualBox Guest Additions for Haiku.
32 * Copyright (c) 2011 Mike Smith <mike@scgtrp.net>
33 * François Revol <revol@free.fr>
34 *
35 * Permission is hereby granted, free of charge, to any person
36 * obtaining a copy of this software and associated documentation
37 * files (the "Software"), to deal in the Software without
38 * restriction, including without limitation the rights to use,
39 * copy, modify, merge, publish, distribute, sublicense, and/or sell
40 * copies of the Software, and to permit persons to whom the
41 * Software is furnished to do so, subject to the following
42 * conditions:
43 *
44 * The above copyright notice and this permission notice shall be
45 * included in all copies or substantial portions of the Software.
46 *
47 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
48 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
49 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
50 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
51 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
52 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
53 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
54 * OTHER DEALINGS IN THE SOFTWARE.
55 */
56
57#include <stdio.h>
58#include <stdlib.h>
59#include <new>
60#include <DataIO.h>
61#include <Message.h>
62#include <TranslationUtils.h>
63#include <TranslatorFormats.h>
64#include <TranslatorRoster.h>
65#include <String.h>
66
67#include "VBoxGuestApplication.h"
68#include "VBoxDisplay.h"
69#include <VBoxGuestInternal.h>
70#include "../VBoxVideo/common/VBoxVideo_common.h"
71
72#include <iprt/mem.h>
73#include <VBox/log.h>
74
75#ifdef DEBUG_ramshankar
76# undef Log
77# define Log(x) printf x
78# undef LogRel
79# define LogRel(x) printf x
80# undef LogRelFlowFunc
81# define LogRelFlowFunc(x) printf x
82#endif
83
84VBoxDisplayService::VBoxDisplayService()
85 : BHandler("VBoxDisplayService"),
86 fClientId(-1),
87 fServiceThreadID(-1),
88 fExiting(false),
89 fScreen(B_MAIN_SCREEN_ID)
90{
91}
92
93
94VBoxDisplayService::~VBoxDisplayService()
95{
96}
97
98
99void VBoxDisplayService::Start()
100{
101 status_t err;
102 err = fServiceThreadID = spawn_thread(_ServiceThreadNub, "VBoxDisplayService", B_NORMAL_PRIORITY, this);
103 if (err >= B_OK)
104 resume_thread(fServiceThreadID);
105 else
106 LogRel(("VBoxDisplayService: Error starting service thread: %s\n", strerror(err)));
107}
108
109
110void VBoxDisplayService::MessageReceived(BMessage *message)
111{
112 if (message->what == B_QUIT_REQUESTED)
113 fExiting = true;
114 else
115 BHandler::MessageReceived(message);
116}
117
118
119status_t VBoxDisplayService::_ServiceThreadNub(void *_this)
120{
121 VBoxDisplayService *service = (VBoxDisplayService *)_this;
122 return service->_ServiceThread();
123}
124
125
126status_t VBoxDisplayService::_ServiceThread()
127{
128 LogFlow(("VBoxDisplayService::_ServiceThread"));
129
130 VbglR3CtlFilterMask(VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST, 0);
131 VbglR3SetGuestCaps(VMMDEV_GUEST_SUPPORTS_GRAPHICS, 0);
132 for (;;)
133 {
134 uint32_t events;
135 int rc = VbglR3WaitEvent(VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST, 5000, &events);
136 if ( rc == VERR_TIMEOUT
137 || rc == VERR_INTERRUPTED)
138 continue;
139
140 if (RT_SUCCESS(rc))
141 {
142 uint32_t cx, cy, cBits, iDisplay;
143 int rc2 = VbglR3GetDisplayChangeRequest(&cx, &cy, &cBits, &iDisplay, NULL, NULL, NULL, NULL, true);
144 LogFlow(("rc2=%d screen %d size changed (%d, %d, %d)\n", rc2, iDisplay, cx, cy, cBits));
145
146 if (RT_SUCCESS(rc2))
147 {
148 display_mode mode;
149 fScreen.GetMode(&mode);
150 if (cBits == 0)
151 cBits = get_depth_for_color_space(mode.space);
152
153 mode.timing.h_display = cx;
154 mode.timing.v_display = cy;
155 mode.space = get_color_space_for_depth(cBits);
156 mode.virtual_width = cx;
157 mode.virtual_height = cy;
158
159 /*= {
160 {0, cx, 0, 0, cBits * cx / 8, cy, 0, 0, cBits * cy / 8, 0},
161 get_color_space_for_depth(cBits),
162 cx, cy, 0, 0, 0
163 };*/
164
165 fScreen.SetMode(&mode, false);
166 }
167 }
168 else
169 fExiting = true;
170
171 LogFlow(("processed host event rc = %d\n", rc));
172 if (fExiting)
173 break;
174 }
175 return 0;
176}
177
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use