VirtualBox

source: vbox/trunk/src/VBox/Main/include/MediumAttachmentImpl.h@ 38718

最後變更 在這個檔案從38718是 38718,由 vboxsync 提交於 14 年 前

Main: Fix wrong medium attachment references after "Restore Snapshot" by making a depth copy of them

  • 屬性 svn:eol-style 設為 native
檔案大小: 4.0 KB
 
1/** @file
2 *
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006-2011 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.alldomusa.eu.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_MEDIUMATTACHMENTIMPL
19#define ____H_MEDIUMATTACHMENTIMPL
20
21#include "VirtualBoxBase.h"
22#include "BandwidthGroupImpl.h"
23
24class ATL_NO_VTABLE MediumAttachment :
25 public VirtualBoxBase,
26 VBOX_SCRIPTABLE_IMPL(IMediumAttachment)
27{
28public:
29 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(MediumAttachment, IMediumAttachment)
30
31 DECLARE_NOT_AGGREGATABLE(MediumAttachment)
32
33 DECLARE_PROTECT_FINAL_CONSTRUCT()
34
35 BEGIN_COM_MAP(MediumAttachment)
36 VBOX_DEFAULT_INTERFACE_ENTRIES(IMediumAttachment)
37 END_COM_MAP()
38
39 MediumAttachment() { };
40 ~MediumAttachment() { };
41
42 // public initializer/uninitializer for internal purposes only
43 HRESULT init(Machine *aParent,
44 Medium *aMedium,
45 const Bstr &aControllerName,
46 LONG aPort,
47 LONG aDevice,
48 DeviceType_T aType,
49 bool fImplicit,
50 bool fPassthrough,
51 bool fTempEject,
52 bool fNonRotational,
53 const Utf8Str &strBandwidthGroup);
54 HRESULT initCopy(Machine *aParent, MediumAttachment *aThat);
55 void uninit();
56
57 HRESULT FinalConstruct();
58 void FinalRelease();
59
60 // IMediumAttachment properties
61 STDMETHOD(COMGETTER(Medium))(IMedium **aMedium);
62 STDMETHOD(COMGETTER(Controller))(BSTR *aController);
63 STDMETHOD(COMGETTER(Port))(LONG *aPort);
64 STDMETHOD(COMGETTER(Device))(LONG *aDevice);
65 STDMETHOD(COMGETTER(Type))(DeviceType_T *aType);
66 STDMETHOD(COMGETTER(Passthrough))(BOOL *aPassthrough);
67 STDMETHOD(COMGETTER(TemporaryEject))(BOOL *aTemporaryEject);
68 STDMETHOD(COMGETTER(IsEjected))(BOOL *aIsEjected);
69 STDMETHOD(COMGETTER(NonRotational))(BOOL *aNonRotational);
70 STDMETHOD(COMGETTER(BandwidthGroup))(IBandwidthGroup **aBwGroup);
71
72 // public internal methods
73 void rollback();
74 void commit();
75
76 // unsafe public methods for internal purposes only (ensure there is
77 // a caller and a read lock before calling them!)
78 bool isImplicit() const;
79 void setImplicit(bool aImplicit);
80
81 const ComObjPtr<Medium>& getMedium() const;
82 Bstr getControllerName() const;
83 LONG getPort() const;
84 LONG getDevice() const;
85 DeviceType_T getType() const;
86 bool getPassthrough() const;
87 bool getTempEject() const;
88 bool getNonRotational() const;
89 const Utf8Str& getBandwidthGroup() const;
90
91 bool matches(CBSTR aControllerName, LONG aPort, LONG aDevice);
92
93 /** Must be called from under this object's write lock. */
94 void updateMedium(const ComObjPtr<Medium> &aMedium);
95
96 /** Must be called from under this object's write lock. */
97 void updatePassthrough(bool aPassthrough);
98
99 /** Must be called from under this object's write lock. */
100 void updateTempEject(bool aTempEject);
101
102 /** Must be called from under this object's write lock. */
103 void updateNonRotational(bool aNonRotational);
104
105 /** Must be called from under this object's write lock. */
106 void updateEjected();
107
108 /** Must be called from under this object's write lock. */
109 void updateBandwidthGroup(const Utf8Str &aBandwidthGroup);
110
111 void updateParentMachine(Machine * const pMachine);
112
113 /** Get a unique and somewhat descriptive name for logging. */
114 const char* getLogName(void) const { return mLogName.c_str(); }
115
116private:
117 struct Data;
118 Data *m;
119
120 Utf8Str mLogName; /**< For logging purposes */
121};
122
123#endif // ____H_MEDIUMATTACHMENTIMPL
124/* vi: set tabstop=4 shiftwidth=4 expandtab: */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette