VirtualBox

source: vbox/trunk/src/VBox/Main/HostDVDDriveImpl.cpp@ 2981

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

InnoTek -> innotek: all the headers and comments.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 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#include "HostDVDDriveImpl.h"
23
24// constructor / destructor
25/////////////////////////////////////////////////////////////////////////////
26
27DEFINE_EMPTY_CTOR_DTOR (HostDVDDrive)
28
29HRESULT HostDVDDrive::FinalConstruct()
30{
31 return S_OK;
32}
33
34void HostDVDDrive::FinalRelease()
35{
36 uninit();
37}
38
39// public initializer/uninitializer for internal purposes only
40/////////////////////////////////////////////////////////////////////////////
41
42/**
43 * Initializes the host DVD 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 */
51HRESULT HostDVDDrive::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 * Uninitializes the instance and sets the ready flag to FALSE.
73 * Called either from FinalRelease() or by the parent when it gets destroyed.
74 */
75void HostDVDDrive::uninit()
76{
77 /* Enclose the state transition Ready->InUninit->NotReady */
78 AutoUninitSpan autoUninitSpan (this);
79 if (autoUninitSpan.uninitDone())
80 return;
81
82 unconst (mDescription).setNull();
83 unconst (mName).setNull();
84}
85
86// IHostDVDDrive properties
87/////////////////////////////////////////////////////////////////////////////
88
89STDMETHODIMP HostDVDDrive::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
104STDMETHODIMP HostDVDDrive::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
119STDMETHODIMP HostDVDDrive::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}
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