VirtualBox

source: vbox/trunk/src/VBox/Main/include/HostFloppyDriveImpl.h@ 2929

Last change on this file since 2929 was 2929, checked in by vboxsync, 17 years ago

Main: Removed devNode from the host DVD drive description (it's up to UI to decide how to visually represent things); switched HostDVDDrive and HostFloppyDrive objects to the new locking scheme.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1/** @file
2 *
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006 InnoTek Systemberatung GmbH
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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * If you received this file as part of a commercial VirtualBox
18 * distribution, then only the terms of your commercial VirtualBox
19 * license agreement apply instead of the previous paragraph.
20 */
21
22#ifndef ____H_HOSTFLOPPYDRIVEIMPL
23#define ____H_HOSTFLOPPYDRIVEIMPL
24
25#include "VirtualBoxBase.h"
26#include "Collection.h"
27
28class ATL_NO_VTABLE HostFloppyDrive :
29 public VirtualBoxBaseNEXT,
30 public VirtualBoxSupportErrorInfoImpl <HostFloppyDrive, IHostFloppyDrive>,
31 public VirtualBoxSupportTranslation <HostFloppyDrive>,
32 public IHostFloppyDrive
33{
34public:
35
36 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (HostFloppyDrive)
37
38 DECLARE_NOT_AGGREGATABLE (HostFloppyDrive)
39
40 DECLARE_PROTECT_FINAL_CONSTRUCT()
41
42 BEGIN_COM_MAP(HostFloppyDrive)
43 COM_INTERFACE_ENTRY(ISupportErrorInfo)
44 COM_INTERFACE_ENTRY(IHostFloppyDrive)
45 END_COM_MAP()
46
47 NS_DECL_ISUPPORTS
48
49 DECLARE_EMPTY_CTOR_DTOR (HostFloppyDrive)
50
51 HRESULT FinalConstruct();
52 void FinalRelease();
53
54 // public initializer/uninitializer for internal purposes only
55 HRESULT init (INPTR BSTR aName);
56 void uninit();
57
58 // IHostDVDDrive properties
59 STDMETHOD(COMGETTER(Name)) (BSTR *aName);
60
61 // public methods for internal purposes only
62
63 /* @note Must be called from under the object read lock. */
64 const Bstr &name() const { return mName; }
65
66 // for VirtualBoxSupportErrorInfoImpl
67 static const wchar_t *getComponentName() { return L"HostFloppyDrive"; }
68
69private:
70
71 const Bstr mName;
72};
73
74COM_DECL_READONLY_ENUM_AND_COLLECTION_BEGIN (HostFloppyDrive)
75
76 STDMETHOD(FindByName) (INPTR BSTR aName, IHostFloppyDrive **aDrive)
77 {
78 if (!aName)
79 return E_INVALIDARG;
80 if (!aDrive)
81 return E_POINTER;
82
83 *aDrive = NULL;
84 Vector::value_type found;
85 Vector::iterator it = vec.begin();
86 while (it != vec.end() && !found)
87 {
88 Bstr n;
89 (*it)->COMGETTER(Name) (n.asOutParam());
90 if (n == aName)
91 found = *it;
92 ++ it;
93 }
94
95 if (!found)
96 return setError (E_INVALIDARG, HostFloppyDriveCollection::tr (
97 "The host floppy drive named '%ls' could not be found"), aName);
98
99 return found.queryInterfaceTo (aDrive);
100 }
101
102COM_DECL_READONLY_ENUM_AND_COLLECTION_END (HostFloppyDrive)
103
104#endif // ____H_HOSTFLOPPYDRIVEIMPL
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