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 (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 | #include "DVDDriveImpl.h"
|
---|
19 | #include "MachineImpl.h"
|
---|
20 | #include "HostImpl.h"
|
---|
21 | #include "HostDVDDriveImpl.h"
|
---|
22 | #include "VirtualBoxImpl.h"
|
---|
23 |
|
---|
24 | #include "Logging.h"
|
---|
25 |
|
---|
26 | #include <iprt/string.h>
|
---|
27 | #include <iprt/cpputils.h>
|
---|
28 |
|
---|
29 | // constructor / destructor
|
---|
30 | ////////////////////////////////////////////////////////////////////////////////
|
---|
31 |
|
---|
32 | DEFINE_EMPTY_CTOR_DTOR (DVDDrive)
|
---|
33 |
|
---|
34 | HRESULT DVDDrive::FinalConstruct()
|
---|
35 | {
|
---|
36 | return S_OK;
|
---|
37 | }
|
---|
38 |
|
---|
39 | void DVDDrive::FinalRelease()
|
---|
40 | {
|
---|
41 | uninit();
|
---|
42 | }
|
---|
43 |
|
---|
44 | // public initializer/uninitializer for internal purposes only
|
---|
45 | ////////////////////////////////////////////////////////////////////////////////
|
---|
46 |
|
---|
47 | /**
|
---|
48 | * Initializes the DVD drive object.
|
---|
49 | *
|
---|
50 | * @param aParent Handle of the parent object.
|
---|
51 | */
|
---|
52 | HRESULT DVDDrive::init (Machine *aParent)
|
---|
53 | {
|
---|
54 | LogFlowThisFunc (("aParent=%p\n", aParent));
|
---|
55 |
|
---|
56 | ComAssertRet (aParent, E_INVALIDARG);
|
---|
57 |
|
---|
58 | /* Enclose the state transition NotReady->InInit->Ready */
|
---|
59 | AutoInitSpan autoInitSpan (this);
|
---|
60 | AssertReturn (autoInitSpan.isOk(), E_UNEXPECTED);
|
---|
61 |
|
---|
62 | unconst (mParent) = aParent;
|
---|
63 | /* mPeer is left null */
|
---|
64 |
|
---|
65 | mData.allocate();
|
---|
66 |
|
---|
67 | /* Confirm a successful initialization */
|
---|
68 | autoInitSpan.setSucceeded();
|
---|
69 |
|
---|
70 | return S_OK;
|
---|
71 | }
|
---|
72 |
|
---|
73 | /**
|
---|
74 | * Initializes the DVD drive object given another DVD drive object
|
---|
75 | * (a kind of copy constructor). This object shares data with
|
---|
76 | * the object passed as an argument.
|
---|
77 | *
|
---|
78 | * @note This object must be destroyed before the original object
|
---|
79 | * it shares data with is destroyed.
|
---|
80 | *
|
---|
81 | * @note Locks @a aThat object for reading.
|
---|
82 | */
|
---|
83 | HRESULT DVDDrive::init (Machine *aParent, DVDDrive *aThat)
|
---|
84 | {
|
---|
85 | LogFlowThisFunc (("aParent=%p, aThat=%p\n", aParent, aThat));
|
---|
86 |
|
---|
87 | ComAssertRet (aParent && aThat, E_INVALIDARG);
|
---|
88 |
|
---|
89 | /* Enclose the state transition NotReady->InInit->Ready */
|
---|
90 | AutoInitSpan autoInitSpan (this);
|
---|
91 | AssertReturn (autoInitSpan.isOk(), E_UNEXPECTED);
|
---|
92 |
|
---|
93 | unconst (mParent) = aParent;
|
---|
94 | unconst (mPeer) = aThat;
|
---|
95 |
|
---|
96 | AutoCaller thatCaller (aThat);
|
---|
97 | AssertComRCReturnRC (thatCaller.rc());
|
---|
98 |
|
---|
99 | AutoReaderLock thatLock (aThat);
|
---|
100 | mData.share (aThat->mData);
|
---|
101 |
|
---|
102 | /* Confirm a successful initialization */
|
---|
103 | autoInitSpan.setSucceeded();
|
---|
104 |
|
---|
105 | return S_OK;
|
---|
106 | }
|
---|
107 |
|
---|
108 | /**
|
---|
109 | * Initializes the DVD drive object given another DVD drive object
|
---|
110 | * (a kind of copy constructor). This object makes a private copy of data
|
---|
111 | * of the original object passed as an argument.
|
---|
112 | *
|
---|
113 | * @note Locks @a aThat object for reading.
|
---|
114 | */
|
---|
115 | HRESULT DVDDrive::initCopy (Machine *aParent, DVDDrive *aThat)
|
---|
116 | {
|
---|
117 | LogFlowThisFunc (("aParent=%p, aThat=%p\n", aParent, aThat));
|
---|
118 |
|
---|
119 | ComAssertRet (aParent && aThat, E_INVALIDARG);
|
---|
120 |
|
---|
121 | /* Enclose the state transition NotReady->InInit->Ready */
|
---|
122 | AutoInitSpan autoInitSpan (this);
|
---|
123 | AssertReturn (autoInitSpan.isOk(), E_UNEXPECTED);
|
---|
124 |
|
---|
125 | unconst (mParent) = aParent;
|
---|
126 | /* mPeer is left null */
|
---|
127 |
|
---|
128 | AutoCaller thatCaller (aThat);
|
---|
129 | AssertComRCReturnRC (thatCaller.rc());
|
---|
130 |
|
---|
131 | AutoReaderLock thatLock (aThat);
|
---|
132 | mData.attachCopy (aThat->mData);
|
---|
133 |
|
---|
134 | /* Confirm a successful initialization */
|
---|
135 | autoInitSpan.setSucceeded();
|
---|
136 |
|
---|
137 | return S_OK;
|
---|
138 | }
|
---|
139 |
|
---|
140 | /**
|
---|
141 | * Uninitializes the instance and sets the ready flag to FALSE.
|
---|
142 | * Called either from FinalRelease() or by the parent when it gets destroyed.
|
---|
143 | */
|
---|
144 | void DVDDrive::uninit()
|
---|
145 | {
|
---|
146 | LogFlowThisFunc (("\n"));
|
---|
147 |
|
---|
148 | /* Enclose the state transition Ready->InUninit->NotReady */
|
---|
149 | AutoUninitSpan autoUninitSpan (this);
|
---|
150 | if (autoUninitSpan.uninitDone())
|
---|
151 | return;
|
---|
152 |
|
---|
153 | mData.free();
|
---|
154 |
|
---|
155 | unconst (mPeer).setNull();
|
---|
156 | unconst (mParent).setNull();
|
---|
157 | }
|
---|
158 |
|
---|
159 | // IDVDDrive properties
|
---|
160 | ////////////////////////////////////////////////////////////////////////////////
|
---|
161 |
|
---|
162 | STDMETHODIMP DVDDrive::COMGETTER(State) (DriveState_T *aDriveState)
|
---|
163 | {
|
---|
164 | if (!aDriveState)
|
---|
165 | return E_POINTER;
|
---|
166 |
|
---|
167 | AutoCaller autoCaller (this);
|
---|
168 | CheckComRCReturnRC (autoCaller.rc());
|
---|
169 |
|
---|
170 | AutoReaderLock alock (this);
|
---|
171 |
|
---|
172 | *aDriveState = mData->mDriveState;
|
---|
173 |
|
---|
174 | return S_OK;
|
---|
175 | }
|
---|
176 |
|
---|
177 | STDMETHODIMP DVDDrive::COMGETTER(Passthrough) (BOOL *aPassthrough)
|
---|
178 | {
|
---|
179 | if (!aPassthrough)
|
---|
180 | return E_POINTER;
|
---|
181 |
|
---|
182 | AutoCaller autoCaller (this);
|
---|
183 | CheckComRCReturnRC (autoCaller.rc());
|
---|
184 |
|
---|
185 | AutoReaderLock alock (this);
|
---|
186 |
|
---|
187 | *aPassthrough = mData->mPassthrough;
|
---|
188 |
|
---|
189 | return S_OK;
|
---|
190 | }
|
---|
191 |
|
---|
192 | STDMETHODIMP DVDDrive::COMSETTER(Passthrough) (BOOL aPassthrough)
|
---|
193 | {
|
---|
194 | AutoCaller autoCaller (this);
|
---|
195 | CheckComRCReturnRC (autoCaller.rc());
|
---|
196 |
|
---|
197 | /* the machine needs to be mutable */
|
---|
198 | Machine::AutoMutableStateDependency adep (mParent);
|
---|
199 | CheckComRCReturnRC (adep.rc());
|
---|
200 |
|
---|
201 | AutoLock alock (this);
|
---|
202 |
|
---|
203 | if (mData->mPassthrough != aPassthrough)
|
---|
204 | {
|
---|
205 | mData.backup();
|
---|
206 | mData->mPassthrough = aPassthrough;
|
---|
207 | }
|
---|
208 |
|
---|
209 | return S_OK;
|
---|
210 | }
|
---|
211 |
|
---|
212 | // IDVDDrive methods
|
---|
213 | ////////////////////////////////////////////////////////////////////////////////
|
---|
214 |
|
---|
215 | STDMETHODIMP DVDDrive::MountImage (INPTR GUIDPARAM aImageId)
|
---|
216 | {
|
---|
217 | if (Guid::isEmpty (aImageId))
|
---|
218 | return E_INVALIDARG;
|
---|
219 |
|
---|
220 | AutoCaller autoCaller (this);
|
---|
221 | CheckComRCReturnRC (autoCaller.rc());
|
---|
222 |
|
---|
223 | /* the machine needs to be mutable */
|
---|
224 | Machine::AutoMutableStateDependency adep (mParent);
|
---|
225 | CheckComRCReturnRC (adep.rc());
|
---|
226 |
|
---|
227 | AutoLock alock (this);
|
---|
228 |
|
---|
229 | HRESULT rc = E_FAIL;
|
---|
230 |
|
---|
231 | /* Our lifetime is bound to mParent's lifetime, so we don't add caller.
|
---|
232 | * We also don't lock mParent since its mParent field is const. */
|
---|
233 |
|
---|
234 | ComPtr <IDVDImage> image;
|
---|
235 | rc = mParent->virtualBox()->GetDVDImage (aImageId, image.asOutParam());
|
---|
236 |
|
---|
237 | if (SUCCEEDED (rc))
|
---|
238 | {
|
---|
239 | if (mData->mDriveState != DriveState_ImageMounted ||
|
---|
240 | !mData->mDVDImage.equalsTo (image))
|
---|
241 | {
|
---|
242 | mData.backup();
|
---|
243 |
|
---|
244 | unmount();
|
---|
245 |
|
---|
246 | mData->mDVDImage = image;
|
---|
247 | mData->mDriveState = DriveState_ImageMounted;
|
---|
248 |
|
---|
249 | /* leave the lock before informing callbacks */
|
---|
250 | alock.unlock();
|
---|
251 |
|
---|
252 | mParent->onDVDDriveChange();
|
---|
253 | }
|
---|
254 | }
|
---|
255 |
|
---|
256 | return rc;
|
---|
257 | }
|
---|
258 |
|
---|
259 | STDMETHODIMP DVDDrive::CaptureHostDrive (IHostDVDDrive *aHostDVDDrive)
|
---|
260 | {
|
---|
261 | if (!aHostDVDDrive)
|
---|
262 | return E_INVALIDARG;
|
---|
263 |
|
---|
264 | AutoCaller autoCaller (this);
|
---|
265 | CheckComRCReturnRC (autoCaller.rc());
|
---|
266 |
|
---|
267 | /* the machine needs to be mutable */
|
---|
268 | Machine::AutoMutableStateDependency adep (mParent);
|
---|
269 | CheckComRCReturnRC (adep.rc());
|
---|
270 |
|
---|
271 | AutoLock alock (this);
|
---|
272 |
|
---|
273 | if (mData->mDriveState != DriveState_HostDriveCaptured ||
|
---|
274 | !mData->mHostDrive.equalsTo (aHostDVDDrive))
|
---|
275 | {
|
---|
276 | mData.backup();
|
---|
277 |
|
---|
278 | unmount();
|
---|
279 |
|
---|
280 | mData->mHostDrive = aHostDVDDrive;
|
---|
281 | mData->mDriveState = DriveState_HostDriveCaptured;
|
---|
282 |
|
---|
283 | /* leave the lock before informing callbacks */
|
---|
284 | alock.unlock();
|
---|
285 |
|
---|
286 | mParent->onDVDDriveChange();
|
---|
287 | }
|
---|
288 |
|
---|
289 | return S_OK;
|
---|
290 | }
|
---|
291 |
|
---|
292 | STDMETHODIMP DVDDrive::Unmount()
|
---|
293 | {
|
---|
294 | AutoCaller autoCaller (this);
|
---|
295 | CheckComRCReturnRC (autoCaller.rc());
|
---|
296 |
|
---|
297 | /* the machine needs to be mutable */
|
---|
298 | Machine::AutoMutableStateDependency adep (mParent);
|
---|
299 | CheckComRCReturnRC (adep.rc());
|
---|
300 |
|
---|
301 | AutoLock alock (this);
|
---|
302 |
|
---|
303 | if (mData->mDriveState != DriveState_NotMounted)
|
---|
304 | {
|
---|
305 | mData.backup();
|
---|
306 |
|
---|
307 | unmount();
|
---|
308 |
|
---|
309 | mData->mDriveState = DriveState_NotMounted;
|
---|
310 |
|
---|
311 | /* leave the lock before informing callbacks */
|
---|
312 | alock.unlock();
|
---|
313 |
|
---|
314 | mParent->onDVDDriveChange();
|
---|
315 | }
|
---|
316 |
|
---|
317 | return S_OK;
|
---|
318 | }
|
---|
319 |
|
---|
320 | STDMETHODIMP DVDDrive::GetImage (IDVDImage **aDVDImage)
|
---|
321 | {
|
---|
322 | if (!aDVDImage)
|
---|
323 | return E_POINTER;
|
---|
324 |
|
---|
325 | AutoCaller autoCaller (this);
|
---|
326 | CheckComRCReturnRC (autoCaller.rc());
|
---|
327 |
|
---|
328 | AutoReaderLock alock (this);
|
---|
329 |
|
---|
330 | mData->mDVDImage.queryInterfaceTo (aDVDImage);
|
---|
331 |
|
---|
332 | return S_OK;
|
---|
333 | }
|
---|
334 |
|
---|
335 | STDMETHODIMP DVDDrive::GetHostDrive(IHostDVDDrive **aHostDrive)
|
---|
336 | {
|
---|
337 | if (!aHostDrive)
|
---|
338 | return E_POINTER;
|
---|
339 |
|
---|
340 | AutoCaller autoCaller (this);
|
---|
341 | CheckComRCReturnRC (autoCaller.rc());
|
---|
342 |
|
---|
343 | AutoReaderLock alock (this);
|
---|
344 |
|
---|
345 | mData->mHostDrive.queryInterfaceTo (aHostDrive);
|
---|
346 |
|
---|
347 | return S_OK;
|
---|
348 | }
|
---|
349 |
|
---|
350 | // public methods only for internal purposes
|
---|
351 | ////////////////////////////////////////////////////////////////////////////////
|
---|
352 |
|
---|
353 | /**
|
---|
354 | * Loads settings from the given machine node.
|
---|
355 | * May be called once right after this object creation.
|
---|
356 | *
|
---|
357 | * @param aMachineNode <Machine> node.
|
---|
358 | *
|
---|
359 | * @note Locks this object for writing.
|
---|
360 | */
|
---|
361 | HRESULT DVDDrive::loadSettings (const settings::Key &aMachineNode)
|
---|
362 | {
|
---|
363 | using namespace settings;
|
---|
364 |
|
---|
365 | AssertReturn (!aMachineNode.isNull(), E_FAIL);
|
---|
366 |
|
---|
367 | AutoCaller autoCaller (this);
|
---|
368 | AssertComRCReturnRC (autoCaller.rc());
|
---|
369 |
|
---|
370 | AutoLock alock (this);
|
---|
371 |
|
---|
372 | /* Note: we assume that the default values for attributes of optional
|
---|
373 | * nodes are assigned in the Data::Data() constructor and don't do it
|
---|
374 | * here. It implies that this method may only be called after constructing
|
---|
375 | * a new BIOSSettings object while all its data fields are in the default
|
---|
376 | * values. Exceptions are fields whose creation time defaults don't match
|
---|
377 | * values that should be applied when these fields are not explicitly set
|
---|
378 | * in the settings file (for backwards compatibility reasons). This takes
|
---|
379 | * place when a setting of a newly created object must default to A while
|
---|
380 | * the same setting of an object loaded from the old settings file must
|
---|
381 | * default to B. */
|
---|
382 |
|
---|
383 | HRESULT rc = S_OK;
|
---|
384 |
|
---|
385 | /* DVD drive (required, contains either Image or HostDrive or nothing) */
|
---|
386 | Key dvdDriveNode = aMachineNode.key ("DVDDrive");
|
---|
387 |
|
---|
388 | /* optional, defaults to false */
|
---|
389 | mData->mPassthrough = dvdDriveNode.value <bool> ("passthrough");
|
---|
390 |
|
---|
391 | Key typeNode;
|
---|
392 |
|
---|
393 | if (!(typeNode = dvdDriveNode.findKey ("Image")).isNull())
|
---|
394 | {
|
---|
395 | Guid uuid = typeNode.value <Guid> ("uuid");
|
---|
396 | rc = MountImage (uuid);
|
---|
397 | CheckComRCReturnRC (rc);
|
---|
398 | }
|
---|
399 | else if (!(typeNode = dvdDriveNode.findKey ("HostDrive")).isNull())
|
---|
400 | {
|
---|
401 |
|
---|
402 | Bstr src = typeNode.stringValue ("src");
|
---|
403 |
|
---|
404 | /* find the correspoding object */
|
---|
405 | ComObjPtr <Host> host = mParent->virtualBox()->host();
|
---|
406 |
|
---|
407 | ComPtr <IHostDVDDriveCollection> coll;
|
---|
408 | rc = host->COMGETTER(DVDDrives) (coll.asOutParam());
|
---|
409 | AssertComRC (rc);
|
---|
410 |
|
---|
411 | ComPtr <IHostDVDDrive> drive;
|
---|
412 | rc = coll->FindByName (src, drive.asOutParam());
|
---|
413 | if (SUCCEEDED (rc))
|
---|
414 | {
|
---|
415 | rc = CaptureHostDrive (drive);
|
---|
416 | CheckComRCReturnRC (rc);
|
---|
417 | }
|
---|
418 | else if (rc == E_INVALIDARG)
|
---|
419 | {
|
---|
420 | /* the host DVD drive is not currently available. we
|
---|
421 | * assume it will be available later and create an
|
---|
422 | * extra object now */
|
---|
423 | ComObjPtr <HostDVDDrive> hostDrive;
|
---|
424 | hostDrive.createObject();
|
---|
425 | rc = hostDrive->init (src);
|
---|
426 | AssertComRC (rc);
|
---|
427 | rc = CaptureHostDrive (hostDrive);
|
---|
428 | CheckComRCReturnRC (rc);
|
---|
429 | }
|
---|
430 | else
|
---|
431 | AssertComRC (rc);
|
---|
432 | }
|
---|
433 |
|
---|
434 | return S_OK;
|
---|
435 | }
|
---|
436 |
|
---|
437 | /**
|
---|
438 | * Saves settings to the given machine node.
|
---|
439 | *
|
---|
440 | * @param aMachineNode <Machine> node.
|
---|
441 | *
|
---|
442 | * @note Locks this object for reading.
|
---|
443 | */
|
---|
444 | HRESULT DVDDrive::saveSettings (settings::Key &aMachineNode)
|
---|
445 | {
|
---|
446 | using namespace settings;
|
---|
447 |
|
---|
448 | AssertReturn (!aMachineNode.isNull(), E_FAIL);
|
---|
449 |
|
---|
450 | AutoCaller autoCaller (this);
|
---|
451 | AssertComRCReturnRC (autoCaller.rc());
|
---|
452 |
|
---|
453 | AutoReaderLock alock (this);
|
---|
454 |
|
---|
455 | Key node = aMachineNode.createKey ("DVDDrive");
|
---|
456 |
|
---|
457 | node.setValue <bool> ("passthrough", !!mData->mPassthrough);
|
---|
458 |
|
---|
459 | switch (mData->mDriveState)
|
---|
460 | {
|
---|
461 | case DriveState_ImageMounted:
|
---|
462 | {
|
---|
463 | Assert (!mData->mDVDImage.isNull());
|
---|
464 |
|
---|
465 | Guid id;
|
---|
466 | HRESULT rc = mData->mDVDImage->COMGETTER(Id) (id.asOutParam());
|
---|
467 | AssertComRC (rc);
|
---|
468 | Assert (!id.isEmpty());
|
---|
469 |
|
---|
470 | Key imageNode = node.createKey ("Image");
|
---|
471 | imageNode.setValue <Guid> ("uuid", id);
|
---|
472 | break;
|
---|
473 | }
|
---|
474 | case DriveState_HostDriveCaptured:
|
---|
475 | {
|
---|
476 | Assert (!mData->mHostDrive.isNull());
|
---|
477 |
|
---|
478 | Bstr name;
|
---|
479 | HRESULT rc = mData->mHostDrive->COMGETTER(Name) (name.asOutParam());
|
---|
480 | AssertComRC (rc);
|
---|
481 | Assert (!name.isEmpty());
|
---|
482 |
|
---|
483 | Key hostDriveNode = node.createKey ("HostDrive");
|
---|
484 | hostDriveNode.setValue <Bstr> ("src", name);
|
---|
485 | break;
|
---|
486 | }
|
---|
487 | case DriveState_NotMounted:
|
---|
488 | /* do nothing, i.e.leave the drive node empty */
|
---|
489 | break;
|
---|
490 | default:
|
---|
491 | ComAssertMsgFailedRet (("Invalid drive state: %d\n",
|
---|
492 | mData->mDriveState),
|
---|
493 | E_FAIL);
|
---|
494 | }
|
---|
495 |
|
---|
496 | return S_OK;
|
---|
497 | }
|
---|
498 |
|
---|
499 | /**
|
---|
500 | * @note Locks this object for writing.
|
---|
501 | */
|
---|
502 | bool DVDDrive::rollback()
|
---|
503 | {
|
---|
504 | /* sanity */
|
---|
505 | AutoCaller autoCaller (this);
|
---|
506 | AssertComRCReturn (autoCaller.rc(), false);
|
---|
507 |
|
---|
508 | AutoLock alock (this);
|
---|
509 |
|
---|
510 | bool changed = false;
|
---|
511 |
|
---|
512 | if (mData.isBackedUp())
|
---|
513 | {
|
---|
514 | /* we need to check all data to see whether anything will be changed
|
---|
515 | * after rollback */
|
---|
516 | changed = mData.hasActualChanges();
|
---|
517 | mData.rollback();
|
---|
518 | }
|
---|
519 |
|
---|
520 | return changed;
|
---|
521 | }
|
---|
522 |
|
---|
523 | /**
|
---|
524 | * @note Locks this object for writing, together with the peer object (also
|
---|
525 | * for writing) if there is one.
|
---|
526 | */
|
---|
527 | void DVDDrive::commit()
|
---|
528 | {
|
---|
529 | /* sanity */
|
---|
530 | AutoCaller autoCaller (this);
|
---|
531 | AssertComRCReturnVoid (autoCaller.rc());
|
---|
532 |
|
---|
533 | /* sanity too */
|
---|
534 | AutoCaller thatCaller (mPeer);
|
---|
535 | AssertComRCReturnVoid (thatCaller.rc());
|
---|
536 |
|
---|
537 | /* lock both for writing since we modify both */
|
---|
538 | AutoMultiLock <2> alock (this->wlock(), AutoLock::maybeWlock (mPeer));
|
---|
539 |
|
---|
540 | if (mData.isBackedUp())
|
---|
541 | {
|
---|
542 | mData.commit();
|
---|
543 | if (mPeer)
|
---|
544 | {
|
---|
545 | /* attach new data to the peer and reshare it */
|
---|
546 | mPeer->mData.attach (mData);
|
---|
547 | }
|
---|
548 | }
|
---|
549 | }
|
---|
550 |
|
---|
551 | /**
|
---|
552 | * @note Locks this object for writing, together with the peer object
|
---|
553 | * represented by @a aThat (locked for reading).
|
---|
554 | */
|
---|
555 | void DVDDrive::copyFrom (DVDDrive *aThat)
|
---|
556 | {
|
---|
557 | AssertReturnVoid (aThat != NULL);
|
---|
558 |
|
---|
559 | /* sanity */
|
---|
560 | AutoCaller autoCaller (this);
|
---|
561 | AssertComRCReturnVoid (autoCaller.rc());
|
---|
562 |
|
---|
563 | /* sanity too */
|
---|
564 | AutoCaller thatCaller (mPeer);
|
---|
565 | AssertComRCReturnVoid (thatCaller.rc());
|
---|
566 |
|
---|
567 | /* peer is not modified, lock it for reading */
|
---|
568 | AutoMultiLock <2> alock (this->wlock(), aThat->rlock());
|
---|
569 |
|
---|
570 | /* this will back up current data */
|
---|
571 | mData.assignCopy (aThat->mData);
|
---|
572 | }
|
---|
573 |
|
---|
574 | // private methods
|
---|
575 | ////////////////////////////////////////////////////////////////////////////////
|
---|
576 |
|
---|
577 | /**
|
---|
578 | * Helper to unmount a drive.
|
---|
579 | *
|
---|
580 | * @return COM status code
|
---|
581 | *
|
---|
582 | */
|
---|
583 | HRESULT DVDDrive::unmount()
|
---|
584 | {
|
---|
585 | AssertReturn (isLockedOnCurrentThread(), E_FAIL);
|
---|
586 |
|
---|
587 | if (mData->mDVDImage)
|
---|
588 | mData->mDVDImage.setNull();
|
---|
589 | if (mData->mHostDrive)
|
---|
590 | mData->mHostDrive.setNull();
|
---|
591 |
|
---|
592 | return S_OK;
|
---|
593 | }
|
---|