1 | /* $Id: ConsoleSharedFolderImpl.h 98341 2023-01-30 03:09:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox COM class implementation
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2022 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | */
|
---|
27 |
|
---|
28 | #ifndef MAIN_INCLUDED_ConsoleSharedFolderImpl_h
|
---|
29 | #define MAIN_INCLUDED_ConsoleSharedFolderImpl_h
|
---|
30 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
31 | # pragma once
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | #include "SharedFolderWrap.h"
|
---|
35 | #include <VBox/shflsvc.h>
|
---|
36 |
|
---|
37 | class Console;
|
---|
38 |
|
---|
39 | class ATL_NO_VTABLE ConsoleSharedFolder :
|
---|
40 | public SharedFolderWrap
|
---|
41 | {
|
---|
42 | public:
|
---|
43 |
|
---|
44 | DECLARE_COMMON_CLASS_METHODS (ConsoleSharedFolder)
|
---|
45 |
|
---|
46 | HRESULT FinalConstruct();
|
---|
47 | void FinalRelease();
|
---|
48 |
|
---|
49 | // public initializer/uninitializer for internal purposes only
|
---|
50 | // HRESULT init(Machine *aMachine, const com::Utf8Str &aName, const com::Utf8Str &aHostPath,
|
---|
51 | // bool aWritable, bool aAutoMount, const com::Utf8Str &aAutoMountPoint, bool fFailOnError);
|
---|
52 | // HRESULT initCopy(Machine *aMachine, SharedFolder *aThat);
|
---|
53 | HRESULT init(Console *aConsole, const com::Utf8Str &aName, const com::Utf8Str &aHostPath,
|
---|
54 | bool aWritable, bool aAutoMount, const com::Utf8Str &aAutoMountPoint, bool fFailOnError);
|
---|
55 | // HRESULT init(VirtualBox *aVirtualBox, const Utf8Str &aName, const Utf8Str &aHostPath,
|
---|
56 | // bool aWritable, const com::Utf8Str &aAutoMountPoint, bool aAutoMount, bool fFailOnError);
|
---|
57 | void uninit();
|
---|
58 |
|
---|
59 | // public methods for internal purposes only
|
---|
60 | // (ensure there is a caller and a read lock before calling them!)
|
---|
61 |
|
---|
62 | /**
|
---|
63 | * Public internal method. Returns the shared folder's name. Needs caller! Locking not necessary.
|
---|
64 | * @return
|
---|
65 | */
|
---|
66 | const Utf8Str &i_getName() const;
|
---|
67 |
|
---|
68 | /**
|
---|
69 | * Public internal method. Returns the shared folder's host path. Needs caller! Locking not necessary.
|
---|
70 | * @return
|
---|
71 | */
|
---|
72 | const Utf8Str &i_getHostPath() const;
|
---|
73 |
|
---|
74 | /**
|
---|
75 | * Public internal method. Returns true if the shared folder is writable. Needs caller and locking!
|
---|
76 | * @return
|
---|
77 | */
|
---|
78 | bool i_isWritable() const;
|
---|
79 |
|
---|
80 | /**
|
---|
81 | * Public internal method. Returns true if the shared folder is auto-mounted. Needs caller and locking!
|
---|
82 | * @return
|
---|
83 | */
|
---|
84 | bool i_isAutoMounted() const;
|
---|
85 |
|
---|
86 | /**
|
---|
87 | * Public internal method for getting the auto mount point.
|
---|
88 | */
|
---|
89 | const Utf8Str &i_getAutoMountPoint() const;
|
---|
90 |
|
---|
91 | protected:
|
---|
92 |
|
---|
93 | HRESULT i_protectedInit(VirtualBoxBase *aParent,
|
---|
94 | const Utf8Str &aName,
|
---|
95 | const Utf8Str &aHostPath,
|
---|
96 | bool aWritable,
|
---|
97 | bool aAutoMount,
|
---|
98 | const com::Utf8Str &aAutoMountPoint,
|
---|
99 | bool fFailOnError);
|
---|
100 | private:
|
---|
101 |
|
---|
102 | // wrapped ISharedFolder properies.
|
---|
103 | HRESULT getName(com::Utf8Str &aName);
|
---|
104 | HRESULT getHostPath(com::Utf8Str &aHostPath);
|
---|
105 | HRESULT getAccessible(BOOL *aAccessible);
|
---|
106 | HRESULT getWritable(BOOL *aWritable);
|
---|
107 | HRESULT setWritable(BOOL aWritable);
|
---|
108 | HRESULT getAutoMount(BOOL *aAutoMount);
|
---|
109 | HRESULT setAutoMount(BOOL aAutoMount);
|
---|
110 | HRESULT getAutoMountPoint(com::Utf8Str &aAutoMountPoint);
|
---|
111 | HRESULT setAutoMountPoint(com::Utf8Str const &aAutoMountPoint);
|
---|
112 | HRESULT getLastAccessError(com::Utf8Str &aLastAccessError);
|
---|
113 |
|
---|
114 | VirtualBoxBase * const mParent;
|
---|
115 |
|
---|
116 | /* weak parents (only one of them is not null) */
|
---|
117 | Console * const mConsole;
|
---|
118 |
|
---|
119 | struct Data; // opaque data struct, defined in ConsoleSharedFolderImpl.cpp
|
---|
120 | Data *m;
|
---|
121 | };
|
---|
122 |
|
---|
123 | #endif /* !MAIN_INCLUDED_ConsoleSharedFolderImpl_h */
|
---|
124 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|