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 "SerialPortImpl.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 |
|
---|
29 | DEFINE_EMPTY_CTOR_DTOR (SerialPort)
|
---|
30 |
|
---|
31 | HRESULT SerialPort::FinalConstruct()
|
---|
32 | {
|
---|
33 | return S_OK;
|
---|
34 | }
|
---|
35 |
|
---|
36 | void SerialPort::FinalRelease()
|
---|
37 | {
|
---|
38 | uninit();
|
---|
39 | }
|
---|
40 |
|
---|
41 | // public initializer/uninitializer for internal purposes only
|
---|
42 | /////////////////////////////////////////////////////////////////////////////
|
---|
43 |
|
---|
44 | /**
|
---|
45 | * Initializes the Serial Port object.
|
---|
46 | *
|
---|
47 | * @param aParent Handle of the parent object.
|
---|
48 | */
|
---|
49 | HRESULT SerialPort::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 Serial 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 | */
|
---|
83 | HRESULT SerialPort::init (Machine *aParent, SerialPort *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 | */
|
---|
115 | HRESULT SerialPort::initCopy (Machine *aParent, SerialPort *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 SerialPort::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 | */
|
---|
170 | HRESULT SerialPort::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 | /* host mode (required) */
|
---|
199 | const char *mode = aPortNode.stringValue ("hostMode");
|
---|
200 | if (strcmp (mode, "HostPipe") == 0)
|
---|
201 | mData->mHostMode = PortMode_HostPipe;
|
---|
202 | else if (strcmp (mode, "HostDevice") == 0)
|
---|
203 | mData->mHostMode = PortMode_HostDevice;
|
---|
204 | else if (strcmp (mode, "Disconnected") == 0)
|
---|
205 | mData->mHostMode = PortMode_Disconnected;
|
---|
206 | else
|
---|
207 | ComAssertMsgFailedRet (("Invalid port mode '%s'\n", mode), E_FAIL);
|
---|
208 |
|
---|
209 | /* pipe/device path (optional, defaults to null) */
|
---|
210 | Bstr path = aPortNode.stringValue ("path");
|
---|
211 | HRESULT rc = checkSetPath (path);
|
---|
212 | CheckComRCReturnRC (rc);
|
---|
213 | mData->mPath = path;
|
---|
214 |
|
---|
215 | /* server mode (optional, defaults to false) */
|
---|
216 | mData->mServer = aPortNode.value <bool> ("server");
|
---|
217 |
|
---|
218 | return S_OK;
|
---|
219 | }
|
---|
220 |
|
---|
221 | /**
|
---|
222 | * Saves the port settings to the given port node.
|
---|
223 | *
|
---|
224 | * Note that the given Port node is comletely empty on input.
|
---|
225 | *
|
---|
226 | * @param aPortNode <Port> node.
|
---|
227 | *
|
---|
228 | * @note Locks this object for reading.
|
---|
229 | */
|
---|
230 | HRESULT SerialPort::saveSettings (settings::Key &aPortNode)
|
---|
231 | {
|
---|
232 | using namespace settings;
|
---|
233 |
|
---|
234 | AssertReturn (!aPortNode.isNull(), E_FAIL);
|
---|
235 |
|
---|
236 | AutoCaller autoCaller (this);
|
---|
237 | AssertComRCReturnRC (autoCaller.rc());
|
---|
238 |
|
---|
239 | AutoReaderLock alock (this);
|
---|
240 |
|
---|
241 | aPortNode.setValue <bool> ("enabled", !!mData->mEnabled);
|
---|
242 | aPortNode.setValue <ULONG> ("IOBase", mData->mIOBase, 16);
|
---|
243 | aPortNode.setValue <ULONG> ("IRQ", mData->mIRQ);
|
---|
244 |
|
---|
245 | const char *mode = NULL;
|
---|
246 | switch (mData->mHostMode)
|
---|
247 | {
|
---|
248 | case PortMode_Disconnected:
|
---|
249 | mode = "Disconnected";
|
---|
250 | break;
|
---|
251 | case PortMode_HostPipe:
|
---|
252 | mode = "HostPipe";
|
---|
253 | break;
|
---|
254 | case PortMode_HostDevice:
|
---|
255 | mode = "HostDevice";
|
---|
256 | break;
|
---|
257 | default:
|
---|
258 | ComAssertMsgFailedRet (("Invalid serial port mode: %d\n",
|
---|
259 | mData->mHostMode),
|
---|
260 | E_FAIL);
|
---|
261 | }
|
---|
262 | aPortNode.setStringValue ("hostMode", mode);
|
---|
263 |
|
---|
264 | /* Always save non-null mPath and mServer to preserve the user values for
|
---|
265 | * later use. Note that 'server' is false by default in XML so we don't
|
---|
266 | * save it when it's false. */
|
---|
267 | if (!mData->mPath.isEmpty())
|
---|
268 | aPortNode.setValue <Bstr> ("path", mData->mPath);
|
---|
269 | if (mData->mServer)
|
---|
270 | aPortNode.setValue <bool> ("server", !!mData->mServer);
|
---|
271 |
|
---|
272 | return S_OK;
|
---|
273 | }
|
---|
274 |
|
---|
275 | /**
|
---|
276 | * @note Locks this object for writing.
|
---|
277 | */
|
---|
278 | bool SerialPort::rollback()
|
---|
279 | {
|
---|
280 | /* sanity */
|
---|
281 | AutoCaller autoCaller (this);
|
---|
282 | AssertComRCReturn (autoCaller.rc(), false);
|
---|
283 |
|
---|
284 | AutoLock alock (this);
|
---|
285 |
|
---|
286 | bool changed = false;
|
---|
287 |
|
---|
288 | if (mData.isBackedUp())
|
---|
289 | {
|
---|
290 | /* we need to check all data to see whether anything will be changed
|
---|
291 | * after rollback */
|
---|
292 | changed = mData.hasActualChanges();
|
---|
293 | mData.rollback();
|
---|
294 | }
|
---|
295 |
|
---|
296 | return changed;
|
---|
297 | }
|
---|
298 |
|
---|
299 | /**
|
---|
300 | * @note Locks this object for writing, together with the peer object (also
|
---|
301 | * for writing) if there is one.
|
---|
302 | */
|
---|
303 | void SerialPort::commit()
|
---|
304 | {
|
---|
305 | /* sanity */
|
---|
306 | AutoCaller autoCaller (this);
|
---|
307 | AssertComRCReturnVoid (autoCaller.rc());
|
---|
308 |
|
---|
309 | /* sanity too */
|
---|
310 | AutoCaller thatCaller (mPeer);
|
---|
311 | AssertComRCReturnVoid (thatCaller.rc());
|
---|
312 |
|
---|
313 | /* lock both for writing since we modify both */
|
---|
314 | AutoMultiLock <2> alock (this->wlock(), AutoLock::maybeWlock (mPeer));
|
---|
315 |
|
---|
316 | if (mData.isBackedUp())
|
---|
317 | {
|
---|
318 | mData.commit();
|
---|
319 | if (mPeer)
|
---|
320 | {
|
---|
321 | /* attach new data to the peer and reshare it */
|
---|
322 | mPeer->mData.attach (mData);
|
---|
323 | }
|
---|
324 | }
|
---|
325 | }
|
---|
326 |
|
---|
327 | /**
|
---|
328 | * @note Locks this object for writing, together with the peer object
|
---|
329 | * represented by @a aThat (locked for reading).
|
---|
330 | */
|
---|
331 | void SerialPort::copyFrom (SerialPort *aThat)
|
---|
332 | {
|
---|
333 | AssertReturnVoid (aThat != NULL);
|
---|
334 |
|
---|
335 | /* sanity */
|
---|
336 | AutoCaller autoCaller (this);
|
---|
337 | AssertComRCReturnVoid (autoCaller.rc());
|
---|
338 |
|
---|
339 | /* sanity too */
|
---|
340 | AutoCaller thatCaller (mPeer);
|
---|
341 | AssertComRCReturnVoid (thatCaller.rc());
|
---|
342 |
|
---|
343 | /* peer is not modified, lock it for reading */
|
---|
344 | AutoMultiLock <2> alock (this->wlock(), aThat->rlock());
|
---|
345 |
|
---|
346 | /* this will back up current data */
|
---|
347 | mData.assignCopy (aThat->mData);
|
---|
348 | }
|
---|
349 |
|
---|
350 | // ISerialPort properties
|
---|
351 | /////////////////////////////////////////////////////////////////////////////
|
---|
352 |
|
---|
353 | STDMETHODIMP SerialPort::COMGETTER(Enabled) (BOOL *aEnabled)
|
---|
354 | {
|
---|
355 | if (!aEnabled)
|
---|
356 | return E_POINTER;
|
---|
357 |
|
---|
358 | AutoCaller autoCaller (this);
|
---|
359 | CheckComRCReturnRC (autoCaller.rc());
|
---|
360 |
|
---|
361 | AutoReaderLock alock (this);
|
---|
362 |
|
---|
363 | *aEnabled = mData->mEnabled;
|
---|
364 |
|
---|
365 | return S_OK;
|
---|
366 | }
|
---|
367 |
|
---|
368 | STDMETHODIMP SerialPort::COMSETTER(Enabled) (BOOL aEnabled)
|
---|
369 | {
|
---|
370 | LogFlowThisFunc (("aEnabled=%RTbool\n", aEnabled));
|
---|
371 |
|
---|
372 | AutoCaller autoCaller (this);
|
---|
373 | CheckComRCReturnRC (autoCaller.rc());
|
---|
374 |
|
---|
375 | /* the machine needs to be mutable */
|
---|
376 | Machine::AutoMutableStateDependency adep (mParent);
|
---|
377 | CheckComRCReturnRC (adep.rc());
|
---|
378 |
|
---|
379 | AutoLock alock (this);
|
---|
380 |
|
---|
381 | if (mData->mEnabled != aEnabled)
|
---|
382 | {
|
---|
383 | mData.backup();
|
---|
384 | mData->mEnabled = aEnabled;
|
---|
385 |
|
---|
386 | /* leave the lock before informing callbacks */
|
---|
387 | alock.unlock();
|
---|
388 |
|
---|
389 | mParent->onSerialPortChange (this);
|
---|
390 | }
|
---|
391 |
|
---|
392 | return S_OK;
|
---|
393 | }
|
---|
394 |
|
---|
395 | STDMETHODIMP SerialPort::COMGETTER(HostMode) (PortMode_T *aHostMode)
|
---|
396 | {
|
---|
397 | if (!aHostMode)
|
---|
398 | return E_POINTER;
|
---|
399 |
|
---|
400 | AutoCaller autoCaller (this);
|
---|
401 | CheckComRCReturnRC (autoCaller.rc());
|
---|
402 |
|
---|
403 | AutoReaderLock alock (this);
|
---|
404 |
|
---|
405 | *aHostMode = mData->mHostMode;
|
---|
406 |
|
---|
407 | return S_OK;
|
---|
408 | }
|
---|
409 |
|
---|
410 | STDMETHODIMP SerialPort::COMSETTER(HostMode) (PortMode_T aHostMode)
|
---|
411 | {
|
---|
412 | AutoCaller autoCaller (this);
|
---|
413 | CheckComRCReturnRC (autoCaller.rc());
|
---|
414 |
|
---|
415 | /* the machine needs to be mutable */
|
---|
416 | Machine::AutoMutableStateDependency adep (mParent);
|
---|
417 | CheckComRCReturnRC (adep.rc());
|
---|
418 |
|
---|
419 | AutoLock alock (this);
|
---|
420 |
|
---|
421 | HRESULT rc = S_OK;
|
---|
422 | bool emitChangeEvent = false;
|
---|
423 |
|
---|
424 | if (mData->mHostMode != aHostMode)
|
---|
425 | {
|
---|
426 | switch (aHostMode)
|
---|
427 | {
|
---|
428 | case PortMode_HostPipe:
|
---|
429 | if (mData->mPath.isEmpty())
|
---|
430 | return setError (E_INVALIDARG,
|
---|
431 | tr ("Cannot set the host pipe mode of the serial port %d "
|
---|
432 | "because the pipe path is empty or null"),
|
---|
433 | mData->mSlot);
|
---|
434 | break;
|
---|
435 | case PortMode_HostDevice:
|
---|
436 | if (mData->mPath.isEmpty())
|
---|
437 | return setError (E_INVALIDARG,
|
---|
438 | tr ("Cannot set the host device mode of the serial port %d "
|
---|
439 | "because the device path is empty or null"),
|
---|
440 | mData->mSlot);
|
---|
441 | break;
|
---|
442 | case PortMode_Disconnected:
|
---|
443 | break;
|
---|
444 | }
|
---|
445 |
|
---|
446 | mData.backup();
|
---|
447 | mData->mHostMode = aHostMode;
|
---|
448 |
|
---|
449 | emitChangeEvent = true;
|
---|
450 | }
|
---|
451 |
|
---|
452 | if (emitChangeEvent)
|
---|
453 | {
|
---|
454 | /* leave the lock before informing callbacks */
|
---|
455 | alock.unlock();
|
---|
456 |
|
---|
457 | mParent->onSerialPortChange (this);
|
---|
458 | }
|
---|
459 |
|
---|
460 | return rc;
|
---|
461 | }
|
---|
462 |
|
---|
463 | STDMETHODIMP SerialPort::COMGETTER(Slot) (ULONG *aSlot)
|
---|
464 | {
|
---|
465 | if (!aSlot)
|
---|
466 | return E_POINTER;
|
---|
467 |
|
---|
468 | AutoCaller autoCaller (this);
|
---|
469 | CheckComRCReturnRC (autoCaller.rc());
|
---|
470 |
|
---|
471 | AutoReaderLock alock (this);
|
---|
472 |
|
---|
473 | *aSlot = mData->mSlot;
|
---|
474 |
|
---|
475 | return S_OK;
|
---|
476 | }
|
---|
477 |
|
---|
478 | STDMETHODIMP SerialPort::COMGETTER(IRQ) (ULONG *aIRQ)
|
---|
479 | {
|
---|
480 | if (!aIRQ)
|
---|
481 | return E_POINTER;
|
---|
482 |
|
---|
483 | AutoCaller autoCaller (this);
|
---|
484 | CheckComRCReturnRC (autoCaller.rc());
|
---|
485 |
|
---|
486 | AutoReaderLock alock (this);
|
---|
487 |
|
---|
488 | *aIRQ = mData->mIRQ;
|
---|
489 |
|
---|
490 | return S_OK;
|
---|
491 | }
|
---|
492 |
|
---|
493 | STDMETHODIMP SerialPort::COMSETTER(IRQ)(ULONG aIRQ)
|
---|
494 | {
|
---|
495 | /* check IRQ limits
|
---|
496 | * (when changing this, make sure it corresponds to XML schema */
|
---|
497 | if (aIRQ > 255)
|
---|
498 | return setError (E_INVALIDARG,
|
---|
499 | tr ("Invalid IRQ number of the serial port %d: "
|
---|
500 | "%lu (must be in range [0, %lu])"),
|
---|
501 | mData->mSlot, aIRQ, 255);
|
---|
502 |
|
---|
503 | AutoCaller autoCaller (this);
|
---|
504 | CheckComRCReturnRC (autoCaller.rc());
|
---|
505 |
|
---|
506 | /* the machine needs to be mutable */
|
---|
507 | Machine::AutoMutableStateDependency adep (mParent);
|
---|
508 | CheckComRCReturnRC (adep.rc());
|
---|
509 |
|
---|
510 | AutoLock alock (this);
|
---|
511 |
|
---|
512 | HRESULT rc = S_OK;
|
---|
513 | bool emitChangeEvent = false;
|
---|
514 |
|
---|
515 | if (mData->mIRQ != aIRQ)
|
---|
516 | {
|
---|
517 | mData.backup();
|
---|
518 | mData->mIRQ = aIRQ;
|
---|
519 | emitChangeEvent = true;
|
---|
520 | }
|
---|
521 |
|
---|
522 | if (emitChangeEvent)
|
---|
523 | {
|
---|
524 | /* leave the lock before informing callbacks */
|
---|
525 | alock.unlock();
|
---|
526 |
|
---|
527 | mParent->onSerialPortChange (this);
|
---|
528 | }
|
---|
529 |
|
---|
530 | return rc;
|
---|
531 | }
|
---|
532 |
|
---|
533 | STDMETHODIMP SerialPort::COMGETTER(IOBase) (ULONG *aIOBase)
|
---|
534 | {
|
---|
535 | if (!aIOBase)
|
---|
536 | return E_POINTER;
|
---|
537 |
|
---|
538 | AutoCaller autoCaller (this);
|
---|
539 | CheckComRCReturnRC (autoCaller.rc());
|
---|
540 |
|
---|
541 | AutoReaderLock alock (this);
|
---|
542 |
|
---|
543 | *aIOBase = mData->mIOBase;
|
---|
544 |
|
---|
545 | return S_OK;
|
---|
546 | }
|
---|
547 |
|
---|
548 | STDMETHODIMP SerialPort::COMSETTER(IOBase)(ULONG aIOBase)
|
---|
549 | {
|
---|
550 | /* check IOBase limits
|
---|
551 | * (when changing this, make sure it corresponds to XML schema */
|
---|
552 | if (aIOBase > 0xFFFF)
|
---|
553 | return setError (E_INVALIDARG,
|
---|
554 | tr ("Invalid I/O port base address of the serial port %d: "
|
---|
555 | "%lu (must be in range [0, 0x%X])"),
|
---|
556 | mData->mSlot, aIOBase, 0, 0xFFFF);
|
---|
557 |
|
---|
558 | AutoCaller autoCaller (this);
|
---|
559 | CheckComRCReturnRC (autoCaller.rc());
|
---|
560 |
|
---|
561 | /* the machine needs to be mutable */
|
---|
562 | Machine::AutoMutableStateDependency adep (mParent);
|
---|
563 | CheckComRCReturnRC (adep.rc());
|
---|
564 |
|
---|
565 | AutoLock alock (this);
|
---|
566 |
|
---|
567 | HRESULT rc = S_OK;
|
---|
568 | bool emitChangeEvent = false;
|
---|
569 |
|
---|
570 | if (mData->mIOBase != aIOBase)
|
---|
571 | {
|
---|
572 | mData.backup();
|
---|
573 | mData->mIOBase = aIOBase;
|
---|
574 | emitChangeEvent = true;
|
---|
575 | }
|
---|
576 |
|
---|
577 | if (emitChangeEvent)
|
---|
578 | {
|
---|
579 | /* leave the lock before informing callbacks */
|
---|
580 | alock.unlock();
|
---|
581 |
|
---|
582 | mParent->onSerialPortChange (this);
|
---|
583 | }
|
---|
584 |
|
---|
585 | return rc;
|
---|
586 | }
|
---|
587 |
|
---|
588 | STDMETHODIMP SerialPort::COMGETTER(Path) (BSTR *aPath)
|
---|
589 | {
|
---|
590 | if (!aPath)
|
---|
591 | return E_POINTER;
|
---|
592 |
|
---|
593 | AutoCaller autoCaller (this);
|
---|
594 | CheckComRCReturnRC (autoCaller.rc());
|
---|
595 |
|
---|
596 | AutoReaderLock alock (this);
|
---|
597 |
|
---|
598 | mData->mPath.cloneTo (aPath);
|
---|
599 |
|
---|
600 | return S_OK;
|
---|
601 | }
|
---|
602 |
|
---|
603 | /**
|
---|
604 | * Validates COMSETTER(Path) arguments.
|
---|
605 | */
|
---|
606 | HRESULT SerialPort::checkSetPath (const BSTR aPath)
|
---|
607 | {
|
---|
608 | AssertReturn (isLockedOnCurrentThread(), E_FAIL);
|
---|
609 |
|
---|
610 | if ((mData->mHostMode == PortMode_HostDevice ||
|
---|
611 | mData->mHostMode == PortMode_HostPipe) &&
|
---|
612 | (aPath == NULL || *aPath == '\0'))
|
---|
613 | return setError (E_INVALIDARG,
|
---|
614 | tr ("Path of the serial port %d may not be empty or null in "
|
---|
615 | "host pipe or host device mode"),
|
---|
616 | mData->mSlot);
|
---|
617 |
|
---|
618 | return S_OK;
|
---|
619 | }
|
---|
620 |
|
---|
621 | STDMETHODIMP SerialPort::COMSETTER(Path) (INPTR BSTR aPath)
|
---|
622 | {
|
---|
623 | AutoCaller autoCaller (this);
|
---|
624 | CheckComRCReturnRC (autoCaller.rc());
|
---|
625 |
|
---|
626 | /* the machine needs to be mutable */
|
---|
627 | Machine::AutoMutableStateDependency adep (mParent);
|
---|
628 | CheckComRCReturnRC (adep.rc());
|
---|
629 |
|
---|
630 | AutoLock alock (this);
|
---|
631 |
|
---|
632 | if (mData->mPath != aPath)
|
---|
633 | {
|
---|
634 | HRESULT rc = checkSetPath (aPath);
|
---|
635 | CheckComRCReturnRC (rc);
|
---|
636 |
|
---|
637 | mData.backup();
|
---|
638 | mData->mPath = aPath;
|
---|
639 |
|
---|
640 | /* leave the lock before informing callbacks */
|
---|
641 | alock.unlock();
|
---|
642 |
|
---|
643 | return mParent->onSerialPortChange (this);
|
---|
644 | }
|
---|
645 |
|
---|
646 | return S_OK;
|
---|
647 | }
|
---|
648 |
|
---|
649 | STDMETHODIMP SerialPort::COMGETTER(Server) (BOOL *aServer)
|
---|
650 | {
|
---|
651 | if (!aServer)
|
---|
652 | return E_POINTER;
|
---|
653 |
|
---|
654 | AutoCaller autoCaller (this);
|
---|
655 | CheckComRCReturnRC (autoCaller.rc());
|
---|
656 |
|
---|
657 | AutoReaderLock alock (this);
|
---|
658 |
|
---|
659 | *aServer = mData->mServer;
|
---|
660 |
|
---|
661 | return S_OK;
|
---|
662 | }
|
---|
663 |
|
---|
664 | STDMETHODIMP SerialPort::COMSETTER(Server) (BOOL aServer)
|
---|
665 | {
|
---|
666 | LogFlowThisFunc (("aServer=%RTbool\n", aServer));
|
---|
667 |
|
---|
668 | AutoCaller autoCaller (this);
|
---|
669 | CheckComRCReturnRC (autoCaller.rc());
|
---|
670 |
|
---|
671 | /* the machine needs to be mutable */
|
---|
672 | Machine::AutoMutableStateDependency adep (mParent);
|
---|
673 | CheckComRCReturnRC (adep.rc());
|
---|
674 |
|
---|
675 | AutoLock alock (this);
|
---|
676 |
|
---|
677 | if (mData->mServer != aServer)
|
---|
678 | {
|
---|
679 | mData.backup();
|
---|
680 | mData->mServer = aServer;
|
---|
681 |
|
---|
682 | /* leave the lock before informing callbacks */
|
---|
683 | alock.unlock();
|
---|
684 |
|
---|
685 | mParent->onSerialPortChange (this);
|
---|
686 | }
|
---|
687 |
|
---|
688 | return S_OK;
|
---|
689 | }
|
---|