summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qstorageinfo_linux_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/io/qstorageinfo_linux_p.h')
-rw-r--r--src/corelib/io/qstorageinfo_linux_p.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/corelib/io/qstorageinfo_linux_p.h b/src/corelib/io/qstorageinfo_linux_p.h
new file mode 100644
index 0000000000..b9da13aa0a
--- /dev/null
+++ b/src/corelib/io/qstorageinfo_linux_p.h
@@ -0,0 +1,43 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// Copyright (C) 2014 Ivan Komissarov <ABBAPOH@gmail.com>
+// Copyright (C) 2016 Intel Corporation.
+// Copyright (C) 2023 Ahmad Samir <a.samirh78@gmail.com>
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+#ifndef QSTORAGEINFO_LINUX_P_H
+#define QSTORAGEINFO_LINUX_P_H
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API.
+// This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include "qstorageinfo_p.h"
+
+#include <sys/sysmacros.h> // makedev()
+
+QT_BEGIN_NAMESPACE
+
+using MountInfo = QStorageInfoPrivate::MountInfo;
+
+// parseMountInfo() is called from:
+// - QStorageInfoPrivate::initRootPath(), where a list of all mounted volumes is needed
+// - QStorageInfoPrivate::mountedVolumes(), where some filesystem types are ignored
+// (see shouldIncludefs())
+enum class FilterMountInfo {
+ All,
+ Filtered,
+};
+
+Q_AUTOTEST_EXPORT std::vector<MountInfo> doParseMountInfo(
+ const QByteArray &mountinfo, FilterMountInfo filter = FilterMountInfo::All);
+
+QT_END_NAMESPACE
+
+#endif // QSTORAGEINFO_LINUX_P_H