1 | /* $Id: VBoxDbgBase.cpp 57358 2015-08-14 15:16:38Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Debugger GUI - Base classes.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2015 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 |
|
---|
19 | /*********************************************************************************************************************************
|
---|
20 | * Header Files *
|
---|
21 | *********************************************************************************************************************************/
|
---|
22 | #define LOG_GROUP LOG_GROUP_DBGG
|
---|
23 | #include <VBox/err.h>
|
---|
24 | #include <iprt/asm.h>
|
---|
25 | #include <iprt/assert.h>
|
---|
26 | #include <limits.h>
|
---|
27 | #include "VBoxDbgBase.h"
|
---|
28 | #include "VBoxDbgGui.h"
|
---|
29 |
|
---|
30 | #include <QApplication>
|
---|
31 | #include <QWidgetList>
|
---|
32 |
|
---|
33 |
|
---|
34 |
|
---|
35 | VBoxDbgBase::VBoxDbgBase(VBoxDbgGui *a_pDbgGui)
|
---|
36 | : m_pDbgGui(a_pDbgGui), m_pUVM(NULL), m_hGUIThread(RTThreadNativeSelf())
|
---|
37 | {
|
---|
38 | /*
|
---|
39 | * Register
|
---|
40 | */
|
---|
41 | m_pUVM = a_pDbgGui->getUvmHandle();
|
---|
42 | if (m_pUVM)
|
---|
43 | {
|
---|
44 | VMR3RetainUVM(m_pUVM);
|
---|
45 |
|
---|
46 | int rc = VMR3AtStateRegister(m_pUVM, atStateChange, this);
|
---|
47 | AssertRC(rc);
|
---|
48 | }
|
---|
49 | }
|
---|
50 |
|
---|
51 |
|
---|
52 | VBoxDbgBase::~VBoxDbgBase()
|
---|
53 | {
|
---|
54 | /*
|
---|
55 | * If the VM is still around.
|
---|
56 | */
|
---|
57 | /** @todo need to do some locking here? */
|
---|
58 | PUVM pUVM = ASMAtomicXchgPtrT(&m_pUVM, NULL, PUVM);
|
---|
59 | if (pUVM)
|
---|
60 | {
|
---|
61 | int rc = VMR3AtStateDeregister(pUVM, atStateChange, this);
|
---|
62 | AssertRC(rc);
|
---|
63 |
|
---|
64 | VMR3ReleaseUVM(pUVM);
|
---|
65 | }
|
---|
66 | }
|
---|
67 |
|
---|
68 |
|
---|
69 | int
|
---|
70 | VBoxDbgBase::stamReset(const QString &rPat)
|
---|
71 | {
|
---|
72 | QByteArray Utf8Array = rPat.toUtf8();
|
---|
73 | const char *pszPat = !rPat.isEmpty() ? Utf8Array.constData() : NULL;
|
---|
74 | PUVM pUVM = m_pUVM;
|
---|
75 | if ( pUVM
|
---|
76 | && VMR3GetStateU(pUVM) < VMSTATE_DESTROYING)
|
---|
77 | return STAMR3Reset(pUVM, pszPat);
|
---|
78 | return VERR_INVALID_HANDLE;
|
---|
79 | }
|
---|
80 |
|
---|
81 |
|
---|
82 | int
|
---|
83 | VBoxDbgBase::stamEnum(const QString &rPat, PFNSTAMR3ENUM pfnEnum, void *pvUser)
|
---|
84 | {
|
---|
85 | QByteArray Utf8Array = rPat.toUtf8();
|
---|
86 | const char *pszPat = !rPat.isEmpty() ? Utf8Array.constData() : NULL;
|
---|
87 | PUVM pUVM = m_pUVM;
|
---|
88 | if ( pUVM
|
---|
89 | && VMR3GetStateU(pUVM) < VMSTATE_DESTROYING)
|
---|
90 | return STAMR3Enum(pUVM, pszPat, pfnEnum, pvUser);
|
---|
91 | return VERR_INVALID_HANDLE;
|
---|
92 | }
|
---|
93 |
|
---|
94 |
|
---|
95 | int
|
---|
96 | VBoxDbgBase::dbgcCreate(PDBGCBACK pBack, unsigned fFlags)
|
---|
97 | {
|
---|
98 | PUVM pUVM = m_pUVM;
|
---|
99 | if ( pUVM
|
---|
100 | && VMR3GetStateU(pUVM) < VMSTATE_DESTROYING)
|
---|
101 | return DBGCCreate(pUVM, pBack, fFlags);
|
---|
102 | return VERR_INVALID_HANDLE;
|
---|
103 | }
|
---|
104 |
|
---|
105 |
|
---|
106 | /*static*/ DECLCALLBACK(void)
|
---|
107 | VBoxDbgBase::atStateChange(PUVM pUVM, VMSTATE enmState, VMSTATE /*enmOldState*/, void *pvUser)
|
---|
108 | {
|
---|
109 | VBoxDbgBase *pThis = (VBoxDbgBase *)pvUser; NOREF(pUVM);
|
---|
110 | switch (enmState)
|
---|
111 | {
|
---|
112 | case VMSTATE_TERMINATED:
|
---|
113 | {
|
---|
114 | /** @todo need to do some locking here? */
|
---|
115 | PUVM pUVM2 = ASMAtomicXchgPtrT(&pThis->m_pUVM, NULL, PUVM);
|
---|
116 | if (pUVM2)
|
---|
117 | {
|
---|
118 | Assert(pUVM2 == pUVM);
|
---|
119 | pThis->sigTerminated();
|
---|
120 | VMR3ReleaseUVM(pUVM2);
|
---|
121 | }
|
---|
122 | break;
|
---|
123 | }
|
---|
124 |
|
---|
125 | case VMSTATE_DESTROYING:
|
---|
126 | pThis->sigDestroying();
|
---|
127 | break;
|
---|
128 |
|
---|
129 | default:
|
---|
130 | break;
|
---|
131 | }
|
---|
132 | }
|
---|
133 |
|
---|
134 |
|
---|
135 | void
|
---|
136 | VBoxDbgBase::sigDestroying()
|
---|
137 | {
|
---|
138 | }
|
---|
139 |
|
---|
140 |
|
---|
141 | void
|
---|
142 | VBoxDbgBase::sigTerminated()
|
---|
143 | {
|
---|
144 | }
|
---|
145 |
|
---|
146 |
|
---|
147 |
|
---|
148 |
|
---|
149 | //
|
---|
150 | //
|
---|
151 | //
|
---|
152 | // V B o x D b g B a s e W i n d o w
|
---|
153 | // V B o x D b g B a s e W i n d o w
|
---|
154 | // V B o x D b g B a s e W i n d o w
|
---|
155 | //
|
---|
156 | //
|
---|
157 | //
|
---|
158 |
|
---|
159 | unsigned VBoxDbgBaseWindow::m_cxBorder = 0;
|
---|
160 | unsigned VBoxDbgBaseWindow::m_cyBorder = 0;
|
---|
161 |
|
---|
162 |
|
---|
163 | VBoxDbgBaseWindow::VBoxDbgBaseWindow(VBoxDbgGui *a_pDbgGui, QWidget *a_pParent)
|
---|
164 | : QWidget(a_pParent, Qt::Window), VBoxDbgBase(a_pDbgGui), m_fPolished(false),
|
---|
165 | m_x(INT_MAX), m_y(INT_MAX), m_cx(0), m_cy(0)
|
---|
166 | {
|
---|
167 | }
|
---|
168 |
|
---|
169 |
|
---|
170 | VBoxDbgBaseWindow::~VBoxDbgBaseWindow()
|
---|
171 | {
|
---|
172 |
|
---|
173 | }
|
---|
174 |
|
---|
175 |
|
---|
176 | void
|
---|
177 | VBoxDbgBaseWindow::vShow()
|
---|
178 | {
|
---|
179 | show();
|
---|
180 | /** @todo this ain't working right. HELP! */
|
---|
181 | setWindowState(windowState() & ~Qt::WindowMinimized);
|
---|
182 | //activateWindow();
|
---|
183 | //setFocus();
|
---|
184 | vPolishSizeAndPos();
|
---|
185 | }
|
---|
186 |
|
---|
187 |
|
---|
188 | void
|
---|
189 | VBoxDbgBaseWindow::vReposition(int a_x, int a_y, unsigned a_cx, unsigned a_cy, bool a_fResize)
|
---|
190 | {
|
---|
191 | if (a_fResize)
|
---|
192 | {
|
---|
193 | m_cx = a_cx;
|
---|
194 | m_cy = a_cy;
|
---|
195 |
|
---|
196 | QSize BorderSize = frameSize() - size();
|
---|
197 | if (BorderSize == QSize(0,0))
|
---|
198 | BorderSize = vGuessBorderSizes();
|
---|
199 |
|
---|
200 | resize(a_cx - BorderSize.width(), a_cy - BorderSize.height());
|
---|
201 | }
|
---|
202 |
|
---|
203 | m_x = a_x;
|
---|
204 | m_y = a_y;
|
---|
205 | move(a_x, a_y);
|
---|
206 | }
|
---|
207 |
|
---|
208 |
|
---|
209 | bool
|
---|
210 | VBoxDbgBaseWindow::event(QEvent *a_pEvt)
|
---|
211 | {
|
---|
212 | bool fRc = QWidget::event(a_pEvt);
|
---|
213 | vPolishSizeAndPos();
|
---|
214 | return fRc;
|
---|
215 | }
|
---|
216 |
|
---|
217 |
|
---|
218 | void
|
---|
219 | VBoxDbgBaseWindow::vPolishSizeAndPos()
|
---|
220 | {
|
---|
221 | /* Ignore if already done or no size set. */
|
---|
222 | if ( m_fPolished
|
---|
223 | || (m_x == INT_MAX && m_y == INT_MAX))
|
---|
224 | return;
|
---|
225 |
|
---|
226 | QSize BorderSize = frameSize() - size();
|
---|
227 | if (BorderSize != QSize(0,0))
|
---|
228 | m_fPolished = true;
|
---|
229 |
|
---|
230 | vReposition(m_x, m_y, m_cx, m_cy, m_cx || m_cy);
|
---|
231 | }
|
---|
232 |
|
---|
233 |
|
---|
234 | QSize
|
---|
235 | VBoxDbgBaseWindow::vGuessBorderSizes()
|
---|
236 | {
|
---|
237 | #ifdef Q_WS_X11 /* (from the qt gui) */
|
---|
238 | /* only once. */
|
---|
239 | if (!m_cxBorder && !m_cyBorder)
|
---|
240 | {
|
---|
241 |
|
---|
242 | /* On X11, there is no way to determine frame geometry (including WM
|
---|
243 | * decorations) before the widget is shown for the first time. Stupidly
|
---|
244 | * enumerate other top level widgets to find the thickest frame. The code
|
---|
245 | * is based on the idea taken from QDialog::adjustPositionInternal(). */
|
---|
246 |
|
---|
247 | int extraw = 0, extrah = 0;
|
---|
248 |
|
---|
249 | QWidgetList list = QApplication::topLevelWidgets();
|
---|
250 | QListIterator<QWidget*> it (list);
|
---|
251 | while ((extraw == 0 || extrah == 0) && it.hasNext())
|
---|
252 | {
|
---|
253 | int framew, frameh;
|
---|
254 | QWidget *current = it.next();
|
---|
255 | if (!current->isVisible())
|
---|
256 | continue;
|
---|
257 |
|
---|
258 | framew = current->frameGeometry().width() - current->width();
|
---|
259 | frameh = current->frameGeometry().height() - current->height();
|
---|
260 |
|
---|
261 | extraw = qMax (extraw, framew);
|
---|
262 | extrah = qMax (extrah, frameh);
|
---|
263 | }
|
---|
264 |
|
---|
265 | if (extraw || extrah)
|
---|
266 | {
|
---|
267 | m_cxBorder = extraw;
|
---|
268 | m_cyBorder = extrah;
|
---|
269 | }
|
---|
270 | }
|
---|
271 | #endif /* X11 */
|
---|
272 | return QSize(m_cxBorder, m_cyBorder);
|
---|
273 | }
|
---|
274 |
|
---|