VirtualBox

source: vbox/trunk/src/VBox/Main/include/GuestDirectoryImpl.h@ 76785

Last change on this file since 76785 was 76562, checked in by vboxsync, 6 years ago

Main: Use MAIN_INCLUDED_ and MAIN_INCLUDED_SRC_ as header guard prefixes with scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
Line 
1/* $Id: GuestDirectoryImpl.h 76562 2019-01-01 03:22:50Z vboxsync $ */
2/** @file
3 * VirtualBox Main - Guest directory handling implementation.
4 */
5
6/*
7 * Copyright (C) 2012-2019 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_GuestDirectoryImpl_h
19#define MAIN_INCLUDED_GuestDirectoryImpl_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#include "GuestDirectoryWrap.h"
25#include "GuestFsObjInfoImpl.h"
26#include "GuestProcessImpl.h"
27
28class GuestSession;
29
30/**
31 * TODO
32 */
33class ATL_NO_VTABLE GuestDirectory :
34 public GuestDirectoryWrap,
35 public GuestObject
36{
37public:
38 /** @name COM and internal init/term/mapping cruft.
39 * @{ */
40 DECLARE_EMPTY_CTOR_DTOR(GuestDirectory)
41
42 int init(Console *pConsole, GuestSession *pSession, ULONG aObjectID, const GuestDirectoryOpenInfo &openInfo);
43 void uninit(void);
44
45 HRESULT FinalConstruct(void);
46 void FinalRelease(void);
47 /** @} */
48
49public:
50 /** @name Public internal methods.
51 * @{ */
52 int i_callbackDispatcher(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb);
53 int i_onRemove(void);
54
55 int i_closeInternal(int *pGuestRc);
56 int i_readInternal(ComObjPtr<GuestFsObjInfo> &fsObjInfo, int *pGuestRc);
57 /** @} */
58
59public:
60 /** @name Public static internal methods.
61 * @{ */
62 static Utf8Str i_guestErrorToString(int guestRc);
63 static HRESULT i_setErrorExternal(VirtualBoxBase *pInterface, int guestRc);
64 /** @} */
65
66private:
67
68 /** Wrapped @name IGuestDirectory properties
69 * @{ */
70 HRESULT getDirectoryName(com::Utf8Str &aDirectoryName);
71 HRESULT getFilter(com::Utf8Str &aFilter);
72 /** @} */
73
74 /** Wrapped @name IGuestDirectory methods.
75 * @{ */
76 HRESULT close();
77 HRESULT read(ComPtr<IFsObjInfo> &aObjInfo);
78 /** @} */
79
80 struct Data
81 {
82 /** The directory's open info. */
83 GuestDirectoryOpenInfo mOpenInfo;
84 /** The process tool instance to use. */
85 GuestProcessTool mProcessTool;
86 } mData;
87};
88
89#endif /* !MAIN_INCLUDED_GuestDirectoryImpl_h */
90
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