VirtualBox

source: vbox/trunk/src/VBox/Main/ParallelPortImpl.cpp@ 7954

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

Main: Return errors when the parallel port is enabled but the path is null.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 13.6 KB
Line 
1/* $Id: ParallelPortImpl.cpp 6168 2007-12-21 14:38:19Z vboxsync $ */
2/** @file
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 "ParallelPortImpl.h"
19#include "MachineImpl.h"
20#include "VirtualBoxImpl.h"
21#include "Logging.h"
22
23#include <iprt/string.h>
24#include <iprt/cpputils.h>
25
26// constructor / destructor
27/////////////////////////////////////////////////////////////////////////////
28
29DEFINE_EMPTY_CTOR_DTOR (ParallelPort)
30
31HRESULT ParallelPort::FinalConstruct()
32{
33 return S_OK;
34}
35
36void ParallelPort::FinalRelease()
37{
38 uninit();
39}
40
41// public initializer/uninitializer for internal purposes only
42/////////////////////////////////////////////////////////////////////////////
43
44/**
45 * Initializes the Parallel Port object.
46 *
47 * @param aParent Handle of the parent object.
48 */
49HRESULT ParallelPort::init (Machine *aParent, ULONG aSlot)
50{
51 LogFlowThisFunc (("aParent=%p, aSlot=%d\n", aParent, aSlot));
52
53 ComAssertRet (aParent, E_INVALIDARG);
54
55 /* Enclose the state transition NotReady->InInit->Ready */
56 AutoInitSpan autoInitSpan (this);
57 AssertReturn (autoInitSpan.isOk(), E_UNEXPECTED);
58
59 unconst (mParent) = aParent;
60 /* mPeer is left null */
61
62 mData.allocate();
63
64 /* initialize data */
65 mData->mSlot = aSlot;
66
67 /* Confirm a successful initialization */
68 autoInitSpan.setSucceeded();
69
70 return S_OK;
71}
72
73/**
74 * Initializes the Parallel Port object given another serial port 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 */
83HRESULT ParallelPort::init (Machine *aParent, ParallelPort *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 guest object given another guest 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 */
115HRESULT ParallelPort::initCopy (Machine *aParent, ParallelPort *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 */
144void ParallelPort::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// public methods only for internal purposes
160////////////////////////////////////////////////////////////////////////////////
161
162/**
163 * Loads settings from the given port node.
164 * May be called once right after this object creation.
165 *
166 * @param aPortNode <Port> node.
167 *
168 * @note Locks this object for writing.
169 */
170HRESULT ParallelPort::loadSettings (const settings::Key &aPortNode)
171{
172 using namespace settings;
173
174 AssertReturn (!aPortNode.isNull(), E_FAIL);
175
176 AutoCaller autoCaller (this);
177 AssertComRCReturnRC (autoCaller.rc());
178
179 AutoLock alock (this);
180
181 /* Note: we assume that the default values for attributes of optional
182 * nodes are assigned in the Data::Data() constructor and don't do it
183 * here. It implies that this method may only be called after constructing
184 * a new BIOSSettings object while all its data fields are in the default
185 * values. Exceptions are fields whose creation time defaults don't match
186 * values that should be applied when these fields are not explicitly set
187 * in the settings file (for backwards compatibility reasons). This takes
188 * place when a setting of a newly created object must default to A while
189 * the same setting of an object loaded from the old settings file must
190 * default to B. */
191
192 /* enabled (required) */
193 mData->mEnabled = aPortNode.value <bool> ("enabled");
194 /* I/O base (required) */
195 mData->mIOBase = aPortNode.value <ULONG> ("IOBase");
196 /* IRQ (required) */
197 mData->mIRQ = aPortNode.value <ULONG> ("IRQ");
198 /* device path (optional, defaults to null) */
199 Bstr path = aPortNode.stringValue ("path");
200
201 HRESULT rc = checkSetPath (path);
202 CheckComRCReturnRC (rc);
203 mData->mPath = path;
204
205 return S_OK;
206}
207
208/**
209 * Saves settings to the given port node.
210 *
211 * Note that the given Port node is comletely empty on input.
212 *
213 * @param aPortNode <Port> node.
214 *
215 * @note Locks this object for reading.
216 */
217HRESULT ParallelPort::saveSettings (settings::Key &aPortNode)
218{
219 using namespace settings;
220
221 AssertReturn (!aPortNode.isNull(), E_FAIL);
222
223 AutoCaller autoCaller (this);
224 AssertComRCReturnRC (autoCaller.rc());
225
226 AutoReaderLock alock (this);
227
228 aPortNode.setValue <bool> ("enabled", !!mData->mEnabled);
229 aPortNode.setValue <ULONG> ("IOBase", mData->mIOBase, 16);
230 aPortNode.setValue <ULONG> ("IRQ", mData->mIRQ);
231
232 /* 'path' is optional in XML */
233 if (!mData->mPath.isEmpty())
234 aPortNode.setValue <Bstr> ("path", mData->mPath);
235
236 return S_OK;
237}
238
239/**
240 * @note Locks this object for writing.
241 */
242bool ParallelPort::rollback()
243{
244 /* sanity */
245 AutoCaller autoCaller (this);
246 AssertComRCReturn (autoCaller.rc(), false);
247
248 AutoLock alock (this);
249
250 bool changed = false;
251
252 if (mData.isBackedUp())
253 {
254 /* we need to check all data to see whether anything will be changed
255 * after rollback */
256 changed = mData.hasActualChanges();
257 mData.rollback();
258 }
259
260 return changed;
261}
262
263/**
264 * @note Locks this object for writing, together with the peer object (also
265 * for writing) if there is one.
266 */
267void ParallelPort::commit()
268{
269 /* sanity */
270 AutoCaller autoCaller (this);
271 AssertComRCReturnVoid (autoCaller.rc());
272
273 /* sanity too */
274 AutoCaller thatCaller (mPeer);
275 AssertComRCReturnVoid (thatCaller.rc());
276
277 /* lock both for writing since we modify both */
278 AutoMultiLock <2> alock (this->wlock(), AutoLock::maybeWlock (mPeer));
279
280 if (mData.isBackedUp())
281 {
282 mData.commit();
283 if (mPeer)
284 {
285 /* attach new data to the peer and reshare it */
286 mPeer->mData.attach (mData);
287 }
288 }
289}
290
291/**
292 * @note Locks this object for writing, together with the peer object
293 * represented by @a aThat (locked for reading).
294 */
295void ParallelPort::copyFrom (ParallelPort *aThat)
296{
297 AssertReturnVoid (aThat != NULL);
298
299 /* sanity */
300 AutoCaller autoCaller (this);
301 AssertComRCReturnVoid (autoCaller.rc());
302
303 /* sanity too */
304 AutoCaller thatCaller (mPeer);
305 AssertComRCReturnVoid (thatCaller.rc());
306
307 /* peer is not modified, lock it for reading */
308 AutoMultiLock <2> alock (this->wlock(), aThat->rlock());
309
310 /* this will back up current data */
311 mData.assignCopy (aThat->mData);
312}
313
314// IParallelPort properties
315/////////////////////////////////////////////////////////////////////////////
316
317STDMETHODIMP ParallelPort::COMGETTER(Enabled) (BOOL *aEnabled)
318{
319 if (!aEnabled)
320 return E_POINTER;
321
322 AutoCaller autoCaller (this);
323 CheckComRCReturnRC (autoCaller.rc());
324
325 AutoReaderLock alock (this);
326
327 *aEnabled = mData->mEnabled;
328
329 return S_OK;
330}
331
332STDMETHODIMP ParallelPort::COMSETTER(Enabled) (BOOL aEnabled)
333{
334 LogFlowThisFunc (("aEnabled=%RTbool\n", aEnabled));
335
336 AutoCaller autoCaller (this);
337 CheckComRCReturnRC (autoCaller.rc());
338
339 /* the machine needs to be mutable */
340 Machine::AutoMutableStateDependency adep (mParent);
341 CheckComRCReturnRC (adep.rc());
342
343 AutoLock alock (this);
344
345 if (mData->mEnabled != aEnabled)
346 {
347 if (aEnabled &&
348 mData->mPath.isEmpty())
349 return setError (E_INVALIDARG,
350 tr ("Cannot enable the parallel port %d "
351 "because the port path is empty or null"),
352 mData->mSlot);
353
354 mData.backup();
355 mData->mEnabled = aEnabled;
356
357 /* leave the lock before informing callbacks */
358 alock.unlock();
359
360 mParent->onParallelPortChange (this);
361 }
362
363 return S_OK;
364}
365
366STDMETHODIMP ParallelPort::COMGETTER(Slot) (ULONG *aSlot)
367{
368 if (!aSlot)
369 return E_POINTER;
370
371 AutoCaller autoCaller (this);
372 CheckComRCReturnRC (autoCaller.rc());
373
374 AutoReaderLock alock (this);
375
376 *aSlot = mData->mSlot;
377
378 return S_OK;
379}
380
381STDMETHODIMP ParallelPort::COMGETTER(IRQ) (ULONG *aIRQ)
382{
383 if (!aIRQ)
384 return E_POINTER;
385
386 AutoCaller autoCaller (this);
387 CheckComRCReturnRC (autoCaller.rc());
388
389 AutoReaderLock alock (this);
390
391 *aIRQ = mData->mIRQ;
392
393 return S_OK;
394}
395
396STDMETHODIMP ParallelPort::COMSETTER(IRQ)(ULONG aIRQ)
397{
398 /* check IRQ limits
399 * (when changing this, make sure it corresponds to XML schema */
400 if (aIRQ > 255)
401 return setError (E_INVALIDARG,
402 tr ("Invalid IRQ number of the parallel port %d: "
403 "%lu (must be in range [0, %lu])"),
404 mData->mSlot, aIRQ, 255);
405
406 AutoCaller autoCaller (this);
407 CheckComRCReturnRC (autoCaller.rc());
408
409 /* the machine needs to be mutable */
410 Machine::AutoMutableStateDependency adep (mParent);
411 CheckComRCReturnRC (adep.rc());
412
413 AutoLock alock (this);
414
415 HRESULT rc = S_OK;
416 bool emitChangeEvent = false;
417
418 if (mData->mIRQ != aIRQ)
419 {
420 mData.backup();
421 mData->mIRQ = aIRQ;
422 emitChangeEvent = true;
423 }
424
425 if (emitChangeEvent)
426 {
427 /* leave the lock before informing callbacks */
428 alock.unlock();
429
430 mParent->onParallelPortChange (this);
431 }
432
433 return rc;
434}
435
436STDMETHODIMP ParallelPort::COMGETTER(IOBase) (ULONG *aIOBase)
437{
438 if (!aIOBase)
439 return E_POINTER;
440
441 AutoCaller autoCaller (this);
442 CheckComRCReturnRC (autoCaller.rc());
443
444 AutoReaderLock alock (this);
445
446 *aIOBase = mData->mIOBase;
447
448 return S_OK;
449}
450
451STDMETHODIMP ParallelPort::COMSETTER(IOBase)(ULONG aIOBase)
452{
453 /* check IOBase limits
454 * (when changing this, make sure it corresponds to XML schema */
455 if (aIOBase > 0xFFFF)
456 return setError (E_INVALIDARG,
457 tr ("Invalid I/O port base address of the parallel port %d: "
458 "%lu (must be in range [0, 0x%X])"),
459 mData->mSlot, aIOBase, 0, 0xFFFF);
460
461 AutoCaller autoCaller (this);
462 CheckComRCReturnRC (autoCaller.rc());
463
464 /* the machine needs to be mutable */
465 Machine::AutoMutableStateDependency adep (mParent);
466 CheckComRCReturnRC (adep.rc());
467
468 AutoLock alock (this);
469
470 HRESULT rc = S_OK;
471 bool emitChangeEvent = false;
472
473 if (mData->mIOBase != aIOBase)
474 {
475 mData.backup();
476 mData->mIOBase = aIOBase;
477 emitChangeEvent = true;
478 }
479
480 if (emitChangeEvent)
481 {
482 /* leave the lock before informing callbacks */
483 alock.unlock();
484
485 mParent->onParallelPortChange (this);
486 }
487
488 return rc;
489}
490
491STDMETHODIMP ParallelPort::COMGETTER(Path) (BSTR *aPath)
492{
493 if (!aPath)
494 return E_POINTER;
495
496 AutoCaller autoCaller (this);
497 CheckComRCReturnRC (autoCaller.rc());
498
499 AutoReaderLock alock (this);
500
501 mData->mPath.cloneTo (aPath);
502
503 return S_OK;
504}
505
506/**
507 * Validates COMSETTER(Path) arguments.
508 */
509HRESULT ParallelPort::checkSetPath (const BSTR aPath)
510{
511 AssertReturn (isLockedOnCurrentThread(), E_FAIL);
512
513 if (mData->mEnabled &&
514 (aPath == NULL || *aPath == '\0'))
515 return setError (E_INVALIDARG,
516 tr ("Path of the parallel port %d may not be empty or null "
517 "when the port is enabled"),
518 mData->mSlot);
519
520 return S_OK;
521}
522
523STDMETHODIMP ParallelPort::COMSETTER(Path) (INPTR BSTR aPath)
524{
525 AutoCaller autoCaller (this);
526 CheckComRCReturnRC (autoCaller.rc());
527
528 /* the machine needs to be mutable */
529 Machine::AutoMutableStateDependency adep (mParent);
530 CheckComRCReturnRC (adep.rc());
531
532 AutoLock alock (this);
533
534 if (mData->mPath != aPath)
535 {
536 HRESULT rc = checkSetPath (aPath);
537 CheckComRCReturnRC (rc);
538
539 mData.backup();
540 mData->mPath = aPath;
541
542 /* leave the lock before informing callbacks */
543 alock.unlock();
544
545 return mParent->onParallelPortChange (this);
546 }
547
548 return S_OK;
549}
550
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