VirtualBox

source: vbox/trunk/src/VBox/Main/include/FloppyDriveImpl.h@ 4041

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

Main: Converted DVDDrive and FloppyDrive to the new locking scheme.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.5 KB
Line 
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 * 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
27class Machine;
28
29class ATL_NO_VTABLE FloppyDrive :
30 public VirtualBoxBaseNEXT,
31 public VirtualBoxSupportErrorInfoImpl <FloppyDrive, IFloppyDrive>,
32 public VirtualBoxSupportTranslation <FloppyDrive>,
33 public IFloppyDrive
34{
35public:
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 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (FloppyDrive)
60
61 DECLARE_NOT_AGGREGATABLE(FloppyDrive)
62
63 DECLARE_PROTECT_FINAL_CONSTRUCT()
64
65 BEGIN_COM_MAP(FloppyDrive)
66 COM_INTERFACE_ENTRY(ISupportErrorInfo)
67 COM_INTERFACE_ENTRY(IFloppyDrive)
68 END_COM_MAP()
69
70 NS_DECL_ISUPPORTS
71
72 DECLARE_EMPTY_CTOR_DTOR (FloppyDrive)
73
74 HRESULT FinalConstruct();
75 void FinalRelease();
76
77 // public initializer/uninitializer for internal purposes only
78 HRESULT init (Machine *aParent);
79 HRESULT init (Machine *aParent, FloppyDrive *aThat);
80 HRESULT initCopy (Machine *parent, FloppyDrive *aThat);
81 void uninit();
82
83 // IFloppyDrive properties
84 STDMETHOD(COMGETTER(Enabled)) (BOOL *aEnabled);
85 STDMETHOD(COMSETTER(Enabled)) (BOOL aEnabled);
86 STDMETHOD(COMGETTER(State)) (DriveState_T *aDriveState);
87
88 // IFloppyDrive methods
89 STDMETHOD(MountImage) (INPTR GUIDPARAM aImageId);
90 STDMETHOD(CaptureHostDrive) (IHostFloppyDrive *aHostFloppyDrive);
91 STDMETHOD(Unmount)();
92 STDMETHOD(GetImage) (IFloppyImage **aFloppyImage);
93 STDMETHOD(GetHostDrive) (IHostFloppyDrive **aHostFloppyDrive);
94
95 // public methods only for internal purposes
96
97 bool isModified() { AutoLock alock (this); return mData.isBackedUp(); }
98 bool isReallyModified() { AutoLock alock (this); return mData.hasActualChanges(); }
99 bool rollback();
100 void commit();
101 void copyFrom (FloppyDrive *aThat);
102
103 // public methods for internal purposes only
104 // (ensure there is a caller and a read lock before calling them!)
105
106 Backupable <Data> &data() { return mData; }
107
108 // for VirtualBoxSupportErrorInfoImpl
109 static const wchar_t *getComponentName() { return L"FloppyDrive"; }
110
111private:
112
113 HRESULT unmount();
114
115 const ComObjPtr <Machine, ComWeakRef> mParent;
116 const ComObjPtr <FloppyDrive> mPeer;
117
118 Backupable <Data> mData;
119};
120
121#endif // ____H_FLOPPYDRIVEIMPL
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