1 | /** @file
|
---|
2 | *
|
---|
3 | * VirtualBox COM class implementation
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek 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 |
|
---|
18 | #ifndef ____H_HOSTDVDDRIVEIMPL
|
---|
19 | #define ____H_HOSTDVDDRIVEIMPL
|
---|
20 |
|
---|
21 | #include "VirtualBoxBase.h"
|
---|
22 | #include "Collection.h"
|
---|
23 |
|
---|
24 | class ATL_NO_VTABLE HostDVDDrive :
|
---|
25 | public VirtualBoxBaseNEXT,
|
---|
26 | public VirtualBoxSupportErrorInfoImpl <HostDVDDrive, IHostDVDDrive>,
|
---|
27 | public VirtualBoxSupportTranslation <HostDVDDrive>,
|
---|
28 | public IHostDVDDrive
|
---|
29 | {
|
---|
30 | public:
|
---|
31 |
|
---|
32 | VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (HostDVDDrive)
|
---|
33 |
|
---|
34 | DECLARE_NOT_AGGREGATABLE (HostDVDDrive)
|
---|
35 |
|
---|
36 | DECLARE_PROTECT_FINAL_CONSTRUCT()
|
---|
37 |
|
---|
38 | BEGIN_COM_MAP(HostDVDDrive)
|
---|
39 | COM_INTERFACE_ENTRY(ISupportErrorInfo)
|
---|
40 | COM_INTERFACE_ENTRY(IHostDVDDrive)
|
---|
41 | END_COM_MAP()
|
---|
42 |
|
---|
43 | NS_DECL_ISUPPORTS
|
---|
44 |
|
---|
45 | DECLARE_EMPTY_CTOR_DTOR (HostDVDDrive)
|
---|
46 |
|
---|
47 | HRESULT FinalConstruct();
|
---|
48 | void FinalRelease();
|
---|
49 |
|
---|
50 | // public initializer/uninitializer for internal purposes only
|
---|
51 | HRESULT init (INPTR BSTR aName, INPTR BSTR aUdi = NULL,
|
---|
52 | INPTR BSTR aDescription = NULL);
|
---|
53 | void uninit();
|
---|
54 |
|
---|
55 | // IHostDVDDrive properties
|
---|
56 | STDMETHOD(COMGETTER(Name)) (BSTR *aName);
|
---|
57 | STDMETHOD(COMGETTER(Udi)) (BSTR *aUdi);
|
---|
58 | STDMETHOD(COMGETTER(Description)) (BSTR *aDescription);
|
---|
59 |
|
---|
60 | // public methods for internal purposes only
|
---|
61 |
|
---|
62 | /* @note Must be called from under the object read lock. */
|
---|
63 | const Bstr &name() const { return mName; }
|
---|
64 |
|
---|
65 | /* @note Must be called from under the object read lock. */
|
---|
66 | const Bstr &udi() const { return mUdi; }
|
---|
67 |
|
---|
68 | /* @note Must be called from under the object read lock. */
|
---|
69 | const Bstr &description() const { return mDescription; }
|
---|
70 |
|
---|
71 | // for VirtualBoxSupportErrorInfoImpl
|
---|
72 | static const wchar_t *getComponentName() { return L"HostDVDDrive"; }
|
---|
73 |
|
---|
74 | private:
|
---|
75 |
|
---|
76 | const Bstr mName;
|
---|
77 | const Bstr mDescription;
|
---|
78 | const Bstr mUdi;
|
---|
79 | };
|
---|
80 |
|
---|
81 | COM_DECL_READONLY_ENUM_AND_COLLECTION_BEGIN (HostDVDDrive)
|
---|
82 |
|
---|
83 | STDMETHOD(FindByName) (INPTR BSTR aName, IHostDVDDrive **aDrive)
|
---|
84 | {
|
---|
85 | if (!aName)
|
---|
86 | return E_INVALIDARG;
|
---|
87 | if (!aDrive)
|
---|
88 | return E_POINTER;
|
---|
89 |
|
---|
90 | *aDrive = NULL;
|
---|
91 | Vector::value_type found;
|
---|
92 | Vector::iterator it = vec.begin();
|
---|
93 | while (it != vec.end() && !found)
|
---|
94 | {
|
---|
95 | Bstr n;
|
---|
96 | (*it)->COMGETTER(Name) (n.asOutParam());
|
---|
97 | if (n == aName)
|
---|
98 | found = *it;
|
---|
99 | ++ it;
|
---|
100 | }
|
---|
101 |
|
---|
102 | if (!found)
|
---|
103 | return setError (E_INVALIDARG, HostDVDDriveCollection::tr (
|
---|
104 | "The host DVD drive named '%ls' could not be found"), aName);
|
---|
105 |
|
---|
106 | return found.queryInterfaceTo (aDrive);
|
---|
107 | }
|
---|
108 |
|
---|
109 | COM_DECL_READONLY_ENUM_AND_COLLECTION_END (HostDVDDrive)
|
---|
110 |
|
---|
111 | #endif // ____H_HOSTDVDDRIVEIMPL
|
---|