VirtualBox

source: vbox/trunk/src/VBox/Main/include/VFSExplorerImpl.h@ 24349

Last change on this file since 24349 was 23223, checked in by vboxsync, 15 years ago

API: big medium handling change and lots of assorted other cleanups and fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1/* $Id: VFSExplorerImpl.h 23223 2009-09-22 15:50:03Z vboxsync $ */
2
3/** @file
4 *
5 * VirtualBox COM class implementation
6 */
7
8/*
9 * Copyright (C) 2009 Sun Microsystems, Inc.
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 *
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
20 * Clara, CA 95054 USA or visit http://www.sun.com if you need
21 * additional information or have any questions.
22 */
23
24#ifndef ____H_VFSEXPLORERIMPL
25#define ____H_VFSEXPLORERIMPL
26
27#include "VirtualBoxBase.h"
28
29class VirtualBox;
30
31class ATL_NO_VTABLE VFSExplorer :
32 public VirtualBoxBase,
33 public VirtualBoxSupportErrorInfoImpl<VFSExplorer, IVFSExplorer>,
34 public VirtualBoxSupportTranslation<VFSExplorer>,
35 VBOX_SCRIPTABLE_IMPL(IVFSExplorer)
36{
37 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (VFSExplorer)
38
39 DECLARE_NOT_AGGREGATABLE(VFSExplorer)
40
41 DECLARE_PROTECT_FINAL_CONSTRUCT()
42
43 BEGIN_COM_MAP(VFSExplorer)
44 COM_INTERFACE_ENTRY(ISupportErrorInfo)
45 COM_INTERFACE_ENTRY(IVFSExplorer)
46 COM_INTERFACE_ENTRY(IDispatch)
47 END_COM_MAP()
48
49 DECLARE_EMPTY_CTOR_DTOR(VFSExplorer)
50
51 // public initializer/uninitializer for internal purposes only
52 HRESULT FinalConstruct() { return S_OK; }
53 void FinalRelease() { uninit(); }
54
55 HRESULT init(VFSType_T aType, Utf8Str aFilePath, Utf8Str aHostname, Utf8Str aUsername, Utf8Str aPassword, VirtualBox *aVirtualBox);
56 void uninit();
57
58 // for VirtualBoxSupportErrorInfoImpl
59 static const wchar_t *getComponentName() { return L"VFSExplorer"; }
60
61 /* IVFSExplorer properties */
62 STDMETHOD(COMGETTER(Path))(BSTR *aPath);
63 STDMETHOD(COMGETTER(Type))(VFSType_T *aType);
64
65 /* IVFSExplorer methods */
66 STDMETHOD(Update)(IProgress **aProgress);
67
68 STDMETHOD(Cd)(IN_BSTR aDir, IProgress **aProgress);
69 STDMETHOD(CdUp)(IProgress **aProgress);
70
71 STDMETHOD(EntryList)(ComSafeArrayOut(BSTR, aNames), ComSafeArrayOut(VFSFileType_T, aTypes));
72
73 STDMETHOD(Exists)(ComSafeArrayIn(IN_BSTR, aNames), ComSafeArrayOut(BSTR, aExists));
74
75 STDMETHOD(Remove)(ComSafeArrayIn(IN_BSTR, aNames), IProgress **aProgress);
76
77private:
78 /* Private member vars */
79 const ComObjPtr<VirtualBox, ComWeakRef> mVirtualBox;
80
81 struct TaskVFSExplorer; /* Worker thread helper */
82 struct Data;
83 Data *m;
84
85 /* Private member methods */
86 VFSFileType_T RTToVFSFileType(int aType) const;
87
88 HRESULT updateFS(TaskVFSExplorer *aTask);
89 HRESULT deleteFS(TaskVFSExplorer *aTask);
90 HRESULT updateS3(TaskVFSExplorer *aTask);
91 HRESULT deleteS3(TaskVFSExplorer *aTask);
92};
93
94#endif /* ____H_VFSEXPLORERIMPL */
95
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