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_FLOPPYDRIVEIMPL
|
---|
23 | #define ____H_FLOPPYDRIVEIMPL
|
---|
24 |
|
---|
25 | #include "VirtualBoxBase.h"
|
---|
26 |
|
---|
27 | class Machine;
|
---|
28 |
|
---|
29 | class ATL_NO_VTABLE FloppyDrive :
|
---|
30 | public VirtualBoxSupportErrorInfoImpl <FloppyDrive, IFloppyDrive>,
|
---|
31 | public VirtualBoxSupportTranslation <FloppyDrive>,
|
---|
32 | public VirtualBoxBase,
|
---|
33 | public IFloppyDrive
|
---|
34 | {
|
---|
35 | public:
|
---|
36 |
|
---|
37 | struct Data
|
---|
38 | {
|
---|
39 | Data()
|
---|
40 | {
|
---|
41 | mEnabled = true;
|
---|
42 | mDriveState = DriveState_NotMounted;
|
---|
43 | }
|
---|
44 |
|
---|
45 | bool operator== (const Data &that) const
|
---|
46 | {
|
---|
47 | return this == &that ||
|
---|
48 | (mDriveState == that.mDriveState &&
|
---|
49 | mFloppyImage.equalsTo (that.mFloppyImage) &&
|
---|
50 | mHostDrive.equalsTo (that.mHostDrive));
|
---|
51 | }
|
---|
52 |
|
---|
53 | BOOL mEnabled;
|
---|
54 | ComPtr <IFloppyImage> mFloppyImage;
|
---|
55 | ComPtr <IHostFloppyDrive> mHostDrive;
|
---|
56 | DriveState_T mDriveState;
|
---|
57 | };
|
---|
58 |
|
---|
59 | DECLARE_NOT_AGGREGATABLE(FloppyDrive)
|
---|
60 |
|
---|
61 | DECLARE_PROTECT_FINAL_CONSTRUCT()
|
---|
62 |
|
---|
63 | BEGIN_COM_MAP(FloppyDrive)
|
---|
64 | COM_INTERFACE_ENTRY(ISupportErrorInfo)
|
---|
65 | COM_INTERFACE_ENTRY(IFloppyDrive)
|
---|
66 | END_COM_MAP()
|
---|
67 |
|
---|
68 | NS_DECL_ISUPPORTS
|
---|
69 |
|
---|
70 | HRESULT FinalConstruct();
|
---|
71 | void FinalRelease();
|
---|
72 |
|
---|
73 | // public initializer/uninitializer for internal purposes only
|
---|
74 | HRESULT init (Machine *parent);
|
---|
75 | HRESULT init (Machine *parent, FloppyDrive *that);
|
---|
76 | HRESULT initCopy (Machine *parent, FloppyDrive *that);
|
---|
77 | void uninit();
|
---|
78 |
|
---|
79 | // IFloppyDrive properties
|
---|
80 | STDMETHOD(COMGETTER(Enabled)) (BOOL *enabled);
|
---|
81 | STDMETHOD(COMSETTER(Enabled)) (BOOL enabled);
|
---|
82 | STDMETHOD(COMGETTER(State)) (DriveState_T *driveState);
|
---|
83 |
|
---|
84 | // IFloppyDrive methods
|
---|
85 | STDMETHOD(MountImage)(INPTR GUIDPARAM imageId);
|
---|
86 | STDMETHOD(CaptureHostDrive)(IHostFloppyDrive *hostFloppyDrive);
|
---|
87 | STDMETHOD(Unmount)();
|
---|
88 | STDMETHOD(GetImage)(IFloppyImage **floppyImage);
|
---|
89 | STDMETHOD(GetHostDrive)(IHostFloppyDrive **hostFloppyDrive);
|
---|
90 |
|
---|
91 | // public methods only for internal purposes
|
---|
92 |
|
---|
93 | bool isModified() { AutoLock alock (this); return mData.isBackedUp(); }
|
---|
94 | bool isReallyModified() { AutoLock alock (this); return mData.hasActualChanges(); }
|
---|
95 | bool rollback();
|
---|
96 | void commit();
|
---|
97 | void copyFrom (FloppyDrive *aThat);
|
---|
98 |
|
---|
99 | Backupable <Data> &data() { return mData; }
|
---|
100 |
|
---|
101 | // for VirtualBoxSupportErrorInfoImpl
|
---|
102 | static const wchar_t *getComponentName() { return L"FloppyDrive"; }
|
---|
103 |
|
---|
104 | private:
|
---|
105 |
|
---|
106 | HRESULT unmount();
|
---|
107 |
|
---|
108 | ComObjPtr <Machine, ComWeakRef> mParent;
|
---|
109 | ComObjPtr <FloppyDrive> mPeer;
|
---|
110 | Backupable <Data> mData;
|
---|
111 | };
|
---|
112 |
|
---|
113 | #endif // ____H_FLOPPYDRIVEIMPL
|
---|