1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/*
This file is part of the KDE libraries
Copyright (c) 2003 Waldo Bastian <bastian@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef _KMOUNTPOINT_H_
#define _KMOUNTPOINT_H_
#include <tqptrlist.h>
#include <tqstringlist.h>
#include <ksharedptr.h>
/**
* The KMountPoint class provides information about mounted and unmounted disks.
* It provides a system independent interface to fstab.
*
* @author Waldo Bastian <bastian@kde.org>
* @since 3.2
*/
class TDECORE_EXPORT KMountPoint : public KShared
{
typedef signed long long int filesize_t;
public:
typedef KSharedPtr<KMountPoint> Ptr;
typedef TQValueList<Ptr> List;
public:
enum { NeedMountOptions = 1, NeedRealDeviceName = 2 };
/**
* This function gives a list of all possible mountpoints. (fstab)
* @param infoNeeded Flags that specify which additional information
* should be fetched.
*/
static KMountPoint::List possibleMountPoints(int infoNeeded=0);
/**
* This function gives a list of all currently used mountpoints. (mtab)
* @param infoNeeded Flags that specify which additional information
* should be fetched.
*/
static KMountPoint::List currentMountPoints(int infoNeeded=0);
/**
* Where this filesystem gets mounted from.
* This can refer to a device, a remote server or something else.
*/
TQString mountedFrom() const { return m_mountedFrom; }
/**
* Canonical name of the device where the filesystem got mounted from.
* (Or empty, if not a device)
* Only available when the NeedRealDeviceName flag was set.
*/
TQString realDeviceName() const { return m_device; }
/**
* Path where the filesystem is mounted or can be mounted.
*/
TQString mountPoint() const { return m_mountPoint; }
/**
* Type of filesystem
*/
TQString mountType() const { return m_mountType; }
/**
* Options used to mount the filesystem.
* Only available when the NeedMountOptions flag was set.
*/
TQStringList mountOptions() const { return m_mountOptions; }
/**
* When using supermount, the device name is in the options field
* as dev=/my/device
* @since 3.4
*/
static TQString devNameFromOptions(const TQStringList &options);
/**
* Destructor
*/
~KMountPoint();
private:
/**
* Constructor
*/
KMountPoint();
TQString m_mountedFrom;
TQString m_device;
TQString m_mountPoint;
TQString m_mountType;
TQStringList m_mountOptions;
class KMountPointPrivate;
KMountPointPrivate *d;
};
#endif // _KMOUNTPOINT_H_
|