VirtualBox

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

Last change on this file since 60952 was 56820, checked in by vboxsync, 9 years ago

Main/StorageController: Fix storage controller renaming, it needs updating all corresponding attachments (otherwise they get instantly lost). Also eliminates some Utf8Str/Bstr conversions, and a bit of whitespace cleanup

  • Property svn:eol-style set to native
File size: 4.2 KB
Line 
1/* $Id: $ */
2/** @file
3 *
4 * VirtualBox COM class implementation
5 */
6
7/*
8 * Copyright (C) 2006-2015 Oracle Corporation
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#ifndef ____H_MEDIUMATTACHMENTIMPL
20#define ____H_MEDIUMATTACHMENTIMPL
21
22#include "MediumAttachmentWrap.h"
23
24class ATL_NO_VTABLE MediumAttachment :
25 public MediumAttachmentWrap
26{
27public:
28
29 DECLARE_EMPTY_CTOR_DTOR(MediumAttachment)
30
31 HRESULT FinalConstruct();
32 void FinalRelease();
33
34 // public initializer/uninitializer for internal purposes only
35 HRESULT init(Machine *aParent,
36 Medium *aMedium,
37 const Utf8Str &aControllerName,
38 LONG aPort,
39 LONG aDevice,
40 DeviceType_T aType,
41 bool fImplicit,
42 bool fPassthrough,
43 bool fTempEject,
44 bool fNonRotational,
45 bool fDiscard,
46 bool fHotPluggable,
47 const Utf8Str &strBandwidthGroup);
48 HRESULT initCopy(Machine *aParent, MediumAttachment *aThat);
49 void uninit();
50
51 // public internal methods
52 void i_rollback();
53 void i_commit();
54
55 // unsafe public methods for internal purposes only (ensure there is
56 // a caller and a read lock before calling them!)
57 bool i_isImplicit() const;
58 void i_setImplicit(bool aImplicit);
59
60 const ComObjPtr<Medium>& i_getMedium() const;
61 const Utf8Str &i_getControllerName() const;
62 LONG i_getPort() const;
63 LONG i_getDevice() const;
64 DeviceType_T i_getType() const;
65 bool i_getPassthrough() const;
66 bool i_getTempEject() const;
67 bool i_getNonRotational() const;
68 bool i_getDiscard() const;
69 Utf8Str& i_getBandwidthGroup() const;
70 bool i_getHotPluggable() const;
71
72 bool i_matches(const Utf8Str &aControllerName, LONG aPort, LONG aDevice);
73
74 /** Must be called from under this object's write lock. */
75 void i_updateName(const Utf8Str &aName);
76
77 /** Must be called from under this object's write lock. */
78 void i_updateMedium(const ComObjPtr<Medium> &aMedium);
79
80 /** Must be called from under this object's write lock. */
81 void i_updatePassthrough(bool aPassthrough);
82
83 /** Must be called from under this object's write lock. */
84 void i_updateTempEject(bool aTempEject);
85
86 /** Must be called from under this object's write lock. */
87 void i_updateNonRotational(bool aNonRotational);
88
89 /** Must be called from under this object's write lock. */
90 void i_updateDiscard(bool aDiscard);
91
92 /** Must be called from under this object's write lock. */
93 void i_updateEjected();
94
95 /** Must be called from under this object's write lock. */
96 void i_updateBandwidthGroup(const Utf8Str &aBandwidthGroup);
97
98 void i_updateParentMachine(Machine * const pMachine);
99
100 /** Must be called from under this object's write lock. */
101 void i_updateHotPluggable(bool aHotPluggable);
102
103 /** Get a unique and somewhat descriptive name for logging. */
104 const char* i_getLogName(void) const { return mLogName.c_str(); }
105
106private:
107
108 // Wrapped IMediumAttachment properties
109 HRESULT getMedium(ComPtr<IMedium> &aHardDisk);
110 HRESULT getController(com::Utf8Str &aController);
111 HRESULT getPort(LONG *aPort);
112 HRESULT getDevice(LONG *aDevice);
113 HRESULT getType(DeviceType_T *aType);
114 HRESULT getPassthrough(BOOL *aPassthrough);
115 HRESULT getTemporaryEject(BOOL *aTemporaryEject);
116 HRESULT getIsEjected(BOOL *aEjected);
117 HRESULT getDiscard(BOOL *aDiscard);
118 HRESULT getNonRotational(BOOL *aNonRotational);
119 HRESULT getBandwidthGroup(ComPtr<IBandwidthGroup> &aBandwidthGroup);
120 HRESULT getHotPluggable(BOOL *aHotPluggable);
121
122 struct Data;
123 Data *m;
124
125 Utf8Str mLogName; /**< For logging purposes */
126};
127
128#endif // ____H_MEDIUMATTACHMENTIMPL
129/* vi: set tabstop=4 shiftwidth=4 expandtab: */
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