WebUI: migrate to fetch API
[qBittorrent.git] / src / base / path.h
blob8e222bc64ca6f364e3355c5d847110343bbacba8
1 /*
2 * Bittorrent Client using Qt and libtorrent.
3 * Copyright (C) 2022 Vladimir Golovnev <glassez@yandex.ru>
4 * Copyright (C) 2012 Christophe Dumez <chris@qbittorrent.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * In addition, as a special exception, the copyright holders give permission to
21 * link this program with the OpenSSL project's "OpenSSL" library (or with
22 * modified versions of it that use the same license as the "OpenSSL" library),
23 * and distribute the linked executables. You must obey the GNU General Public
24 * License in all respects for all of the code used other than "OpenSSL". If you
25 * modify file(s), you may extend this exception to your version of the file(s),
26 * but you are not obligated to do so. If you do not wish to do so, delete this
27 * exception statement from your version.
30 #pragma once
32 #include <filesystem>
34 #include <QMetaType>
35 #include <QString>
37 #include "pathfwd.h"
39 class QStringView;
41 class Path final
43 public:
44 Path() = default;
46 explicit Path(const QString &pathStr);
47 explicit Path(const std::string &pathStr);
49 bool isValid() const;
50 bool isEmpty() const;
51 bool isAbsolute() const;
52 bool isRelative() const;
54 bool exists() const;
56 Path rootItem() const;
57 Path parentPath() const;
59 QString filename() const;
61 QString extension() const;
62 bool hasExtension(QStringView ext) const;
63 void removeExtension();
64 Path removedExtension() const;
65 void removeExtension(QStringView ext);
66 Path removedExtension(QStringView ext) const;
68 bool hasAncestor(const Path &other) const;
69 Path relativePathOf(const Path &childPath) const;
71 QString data() const;
72 QString toString() const;
73 std::filesystem::path toStdFsPath() const;
75 Path &operator/=(const Path &other);
76 Path &operator+=(QStringView str);
78 static Path commonPath(const Path &left, const Path &right);
80 static Path findRootFolder(const PathList &filePaths);
81 static void stripRootFolder(PathList &filePaths);
82 static void addRootFolder(PathList &filePaths, const Path &rootFolder);
84 friend Path operator/(const Path &lhs, const Path &rhs);
86 private:
87 // this constructor doesn't perform any checks
88 // so it's intended for internal use only
89 static Path createUnchecked(const QString &pathStr);
91 QString m_pathStr;
94 Q_DECLARE_METATYPE(Path)
96 bool operator==(const Path &lhs, const Path &rhs);
97 Path operator+(const Path &lhs, QStringView rhs);
99 QDataStream &operator<<(QDataStream &out, const Path &path);
100 QDataStream &operator>>(QDataStream &in, Path &path);
102 std::size_t qHash(const Path &key, std::size_t seed = 0);