VirtualBox

source: vbox/trunk/src/VBox/Main/include/ConsoleSharedFolderImpl.h

Last change on this file was 105088, checked in by vboxsync, 3 months ago

Main/include,Main/ConsoleSharedFolderImpl.cpp: Remove a redundant
'const' qualifier from the ConsoleSharedFolder::i_getSymlinkPolicy()
declaration and definition. Flagged by clang as 'error: 'const' type
qualifier on return type has no effect [-Werror,-Wignored-qualifiers]'.
bugref:10619

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
Line 
1/* $Id: ConsoleSharedFolderImpl.h 105088 2024-07-01 23:48:50Z 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
37class Console;
38
39class ATL_NO_VTABLE ConsoleSharedFolder :
40 public SharedFolderWrap
41{
42public:
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 /**
92 * Public internal method for getting the symlink policy.
93 */
94 SymlinkPolicy_T i_getSymlinkPolicy() const;
95
96protected:
97
98 HRESULT i_protectedInit(VirtualBoxBase *aParent,
99 const Utf8Str &aName,
100 const Utf8Str &aHostPath,
101 bool aWritable,
102 bool aAutoMount,
103 const com::Utf8Str &aAutoMountPoint,
104 bool fFailOnError);
105private:
106
107 // wrapped ISharedFolder properties.
108 HRESULT getName(com::Utf8Str &aName);
109 HRESULT getHostPath(com::Utf8Str &aHostPath);
110 HRESULT getAccessible(BOOL *aAccessible);
111 HRESULT getWritable(BOOL *aWritable);
112 HRESULT setWritable(BOOL aWritable);
113 HRESULT getAutoMount(BOOL *aAutoMount);
114 HRESULT setAutoMount(BOOL aAutoMount);
115 HRESULT getAutoMountPoint(com::Utf8Str &aAutoMountPoint);
116 HRESULT setAutoMountPoint(com::Utf8Str const &aAutoMountPoint);
117 HRESULT getLastAccessError(com::Utf8Str &aLastAccessError);
118 HRESULT getSymlinkPolicy(SymlinkPolicy_T *aSymlinkPolicy);
119 HRESULT setSymlinkPolicy(SymlinkPolicy_T aSymlinkPolicy);
120
121 VirtualBoxBase * const mParent;
122
123 /* weak parents (only one of them is not null) */
124 Console * const mConsole;
125
126 struct Data; // opaque data struct, defined in ConsoleSharedFolderImpl.cpp
127 Data *m;
128};
129
130#endif /* !MAIN_INCLUDED_ConsoleSharedFolderImpl_h */
131/* vi: set tabstop=4 shiftwidth=4 expandtab: */
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