/* This file is part of the KDE libraries Copyright (c) 2003 Waldo Bastian 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 #include #include /** * The KMountPoint class provides information about mounted and unmounted disks. * It provides a system independent interface to fstab. * * @author Waldo Bastian * @since 3.2 */ class TDECORE_EXPORT KMountPoint : public TDEShared { typedef signed long long int filesize_t; public: typedef TDESharedPtr Ptr; typedef TQValueList 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_