VirtualBox

source: vbox/trunk/src/VBox/Main/include/SerialPortImpl.h@ 86506

Last change on this file since 86506 was 82968, checked in by vboxsync, 4 years ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
Line 
1/* $Id: SerialPortImpl.h 82968 2020-02-04 10:35:17Z vboxsync $ */
2
3/** @file
4 *
5 * VirtualBox COM class implementation
6 */
7
8/*
9 * Copyright (C) 2006-2020 Oracle Corporation
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
20#ifndef MAIN_INCLUDED_SerialPortImpl_h
21#define MAIN_INCLUDED_SerialPortImpl_h
22#ifndef RT_WITHOUT_PRAGMA_ONCE
23# pragma once
24#endif
25
26#include "SerialPortWrap.h"
27
28class GuestOSType;
29
30namespace settings
31{
32 struct SerialPort;
33}
34
35class ATL_NO_VTABLE SerialPort :
36 public SerialPortWrap
37{
38public:
39
40 DECLARE_EMPTY_CTOR_DTOR(SerialPort)
41
42 HRESULT FinalConstruct();
43 void FinalRelease();
44
45 // public initializer/uninitializer for internal purposes only
46 HRESULT init(Machine *aParent, ULONG aSlot);
47 HRESULT init(Machine *aParent, SerialPort *aThat);
48 HRESULT initCopy(Machine *parent, SerialPort *aThat);
49 void uninit();
50
51 // public methods only for internal purposes
52 HRESULT i_loadSettings(const settings::SerialPort &data);
53 HRESULT i_saveSettings(settings::SerialPort &data);
54
55 bool i_isModified();
56 void i_rollback();
57 void i_commit();
58 void i_copyFrom(SerialPort *aThat);
59
60 void i_applyDefaults(GuestOSType *aOsType);
61 bool i_hasDefaults();
62
63 // public methods for internal purposes only
64 // (ensure there is a caller and a read lock before calling them!)
65
66private:
67
68 HRESULT i_checkSetPath(const Utf8Str &str);
69
70 // Wrapped ISerialPort properties
71 HRESULT getEnabled(BOOL *aEnabled);
72 HRESULT setEnabled(BOOL aEnabled);
73 HRESULT getHostMode(PortMode_T *aHostMode);
74 HRESULT setHostMode(PortMode_T aHostMode);
75 HRESULT getSlot(ULONG *aSlot);
76 HRESULT getIRQ(ULONG *aIRQ);
77 HRESULT setIRQ(ULONG aIRQ);
78 HRESULT getIOBase(ULONG *aIOBase);
79 HRESULT setIOBase(ULONG aIOBase);
80 HRESULT getServer(BOOL *aServer);
81 HRESULT setServer(BOOL aServer);
82 HRESULT getPath(com::Utf8Str &aPath);
83 HRESULT setPath(const com::Utf8Str &aPath);
84 HRESULT getUartType(UartType_T *aUartType);
85 HRESULT setUartType(UartType_T aUartType);
86
87 struct Data;
88 Data *m;
89};
90
91#endif /* !MAIN_INCLUDED_SerialPortImpl_h */
92/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use