1 | /* $Id$ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | *
|
---|
5 | * VirtualBox COM class implementation
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
12 | * available from http://www.virtualbox.org. This file is free software;
|
---|
13 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
14 | * General Public License (GPL) as published by the Free Software
|
---|
15 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
16 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
17 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
18 | *
|
---|
19 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
20 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
21 | * additional information or have any questions.
|
---|
22 | */
|
---|
23 |
|
---|
24 | #ifndef ____H_SERIALPORTIMPL
|
---|
25 | #define ____H_SERIALPORTIMPL
|
---|
26 |
|
---|
27 | #include "VirtualBoxBase.h"
|
---|
28 |
|
---|
29 | class GuestOSType;
|
---|
30 |
|
---|
31 | namespace settings
|
---|
32 | {
|
---|
33 | struct SerialPort;
|
---|
34 | }
|
---|
35 |
|
---|
36 | class ATL_NO_VTABLE SerialPort :
|
---|
37 | public VirtualBoxBase,
|
---|
38 | public VirtualBoxSupportErrorInfoImpl<SerialPort, ISerialPort>,
|
---|
39 | public VirtualBoxSupportTranslation<SerialPort>,
|
---|
40 | VBOX_SCRIPTABLE_IMPL(ISerialPort)
|
---|
41 | {
|
---|
42 | public:
|
---|
43 | VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (SerialPort)
|
---|
44 |
|
---|
45 | DECLARE_NOT_AGGREGATABLE(SerialPort)
|
---|
46 |
|
---|
47 | DECLARE_PROTECT_FINAL_CONSTRUCT()
|
---|
48 |
|
---|
49 | BEGIN_COM_MAP(SerialPort)
|
---|
50 | COM_INTERFACE_ENTRY (ISupportErrorInfo)
|
---|
51 | COM_INTERFACE_ENTRY (ISerialPort)
|
---|
52 | COM_INTERFACE_ENTRY2 (IDispatch, ISerialPort)
|
---|
53 | END_COM_MAP()
|
---|
54 |
|
---|
55 | DECLARE_EMPTY_CTOR_DTOR (SerialPort)
|
---|
56 |
|
---|
57 | HRESULT FinalConstruct();
|
---|
58 | void FinalRelease();
|
---|
59 |
|
---|
60 | // public initializer/uninitializer for internal purposes only
|
---|
61 | HRESULT init (Machine *aParent, ULONG aSlot);
|
---|
62 | HRESULT init (Machine *aParent, SerialPort *aThat);
|
---|
63 | HRESULT initCopy (Machine *parent, SerialPort *aThat);
|
---|
64 | void uninit();
|
---|
65 |
|
---|
66 | // ISerialPort properties
|
---|
67 | STDMETHOD(COMGETTER(Slot)) (ULONG *aSlot);
|
---|
68 | STDMETHOD(COMGETTER(Enabled)) (BOOL *aEnabled);
|
---|
69 | STDMETHOD(COMSETTER(Enabled)) (BOOL aEnabled);
|
---|
70 | STDMETHOD(COMGETTER(HostMode)) (PortMode_T *aHostMode);
|
---|
71 | STDMETHOD(COMSETTER(HostMode)) (PortMode_T aHostMode);
|
---|
72 | STDMETHOD(COMGETTER(IRQ)) (ULONG *aIRQ);
|
---|
73 | STDMETHOD(COMSETTER(IRQ)) (ULONG aIRQ);
|
---|
74 | STDMETHOD(COMGETTER(IOBase) ) (ULONG *aIOBase);
|
---|
75 | STDMETHOD(COMSETTER(IOBase)) (ULONG aIOBase);
|
---|
76 | STDMETHOD(COMGETTER(Path)) (BSTR *aPath);
|
---|
77 | STDMETHOD(COMSETTER(Path)) (IN_BSTR aPath);
|
---|
78 | STDMETHOD(COMGETTER(Server)) (BOOL *aServer);
|
---|
79 | STDMETHOD(COMSETTER(Server)) (BOOL aServer);
|
---|
80 |
|
---|
81 | // public methods only for internal purposes
|
---|
82 |
|
---|
83 | HRESULT loadSettings(const settings::SerialPort &data);
|
---|
84 | HRESULT saveSettings(settings::SerialPort &data);
|
---|
85 |
|
---|
86 | bool isModified();
|
---|
87 | void rollback();
|
---|
88 | void commit();
|
---|
89 | void copyFrom(SerialPort *aThat);
|
---|
90 |
|
---|
91 | void applyDefaults (GuestOSType *aOsType);
|
---|
92 |
|
---|
93 | // public methods for internal purposes only
|
---|
94 | // (ensure there is a caller and a read lock before calling them!)
|
---|
95 |
|
---|
96 | // for VirtualBoxSupportErrorInfoImpl
|
---|
97 | static const wchar_t *getComponentName() { return L"SerialPort"; }
|
---|
98 |
|
---|
99 | private:
|
---|
100 | HRESULT checkSetPath(const Utf8Str &str);
|
---|
101 |
|
---|
102 | struct Data;
|
---|
103 | Data *m;
|
---|
104 | };
|
---|
105 |
|
---|
106 | #endif // ____H_FLOPPYDRIVEIMPL
|
---|
107 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|