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 (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 ____H_FLOPPYIMAGEIMPL
|
---|
19 | #define ____H_FLOPPYIMAGEIMPL
|
---|
20 |
|
---|
21 | #include "VirtualBoxBase.h"
|
---|
22 | #include "Collection.h"
|
---|
23 |
|
---|
24 | #include <iprt/path.h>
|
---|
25 |
|
---|
26 | class VirtualBox;
|
---|
27 |
|
---|
28 | class ATL_NO_VTABLE FloppyImage :
|
---|
29 | public VirtualBoxBaseNEXT,
|
---|
30 | public VirtualBoxSupportErrorInfoImpl <FloppyImage, IFloppyImage>,
|
---|
31 | public VirtualBoxSupportTranslation <FloppyImage>,
|
---|
32 | public IFloppyImage
|
---|
33 | {
|
---|
34 | public:
|
---|
35 |
|
---|
36 | VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (FloppyImage)
|
---|
37 |
|
---|
38 | DECLARE_NOT_AGGREGATABLE(FloppyImage)
|
---|
39 |
|
---|
40 | DECLARE_PROTECT_FINAL_CONSTRUCT()
|
---|
41 |
|
---|
42 | BEGIN_COM_MAP(FloppyImage)
|
---|
43 | COM_INTERFACE_ENTRY(ISupportErrorInfo)
|
---|
44 | COM_INTERFACE_ENTRY(IFloppyImage)
|
---|
45 | END_COM_MAP()
|
---|
46 |
|
---|
47 | NS_DECL_ISUPPORTS
|
---|
48 |
|
---|
49 | DECLARE_EMPTY_CTOR_DTOR (FloppyImage)
|
---|
50 |
|
---|
51 | HRESULT FinalConstruct();
|
---|
52 | void FinalRelease();
|
---|
53 |
|
---|
54 | // public initializer/uninitializer for internal purposes only
|
---|
55 | HRESULT init (VirtualBox *aParent, const BSTR aFilePath,
|
---|
56 | BOOL aRegistered, const Guid &aId);
|
---|
57 | void uninit();
|
---|
58 |
|
---|
59 | // IFloppyImage properties
|
---|
60 | STDMETHOD(COMGETTER(Id)) (GUIDPARAMOUT aId);
|
---|
61 | STDMETHOD(COMGETTER(FilePath)) (BSTR *aFilePath);
|
---|
62 | STDMETHOD(COMGETTER(Accessible)) (BOOL *aAccessible);
|
---|
63 | STDMETHOD(COMGETTER(Size)) (ULONG *aSize);
|
---|
64 |
|
---|
65 | // public methods for internal purposes only
|
---|
66 | // (ensure there is a caller and a read lock before calling them!)
|
---|
67 |
|
---|
68 | const Bstr &filePath() { return mImageFile; }
|
---|
69 | const Bstr &filePathFull() { return mImageFileFull; }
|
---|
70 | const Guid &id() { return mUuid; }
|
---|
71 |
|
---|
72 | void updatePath (const char *aNewFullPath, const char *aNewPath);
|
---|
73 |
|
---|
74 | // for VirtualBoxSupportErrorInfoImpl
|
---|
75 | static const wchar_t *getComponentName() { return L"FloppyImage"; }
|
---|
76 |
|
---|
77 | private:
|
---|
78 |
|
---|
79 | /** weak parent */
|
---|
80 | const ComObjPtr <VirtualBox, ComWeakRef> mParent;
|
---|
81 |
|
---|
82 | BOOL mAccessible;
|
---|
83 |
|
---|
84 | const Guid mUuid;
|
---|
85 | const Bstr mImageFile;
|
---|
86 | const Bstr mImageFileFull;
|
---|
87 | };
|
---|
88 |
|
---|
89 | COM_DECL_READONLY_ENUM_AND_COLLECTION_BEGIN (FloppyImage)
|
---|
90 |
|
---|
91 | STDMETHOD(FindByPath) (INPTR BSTR aPath, IFloppyImage **aFloppyImage)
|
---|
92 | {
|
---|
93 | if (!aPath)
|
---|
94 | return E_INVALIDARG;
|
---|
95 | if (!aFloppyImage)
|
---|
96 | return E_POINTER;
|
---|
97 |
|
---|
98 | Utf8Str path = aPath;
|
---|
99 | *aFloppyImage = NULL;
|
---|
100 | Vector::value_type found;
|
---|
101 | Vector::iterator it = vec.begin();
|
---|
102 | while (it != vec.end() && !found)
|
---|
103 | {
|
---|
104 | Bstr filePath;
|
---|
105 | (*it)->COMGETTER(FilePath) (filePath.asOutParam());
|
---|
106 | if (RTPathCompare (Utf8Str (filePath), path) == 0)
|
---|
107 | found = *it;
|
---|
108 | ++ it;
|
---|
109 | }
|
---|
110 |
|
---|
111 | if (!found)
|
---|
112 | return setError (E_INVALIDARG, FloppyImageCollection::tr (
|
---|
113 | "The floppy image named '%ls' could not be found"), aPath);
|
---|
114 |
|
---|
115 | return found.queryInterfaceTo (aFloppyImage);
|
---|
116 | }
|
---|
117 |
|
---|
118 | COM_DECL_READONLY_ENUM_AND_COLLECTION_END (FloppyImage)
|
---|
119 |
|
---|
120 |
|
---|
121 | #endif // ____H_FLOPPYIMAGEIMPL
|
---|