VirtualBox

source: vbox/trunk/src/VBox/VMM/DBGFLog.cpp@ 13762

Last change on this file since 13762 was 13755, checked in by vboxsync, 16 years ago

Started with VM request API changes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.8 KB
Line 
1/* $Id: DBGFLog.cpp 13755 2008-11-03 15:49:06Z vboxsync $ */
2/** @file
3 * DBGF - Debugger Facility, Log Manager.
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.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 * 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/*******************************************************************************
24* Header Files *
25*******************************************************************************/
26#include <VBox/vmapi.h>
27#include <VBox/vmm.h>
28#include <VBox/dbgf.h>
29#include <VBox/log.h>
30#include <VBox/err.h>
31#include <iprt/assert.h>
32
33
34/*******************************************************************************
35* Internal Functions *
36*******************************************************************************/
37static DECLCALLBACK(int) dbgfR3LogModifyGroups(PVM pVM, const char *pszGroupSettings);
38static DECLCALLBACK(int) dbgfR3LogModifyFlags(PVM pVM, const char *pszFlagSettings);
39static DECLCALLBACK(int) dbgfR3LogModifyDestinations(PVM pVM, const char *pszDestSettings);
40
41
42/**
43 * Changes the logger group settings.
44 *
45 * @returns VBox status code.
46 * @param pVM The VM handle.
47 * @param pszGroupSettings The group settings string. (VBOX_LOG)
48 */
49VMMR3DECL(int) DBGFR3LogModifyGroups(PVM pVM, const char *pszGroupSettings)
50{
51 AssertReturn(VALID_PTR(pVM), VERR_INVALID_POINTER);
52 AssertReturn(VALID_PTR(pszGroupSettings), VERR_INVALID_POINTER);
53
54 PVMREQ pReq;
55 int rc = VMR3ReqCall(pVM, VMREQDEST_ALL, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3LogModifyGroups, 2, pVM, pszGroupSettings);
56 if (VBOX_SUCCESS(rc))
57 rc = pReq->iStatus;
58 VMR3ReqFree(pReq);
59 return rc;
60}
61
62
63/**
64 * EMT worker for DBGFR3LogModifyGroups.
65 *
66 * @returns VBox status code.
67 * @param pVM The VM handle.
68 * @param pszGroupSettings The group settings string. (VBOX_LOG)
69 */
70static DECLCALLBACK(int) dbgfR3LogModifyGroups(PVM pVM, const char *pszGroupSettings)
71{
72 int rc = RTLogGroupSettings(NULL, pszGroupSettings);
73 if (VBOX_SUCCESS(rc))
74 rc = VMMR3UpdateLoggers(pVM);
75 return rc;
76}
77
78
79/**
80 * Changes the logger flag settings.
81 *
82 * @returns VBox status code.
83 * @param pVM The VM handle.
84 * @param pszFlagSettings The group settings string. (VBOX_LOG_FLAGS)
85 */
86VMMR3DECL(int) DBGFR3LogModifyFlags(PVM pVM, const char *pszFlagSettings)
87{
88 AssertReturn(VALID_PTR(pVM), VERR_INVALID_POINTER);
89 AssertReturn(VALID_PTR(pszFlagSettings), VERR_INVALID_POINTER);
90
91 PVMREQ pReq;
92 int rc = VMR3ReqCall(pVM, VMREQDEST_ALL, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3LogModifyFlags, 2, pVM, pszFlagSettings);
93 if (VBOX_SUCCESS(rc))
94 rc = pReq->iStatus;
95 VMR3ReqFree(pReq);
96 return rc;
97}
98
99
100/**
101 * EMT worker for DBGFR3LogModifyFlags.
102 *
103 * @returns VBox status code.
104 * @param pVM The VM handle.
105 * @param pszFlagSettings The group settings string. (VBOX_LOG_FLAGS)
106 */
107static DECLCALLBACK(int) dbgfR3LogModifyFlags(PVM pVM, const char *pszFlagSettings)
108{
109 int rc = RTLogFlags(NULL, pszFlagSettings);
110 if (VBOX_SUCCESS(rc))
111 rc = VMMR3UpdateLoggers(pVM);
112 return rc;
113}
114
115
116/**
117 * Changes the logger destination settings.
118 *
119 * @returns VBox status code.
120 * @param pVM The VM handle.
121 * @param pszDestSettings The destination settings string. (VBOX_LOG_DEST)
122 */
123VMMR3DECL(int) DBGFR3LogModifyDestinations(PVM pVM, const char *pszDestSettings)
124{
125 AssertReturn(VALID_PTR(pVM), VERR_INVALID_POINTER);
126 AssertReturn(VALID_PTR(pszDestSettings), VERR_INVALID_POINTER);
127
128 PVMREQ pReq;
129 int rc = VMR3ReqCall(pVM, VMREQDEST_ALL, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3LogModifyDestinations, 2, pVM, pszDestSettings);
130 if (VBOX_SUCCESS(rc))
131 rc = pReq->iStatus;
132 VMR3ReqFree(pReq);
133 return rc;
134}
135
136
137/**
138 * EMT worker for DBGFR3LogModifyFlags.
139 *
140 * @returns VBox status code.
141 * @param pVM The VM handle.
142 * @param pszDestSettings The destination settings string. (VBOX_LOG_DEST)
143 */
144static DECLCALLBACK(int) dbgfR3LogModifyDestinations(PVM pVM, const char *pszDestSettings)
145{
146 int rc = VERR_NOT_IMPLEMENTED; //RTLogDestination(NULL, pszDestSettings);
147 if (VBOX_SUCCESS(rc))
148 rc = VMMR3UpdateLoggers(pVM);
149 return rc;
150}
151
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use