VirtualBox

source: vbox/trunk/src/VBox/Debugger/VBoxDbgBase.cpp@ 12883

Last change on this file since 12883 was 12878, checked in by vboxsync, 17 years ago

Debugger: log groups and console 'exit' fix.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
Line 
1/* $Id: VBoxDbgBase.cpp 12878 2008-10-01 21:11:52Z vboxsync $ */
2/** @file
3 * VBox Debugger GUI - Base class.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.215389.xyz. 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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22/*******************************************************************************
23* Header Files *
24*******************************************************************************/
25#define LOG_GROUP LOG_GROUP_DBGG
26#include <VBox/err.h>
27#include <iprt/assert.h>
28#include "VBoxDbgBase.h"
29
30
31
32VBoxDbgBase::VBoxDbgBase(PVM pVM)
33 : m_pVM(pVM), m_hGUIThread(RTThreadNativeSelf())
34{
35 /*
36 * Register
37 */
38 int rc = VMR3AtStateRegister(pVM, atStateChange, this);
39 AssertRC(rc);
40}
41
42
43VBoxDbgBase::~VBoxDbgBase()
44{
45 /*
46 * If the VM is still around.
47 */
48 /** @todo need to do some locking here? */
49 PVM pVM = (PVM)ASMAtomicXchgPtr((void * volatile *)&m_pVM, NULL);
50 if (pVM)
51 {
52 int rc = VMR3AtStateDeregister(pVM, atStateChange, this);
53 AssertRC(rc);
54 }
55}
56
57
58int
59VBoxDbgBase::stamReset(const QString &rPat)
60{
61#ifdef VBOXDBG_USE_QT4
62 QByteArray Utf8Array = rPat.toUtf8();
63 const char *pszPat = !rPat.isEmpty() ? Utf8Array.constData() : NULL;
64#else
65 const char *pszPat = !rPat.isEmpty() ? rPat : NULL;
66#endif
67 if (m_pVM)
68 return STAMR3Reset(m_pVM, pszPat);
69 return VERR_INVALID_HANDLE;
70}
71
72
73int
74VBoxDbgBase::stamEnum(const QString &rPat, PFNSTAMR3ENUM pfnEnum, void *pvUser)
75{
76#ifdef VBOXDBG_USE_QT4
77 QByteArray Utf8Array = rPat.toUtf8();
78 const char *pszPat = !rPat.isEmpty() ? Utf8Array.constData() : NULL;
79#else
80 const char *pszPat = !rPat.isEmpty() ? rPat : NULL;
81#endif
82 if (m_pVM)
83 return STAMR3Enum(m_pVM, pszPat, pfnEnum, pvUser);
84 return VERR_INVALID_HANDLE;
85}
86
87
88int
89VBoxDbgBase::dbgcCreate(PDBGCBACK pBack, unsigned fFlags)
90{
91 if (m_pVM)
92 return DBGCCreate(m_pVM, pBack, fFlags);
93 return VERR_INVALID_HANDLE;
94}
95
96
97/*static*/ DECLCALLBACK(void)
98VBoxDbgBase::atStateChange(PVM pVM, VMSTATE enmState, VMSTATE /*enmOldState*/, void *pvUser)
99{
100 VBoxDbgBase *pThis = (VBoxDbgBase *)pvUser;
101 switch (enmState)
102 {
103 case VMSTATE_TERMINATED:
104 /** @todo need to do some locking here? */
105 if (ASMAtomicCmpXchgPtr((void * volatile *)&pThis->m_pVM, NULL, pVM))
106 pThis->sigTerminated();
107 break;
108
109 default:
110 break;
111 }
112}
113
114
115void
116VBoxDbgBase::sigTerminated()
117{
118}
119
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette