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 | #include "HostFloppyDriveImpl.h"
|
---|
23 |
|
---|
24 | // constructor / destructor
|
---|
25 | /////////////////////////////////////////////////////////////////////////////
|
---|
26 |
|
---|
27 | DEFINE_EMPTY_CTOR_DTOR (HostFloppyDrive)
|
---|
28 |
|
---|
29 | HRESULT HostFloppyDrive::FinalConstruct()
|
---|
30 | {
|
---|
31 | return S_OK;
|
---|
32 | }
|
---|
33 |
|
---|
34 | void HostFloppyDrive::FinalRelease()
|
---|
35 | {
|
---|
36 | uninit();
|
---|
37 | }
|
---|
38 |
|
---|
39 | // public initializer/uninitializer for internal purposes only
|
---|
40 | /////////////////////////////////////////////////////////////////////////////
|
---|
41 |
|
---|
42 | /**
|
---|
43 | * Initializes the host floppy drive object.
|
---|
44 | *
|
---|
45 | * @param aName Name of the drive.
|
---|
46 | * @param aUdi Universal device identifier (currently may be NULL).
|
---|
47 | * @param aDescription Human-readable drive description (may be NULL).
|
---|
48 | *
|
---|
49 | * @return COM result indicator.
|
---|
50 | */
|
---|
51 | HRESULT HostFloppyDrive::init (INPTR BSTR aName,
|
---|
52 | INPTR BSTR aUdi /* = NULL */,
|
---|
53 | INPTR BSTR aDescription /* = NULL */)
|
---|
54 | {
|
---|
55 | ComAssertRet (aName, E_INVALIDARG);
|
---|
56 |
|
---|
57 | /* Enclose the state transition NotReady->InInit->Ready */
|
---|
58 | AutoInitSpan autoInitSpan (this);
|
---|
59 | AssertReturn (autoInitSpan.isOk(), E_UNEXPECTED);
|
---|
60 |
|
---|
61 | unconst (mName) = aName;
|
---|
62 | unconst (mUdi) = aUdi;
|
---|
63 | unconst (mDescription) = aDescription;
|
---|
64 |
|
---|
65 | /* Confirm the successful initialization */
|
---|
66 | autoInitSpan.setSucceeded();
|
---|
67 |
|
---|
68 | return S_OK;
|
---|
69 | }
|
---|
70 |
|
---|
71 |
|
---|
72 | /**
|
---|
73 | * Uninitializes the instance and sets the ready flag to FALSE.
|
---|
74 | * Called either from FinalRelease() or by the parent when it gets destroyed.
|
---|
75 | */
|
---|
76 | void HostFloppyDrive::uninit()
|
---|
77 | {
|
---|
78 | /* Enclose the state transition Ready->InUninit->NotReady */
|
---|
79 | AutoUninitSpan autoUninitSpan (this);
|
---|
80 | if (autoUninitSpan.uninitDone())
|
---|
81 | return;
|
---|
82 |
|
---|
83 | unconst (mName).setNull();
|
---|
84 | }
|
---|
85 |
|
---|
86 | // IHostFloppyDrive properties
|
---|
87 | /////////////////////////////////////////////////////////////////////////////
|
---|
88 |
|
---|
89 | STDMETHODIMP HostFloppyDrive::COMGETTER(Name) (BSTR *aName)
|
---|
90 | {
|
---|
91 | if (!aName)
|
---|
92 | return E_POINTER;
|
---|
93 |
|
---|
94 | AutoCaller autoCaller (this);
|
---|
95 | CheckComRCReturnRC (autoCaller.rc());
|
---|
96 |
|
---|
97 | /* mName is constant during life time, no need to lock */
|
---|
98 |
|
---|
99 | mName.cloneTo (aName);
|
---|
100 |
|
---|
101 | return S_OK;
|
---|
102 | }
|
---|
103 |
|
---|
104 | STDMETHODIMP HostFloppyDrive::COMGETTER(Description) (BSTR *aDescription)
|
---|
105 | {
|
---|
106 | if (!aDescription)
|
---|
107 | return E_POINTER;
|
---|
108 |
|
---|
109 | AutoCaller autoCaller (this);
|
---|
110 | CheckComRCReturnRC (autoCaller.rc());
|
---|
111 |
|
---|
112 | /* mDescription is constant during life time, no need to lock */
|
---|
113 |
|
---|
114 | mDescription.cloneTo (aDescription);
|
---|
115 |
|
---|
116 | return S_OK;
|
---|
117 | }
|
---|
118 |
|
---|
119 | STDMETHODIMP HostFloppyDrive::COMGETTER(Udi) (BSTR *aUdi)
|
---|
120 | {
|
---|
121 | if (!aUdi)
|
---|
122 | return E_POINTER;
|
---|
123 |
|
---|
124 | AutoCaller autoCaller (this);
|
---|
125 | CheckComRCReturnRC (autoCaller.rc());
|
---|
126 |
|
---|
127 | /* mUdi is constant during life time, no need to lock */
|
---|
128 |
|
---|
129 | mUdi.cloneTo (aUdi);
|
---|
130 |
|
---|
131 | return S_OK;
|
---|
132 | }
|
---|