VirtualBox

source: vbox/trunk/src/VBox/Main/include/GuestFileImpl.h@ 93444

Last change on this file since 93444 was 93115, checked in by vboxsync, 3 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.7 KB
Line 
1/* $Id: GuestFileImpl.h 93115 2022-01-01 11:31:46Z vboxsync $ */
2/** @file
3 * VirtualBox Main - Guest file handling implementation.
4 */
5
6/*
7 * Copyright (C) 2012-2022 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#ifndef MAIN_INCLUDED_GuestFileImpl_h
19#define MAIN_INCLUDED_GuestFileImpl_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#include "VirtualBoxBase.h"
25#include "EventImpl.h"
26
27#include "GuestCtrlImplPrivate.h"
28#include "GuestFileWrap.h"
29
30class Console;
31class GuestSession;
32class GuestProcess;
33
34class ATL_NO_VTABLE GuestFile :
35 public GuestFileWrap,
36 public GuestObject
37{
38public:
39 /** @name COM and internal init/term/mapping cruft.
40 * @{ */
41 DECLARE_COMMON_CLASS_METHODS(GuestFile)
42
43 int init(Console *pConsole, GuestSession *pSession, ULONG uFileID, const GuestFileOpenInfo &openInfo);
44 void uninit(void);
45
46 HRESULT FinalConstruct(void);
47 void FinalRelease(void);
48 /** @} */
49
50public:
51 /** @name Implemented virtual methods from GuestObject.
52 * @{ */
53 int i_callbackDispatcher(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb);
54 int i_onUnregister(void);
55 int i_onSessionStatusChange(GuestSessionStatus_T enmSessionStatus);
56 /** @} */
57
58public:
59 /** @name Public internal methods.
60 * @{ */
61 int i_closeFile(int *pGuestRc);
62 EventSource *i_getEventSource(void) { return mEventSource; }
63 int i_onFileNotify(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData);
64 int i_onGuestDisconnected(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData);
65 int i_openFile(uint32_t uTimeoutMS, int *pGuestRc);
66 int i_queryInfo(GuestFsObjData &objData, int *prcGuest);
67 int i_readData(uint32_t uSize, uint32_t uTimeoutMS, void* pvData, uint32_t cbData, uint32_t* pcbRead);
68 int i_readDataAt(uint64_t uOffset, uint32_t uSize, uint32_t uTimeoutMS,
69 void* pvData, size_t cbData, size_t* pcbRead);
70 int i_seekAt(int64_t iOffset, GUEST_FILE_SEEKTYPE eSeekType, uint32_t uTimeoutMS, uint64_t *puOffset);
71 int i_setFileStatus(FileStatus_T fileStatus, int fileRc);
72 int i_waitForOffsetChange(GuestWaitEvent *pEvent, uint32_t uTimeoutMS, uint64_t *puOffset);
73 int i_waitForRead(GuestWaitEvent *pEvent, uint32_t uTimeoutMS, void *pvData, size_t cbData, uint32_t *pcbRead);
74 int i_waitForStatusChange(GuestWaitEvent *pEvent, uint32_t uTimeoutMS, FileStatus_T *pFileStatus, int *pGuestRc);
75 int i_waitForWrite(GuestWaitEvent *pEvent, uint32_t uTimeoutMS, uint32_t *pcbWritten);
76 int i_writeData(uint32_t uTimeoutMS, const void *pvData, uint32_t cbData, uint32_t *pcbWritten);
77 int i_writeDataAt(uint64_t uOffset, uint32_t uTimeoutMS, const void *pvData, uint32_t cbData, uint32_t *pcbWritten);
78 /** @} */
79
80 /** @name Static helper methods.
81 * @{ */
82 static Utf8Str i_guestErrorToString(int guestRc, const char *pcszWhat);
83 /** @} */
84
85private:
86
87 /** @name Wrapped IGuestFile properties.
88 * @{ */
89 HRESULT getCreationMode(ULONG *aCreationMode);
90 HRESULT getEventSource(ComPtr<IEventSource> &aEventSource);
91 HRESULT getId(ULONG *aId);
92 HRESULT getInitialSize(LONG64 *aInitialSize);
93 HRESULT getOffset(LONG64 *aOffset);
94 HRESULT getStatus(FileStatus_T *aStatus);
95 HRESULT getFilename(com::Utf8Str &aFilename);
96 HRESULT getAccessMode(FileAccessMode_T *aAccessMode);
97 HRESULT getOpenAction(FileOpenAction_T *aOpenAction);
98 /** @} */
99
100 /** @name Wrapped IGuestFile methods.
101 * @{ */
102 HRESULT close();
103 HRESULT queryInfo(ComPtr<IFsObjInfo> &aObjInfo);
104 HRESULT querySize(LONG64 *aSize);
105 HRESULT read(ULONG aToRead,
106 ULONG aTimeoutMS,
107 std::vector<BYTE> &aData);
108 HRESULT readAt(LONG64 aOffset,
109 ULONG aToRead,
110 ULONG aTimeoutMS,
111 std::vector<BYTE> &aData);
112 HRESULT seek(LONG64 aOffset,
113 FileSeekOrigin_T aWhence,
114 LONG64 *aNewOffset);
115 HRESULT setACL(const com::Utf8Str &aAcl,
116 ULONG aMode);
117 HRESULT setSize(LONG64 aSize);
118 HRESULT write(const std::vector<BYTE> &aData,
119 ULONG aTimeoutMS,
120 ULONG *aWritten);
121 HRESULT writeAt(LONG64 aOffset,
122 const std::vector<BYTE> &aData,
123 ULONG aTimeoutMS,
124 ULONG *aWritten);
125 /** @} */
126
127 /** This can safely be used without holding any locks.
128 * An AutoCaller suffices to prevent it being destroy while in use and
129 * internally there is a lock providing the necessary serialization. */
130 const ComObjPtr<EventSource> mEventSource;
131
132 struct Data
133 {
134 /** The file's open info. */
135 GuestFileOpenInfo mOpenInfo;
136 /** The file's initial size on open. */
137 uint64_t mInitialSize;
138 /** The current file status. */
139 FileStatus_T mStatus;
140 /** The last returned process status
141 * returned from the guest side. */
142 int mLastError;
143 /** The file's current offset. */
144 uint64_t mOffCurrent;
145 } mData;
146};
147
148#endif /* !MAIN_INCLUDED_GuestFileImpl_h */
149
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