VirtualBox

source: vbox/trunk/src/VBox/Devices/Serial/DrvRawFile.cpp@ 40754

Last change on this file since 40754 was 40282, checked in by vboxsync, 12 years ago

*: gcc-4.7: ~0 => ~0U in initializers (warning: narrowing conversion of -1' from int' to `unsigned int' inside { } is ill-formed in C++11 [-Wnarrowing])

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.1 KB
Line 
1/* $Id: DrvRawFile.cpp 40282 2012-02-28 21:02:40Z vboxsync $ */
2/** @file
3 * VBox stream drivers - Raw file output.
4 */
5
6/*
7 * Copyright (C) 2006-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
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#define LOG_GROUP LOG_GROUP_DEFAULT
23#include <VBox/vmm/pdmdrv.h>
24#include <iprt/assert.h>
25#include <iprt/file.h>
26#include <iprt/mem.h>
27#include <iprt/semaphore.h>
28#include <iprt/stream.h>
29#include <iprt/string.h>
30#include <iprt/uuid.h>
31
32#include "VBoxDD.h"
33
34
35/*******************************************************************************
36* Defined Constants And Macros *
37*******************************************************************************/
38/** Converts a pointer to DRVRAWFILE::IMedia to a PDRVRAWFILE. */
39#define PDMISTREAM_2_DRVRAWFILE(pInterface) ( (PDRVRAWFILE)((uintptr_t)pInterface - RT_OFFSETOF(DRVRAWFILE, IStream)) )
40
41
42/*******************************************************************************
43* Structures and Typedefs *
44*******************************************************************************/
45/**
46 * Raw file output driver instance data.
47 *
48 * @implements PDMISTREAM
49 */
50typedef struct DRVRAWFILE
51{
52 /** The stream interface. */
53 PDMISTREAM IStream;
54 /** Pointer to the driver instance. */
55 PPDMDRVINS pDrvIns;
56 /** Pointer to the file name. (Freed by MM) */
57 char *pszLocation;
58 /** Flag whether VirtualBox represents the server or client side. */
59 RTFILE hOutputFile;
60} DRVRAWFILE, *PDRVRAWFILE;
61
62
63
64/* -=-=-=-=- PDMISTREAM -=-=-=-=- */
65
66/** @copydoc PDMISTREAM::pfnWrite */
67static DECLCALLBACK(int) drvRawFileWrite(PPDMISTREAM pInterface, const void *pvBuf, size_t *pcbWrite)
68{
69 int rc = VINF_SUCCESS;
70 PDRVRAWFILE pThis = PDMISTREAM_2_DRVRAWFILE(pInterface);
71 LogFlow(("%s: pvBuf=%p *pcbWrite=%#x (%s)\n", __FUNCTION__, pvBuf, *pcbWrite, pThis->pszLocation));
72
73 Assert(pvBuf);
74 if (pThis->hOutputFile != NIL_RTFILE)
75 {
76 size_t cbWritten;
77 rc = RTFileWrite(pThis->hOutputFile, pvBuf, *pcbWrite, &cbWritten);
78#if 0
79 /* don't flush here, takes too long and we will loose characters */
80 if (RT_SUCCESS(rc))
81 RTFileFlush(pThis->hOutputFile);
82#endif
83 *pcbWrite = cbWritten;
84 }
85
86 LogFlow(("%s: returns %Rrc\n", __FUNCTION__, rc));
87 return rc;
88}
89
90/* -=-=-=-=- PDMIBASE -=-=-=-=- */
91
92/**
93 * @interface_method_impl{PDMIBASE,pfnQueryInterface}
94 */
95static DECLCALLBACK(void *) drvRawFileQueryInterface(PPDMIBASE pInterface, const char *pszIID)
96{
97 PPDMDRVINS pDrvIns = PDMIBASE_2_PDMDRV(pInterface);
98 PDRVRAWFILE pThis = PDMINS_2_DATA(pDrvIns, PDRVRAWFILE);
99
100 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIBASE, &pDrvIns->IBase);
101 PDMIBASE_RETURN_INTERFACE(pszIID, PDMISTREAM, &pThis->IStream);
102 return NULL;
103}
104
105/* -=-=-=-=- PDMDRVREG -=-=-=-=- */
106
107
108/**
109 * Power off a raw output stream driver instance.
110 *
111 * This does most of the destruction work, to avoid ordering dependencies.
112 *
113 * @param pDrvIns The driver instance data.
114 */
115static DECLCALLBACK(void) drvRawFilePowerOff(PPDMDRVINS pDrvIns)
116{
117 PDRVRAWFILE pThis = PDMINS_2_DATA(pDrvIns, PDRVRAWFILE);
118 LogFlow(("%s: %s\n", __FUNCTION__, pThis->pszLocation));
119
120 RTFileClose(pThis->hOutputFile);
121 pThis->hOutputFile = NIL_RTFILE;
122}
123
124
125/**
126 * Destruct a raw output stream driver instance.
127 *
128 * Most VM resources are freed by the VM. This callback is provided so that
129 * any non-VM resources can be freed correctly.
130 *
131 * @param pDrvIns The driver instance data.
132 */
133static DECLCALLBACK(void) drvRawFileDestruct(PPDMDRVINS pDrvIns)
134{
135 PDRVRAWFILE pThis = PDMINS_2_DATA(pDrvIns, PDRVRAWFILE);
136 LogFlow(("%s: %s\n", __FUNCTION__, pThis->pszLocation));
137 PDMDRV_CHECK_VERSIONS_RETURN_VOID(pDrvIns);
138
139 if (pThis->pszLocation)
140 MMR3HeapFree(pThis->pszLocation);
141
142 RTFileClose(pThis->hOutputFile);
143 pThis->hOutputFile = NIL_RTFILE;
144}
145
146
147/**
148 * Construct a raw output stream driver instance.
149 *
150 * @copydoc FNPDMDRVCONSTRUCT
151 */
152static DECLCALLBACK(int) drvRawFileConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags)
153{
154 PDRVRAWFILE pThis = PDMINS_2_DATA(pDrvIns, PDRVRAWFILE);
155 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns);
156
157 /*
158 * Init the static parts.
159 */
160 pThis->pDrvIns = pDrvIns;
161 pThis->pszLocation = NULL;
162 pThis->hOutputFile = NIL_RTFILE;
163 /* IBase */
164 pDrvIns->IBase.pfnQueryInterface = drvRawFileQueryInterface;
165 /* IStream */
166 pThis->IStream.pfnWrite = drvRawFileWrite;
167
168 /*
169 * Read the configuration.
170 */
171 if (!CFGMR3AreValuesValid(pCfg, "Location\0"))
172 AssertFailedReturn(VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES);
173
174 int rc = CFGMR3QueryStringAlloc(pCfg, "Location", &pThis->pszLocation);
175 if (RT_FAILURE(rc))
176 AssertMsgFailedReturn(("Configuration error: query \"Location\" resulted in %Rrc.\n", rc), rc);
177
178 /*
179 * Open the raw file.
180 */
181 rc = RTFileOpen(&pThis->hOutputFile, pThis->pszLocation, RTFILE_O_WRITE | RTFILE_O_CREATE_REPLACE | RTFILE_O_DENY_NONE);
182 if (RT_FAILURE(rc))
183 {
184 LogRel(("RawFile%d: CreateFile failed rc=%Rrc\n", pDrvIns->iInstance));
185 return PDMDrvHlpVMSetError(pDrvIns, rc, RT_SRC_POS, N_("RawFile#%d failed to create the raw output file %s"), pDrvIns->iInstance, pThis->pszLocation);
186 }
187
188 LogFlow(("drvRawFileConstruct: location %s\n", pThis->pszLocation));
189 LogRel(("RawFile#%u: location %s\n", pDrvIns->iInstance, pThis->pszLocation));
190 return VINF_SUCCESS;
191}
192
193
194/**
195 * Raw file driver registration record.
196 */
197const PDMDRVREG g_DrvRawFile =
198{
199 /* u32Version */
200 PDM_DRVREG_VERSION,
201 /* szName */
202 "RawFile",
203 /* szRCMod */
204 "",
205 /* szR0Mod */
206 "",
207 /* pszDescription */
208 "RawFile stream driver.",
209 /* fFlags */
210 PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT,
211 /* fClass. */
212 PDM_DRVREG_CLASS_STREAM,
213 /* cMaxInstances */
214 ~0U,
215 /* cbInstance */
216 sizeof(DRVRAWFILE),
217 /* pfnConstruct */
218 drvRawFileConstruct,
219 /* pfnDestruct */
220 drvRawFileDestruct,
221 /* pfnRelocate */
222 NULL,
223 /* pfnIOCtl */
224 NULL,
225 /* pfnPowerOn */
226 NULL,
227 /* pfnReset */
228 NULL,
229 /* pfnSuspend */
230 NULL,
231 /* pfnResume */
232 NULL,
233 /* pfnAttach */
234 NULL,
235 /* pfnDetach */
236 NULL,
237 /* pfnPowerOff */
238 drvRawFilePowerOff,
239 /* pfnSoftReset */
240 NULL,
241 /* u32EndVersion */
242 PDM_DRVREG_VERSION
243};
244
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use