VirtualBox

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

Last change on this file since 35346 was 35346, checked in by vboxsync, 14 years ago

VMM reorg: Moving the public include files from include/VBox to include/VBox/vmm.

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

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