GuestDirectoryImpl.h revision aa08d96e9f8a68de2d11b24f680757cb02d1f16b
/* $Id$ */
/** @file
* VirtualBox Main - Guest directory handling implementation.
*/
/*
* Copyright (C) 2012-2014 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#ifndef ____H_GUESTDIRECTORYIMPL
#define ____H_GUESTDIRECTORYIMPL
#include "GuestProcessImpl.h"
#include "GuestDirectoryWrap.h"
class GuestSession;
/**
* TODO
*/
class ATL_NO_VTABLE GuestDirectory :
public GuestDirectoryWrap,
public GuestObject
{
public:
/** @name COM and internal init/term/mapping cruft.
* @{ */
DECLARE_EMPTY_CTOR_DTOR(GuestDirectory)
int init(Console *pConsole, GuestSession *pSession, ULONG uDirID, const GuestDirectoryOpenInfo &openInfo);
void uninit(void);
HRESULT FinalConstruct(void);
void FinalRelease(void);
/** @} */
public:
/** @name Public internal methods.
* @{ */
int i_callbackDispatcher(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb);
int i_onRemove(void);
static Utf8Str i_guestErrorToString(int guestRc);
static HRESULT i_setErrorExternal(VirtualBoxBase *pInterface, int guestRc);
/** @} */
private:
/** @name Private Wrapped properties
* @{ */
/** @} */
HRESULT getDirectoryName(com::Utf8Str &aDirectoryName);
HRESULT getFilter(com::Utf8Str &aFilter);
/** @name Wrapped Private internal methods.
* @{ */
/** @} */
HRESULT close();
HRESULT read(ComPtr<IFsObjInfo> &aObjInfo);
struct Data
{
/** The directory's open info. */
GuestDirectoryOpenInfo mOpenInfo;
/** The directory's ID. */
uint32_t mID;
GuestProcessTool mProcessTool;
} mData;
};
#endif /* !____H_GUESTDIRECTORYIMPL */