/**************************************************************************** ** ** Copyright (C) 2014 Ivan Komissarov ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or (at your option) the GNU General ** Public license version 3 or any later version approved by the KDE Free ** Qt Foundation. The licenses are as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-2.0.html and ** https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qstorageinfo.h" #include "qstorageinfo_p.h" QT_BEGIN_NAMESPACE /*! \class QStorageInfo \inmodule QtCore \since 5.4 \brief Provides information about currently mounted storage and drives. \ingroup io \ingroup shared Allows retrieving information about the volume's space, its mount point, label, and filesystem name. You can create an instance of QStorageInfo by passing the path to the volume's mount point as a constructor parameter, or you can set it using the setPath() method. The static mountedVolumes() method can be used to get the list of all mounted filesystems. QStorageInfo always caches the retrieved information, but you can call refresh() to invalidate the cache. The following example retrieves the most common information about the root volume of the system, and prints information about it. \snippet code/src_corelib_io_qstorageinfo.cpp 2 */ /*! Constructs an empty QStorageInfo object. Objects created with the default constructor will be invalid and therefore not ready for use. \sa setPath(), isReady(), isValid() */ QStorageInfo::QStorageInfo() : d(new QStorageInfoPrivate) { } /*! Constructs a new QStorageInfo object that gives information about the volume mounted at \a path. If you pass a directory or file, the QStorageInfo object will refer to the volume where this directory or file is located. You can check if the created object is correct using the isValid() method. The following example shows how to get the volume on which the application is located. It is recommended to always check that the volume is ready and valid. \snippet code/src_corelib_io_qstorageinfo.cpp 0 \sa setPath() */ QStorageInfo::QStorageInfo(const QString &path) : d(new QStorageInfoPrivate) { setPath(path); } /*! Constructs a new QStorageInfo object that gives information about the volume containing the \a dir folder. */ QStorageInfo::QStorageInfo(const QDir &dir) : d(new QStorageInfoPrivate) { setPath(dir.absolutePath()); } /*! Constructs a new QStorageInfo object that is a copy of the \a other QStorageInfo object. */ QStorageInfo::QStorageInfo(const QStorageInfo &other) : d(other.d) { } /*! Destroys the QStorageInfo object and frees its resources. */ QStorageInfo::~QStorageInfo() { } /*! Makes a copy of the QStorageInfo object \a other and assigns it to this QStorageInfo object. */ QStorageInfo &QStorageInfo::operator=(const QStorageInfo &other) { d = other.d; return *this; } /*! \fn QStorageInfo &QStorageInfo::operator=(QStorageInfo &&other) Assigns \a other to this QStorageInfo instance. */ /*! \fn void QStorageInfo::swap(QStorageInfo &other) Swaps this volume info with \a other. This function is very fast and never fails. */ /*! Sets this QStorageInfo object to the filesystem mounted where \a path is located. \a path can either be a root path of the filesystem, a directory, or a file within that filesystem. \sa rootPath() */ void QStorageInfo::setPath(const QString &path) { if (d->rootPath == path) return; d.detach(); d->rootPath = path; d->doStat(); } /*! Returns the mount point of the filesystem this QStorageInfo object represents. On Windows, it returns the volume letter in case the volume is not mounted to a directory. Note that the value returned by rootPath() is the real mount point of a volume, and may not be equal to the value passed to the constructor or setPath() method. For example, if you have only the root volume in the system, and pass '/directory' to setPath(), then this method will return '/'. \sa setPath(), device() */ QString QStorageInfo::rootPath() const { return d->rootPath; } /*! Returns the size (in bytes) available for the current user. It returns the total size available if the user is the root user or a system administrator. This size can be less than or equal to the free size returned by bytesFree() function. Returns -1 if QStorageInfo object is not valid. \sa bytesTotal(), bytesFree() */ qint64 QStorageInfo::bytesAvailable() const { return d->bytesAvailable; } /*! Returns the number of free bytes in a volume. Note that if there are quotas on the filesystem, this value can be larger than the value returned by bytesAvailable(). Returns -1 if QStorageInfo object is not valid. \sa bytesTotal(), bytesAvailable() */ qint64 QStorageInfo::bytesFree() const { return d->bytesFree; } /*! Returns the total volume size in bytes. Returns -1 if QStorageInfo object is not valid. \sa bytesFree(), bytesAvailable() */ qint64 QStorageInfo::bytesTotal() const { return d->bytesTotal; } /*! \since 5.6 Returns the optimal transfer block size for this filesystem. Returns -1 if QStorageInfo could not determine the size or if the QStorageInfo object is not valid. */ int QStorageInfo::blockSize() const { return d->blockSize; } /*! Returns the type name of the filesystem. This is a platform-dependent function, and filesystem names can vary between different operating systems. For example, on Windows filesystems they can be named \c NTFS, and on Linux they can be named \c ntfs-3g or \c fuseblk. \sa name() */ QByteArray QStorageInfo::fileSystemType() const { return d->fileSystemType; } /*! Returns the device for this volume. For example, on Unix filesystems (including OS X), this returns the devpath like \c /dev/sda0 for local storages. On Windows, it returns the UNC path starting with \c \\\\?\\ for local storages (in other words, the volume GUID). \sa rootPath() */ QByteArray QStorageInfo::device() const { return d->device; } /*! Returns the human-readable name of a filesystem, usually called \c label. Not all filesystems support this feature. In this case, the value returned by this method could be empty. An empty string is returned if the file system does not support labels, or if no label is set. On Linux, retrieving the volume's label requires \c udev to be present in the system. \sa fileSystemType() */ QString QStorageInfo::name() const { return d->name; } /*! Returns the volume's name, if available, or the root path if not. */ QString QStorageInfo::displayName() const { if (!d->name.isEmpty()) return d->name; return d->rootPath; } /*! \fn bool QStorageInfo::isRoot() const Returns true if this QStorageInfo represents the system root volume; false otherwise. On Unix filesystems, the root volume is a volume mounted on \c /. On Windows, the root volume is the volume where the OS is installed. \sa root() */ /*! Returns true if the current filesystem is protected from writing; false otherwise. */ bool QStorageInfo::isReadOnly() const { return d->readOnly; } /*! Returns true if the current filesystem is ready to work; false otherwise. For example, false is returned if the CD volume is not inserted. Note that fileSystemType(), name(), bytesTotal(), bytesFree(), and bytesAvailable() will return invalid data until the volume is ready. \sa isValid() */ bool QStorageInfo::isReady() const { return d->ready; } /*! Returns true if the QStorageInfo specified by rootPath exists and is mounted correctly. \sa isReady() */ bool QStorageInfo::isValid() const { return d->valid; } /*! Resets QStorageInfo's internal cache. QStorageInfo caches information about storage to speed up performance. QStorageInfo retrieves information during object construction and/or when calling the setPath() method. You have to manually reset the cache by calling this function to update storage information. */ void QStorageInfo::refresh() { d.detach(); d->doStat(); } /*! Returns the list of QStorageInfo objects that corresponds to the list of currently mounted filesystems. On Windows, this returns the drives visible in the \gui{My Computer} folder. On Unix operating systems, it returns the list of all mounted filesystems (except for pseudo filesystems). Returns all currently mounted filesystems by default. The example shows how to retrieve all available filesystems, skipping read-only ones. \snippet code/src_corelib_io_qstorageinfo.cpp 1 \sa root() */ QList QStorageInfo::mountedVolumes() { return QStorageInfoPrivate::mountedVolumes(); } Q_GLOBAL_STATIC_WITH_ARGS(QStorageInfo, getRoot, (QStorageInfoPrivate::root())) /*! Returns a QStorageInfo object that represents the system root volume. On Unix systems this call returns the root ('/') volume; in Windows the volume where the operating system is installed. \sa isRoot() */ QStorageInfo QStorageInfo::root() { return *getRoot(); } /*! \fn inline bool operator==(const QStorageInfo &first, const QStorageInfo &second) \relates QStorageInfo Returns true if the \a first QStorageInfo object refers to the same drive or volume as the \a second; otherwise it returns false. Note that the result of comparing two invalid QStorageInfo objects is always positive. */ /*! \fn inline bool operator!=(const QStorageInfo &first, const QStorageInfo &second) \relates QStorageInfo Returns true if the \a first QStorageInfo object refers to a different drive or volume than the \a second; otherwise returns false. */ QT_END_NAMESPACE