1 | /* |
2 | This file is part of the KDE libraries |
3 | |
4 | SPDX-FileCopyrightText: 2003, 2007 Oswald Buddenhagen <ossi@kde.org> |
5 | |
6 | SPDX-License-Identifier: LGPL-2.0-or-later |
7 | */ |
8 | |
9 | #include "kshell.h" |
10 | #include "kshell_p.h" |
11 | #include "kuser.h" |
12 | |
13 | #include <QDir> |
14 | |
15 | QString KShell::homeDir(const QString &user) |
16 | { |
17 | if (user.isEmpty()) { |
18 | return QDir::homePath(); |
19 | } |
20 | return KUser(user).homeDir(); |
21 | } |
22 | |
23 | QString KShell::joinArgs(const QStringList &args) |
24 | { |
25 | QString ret; |
26 | for (const auto &arg : args) { |
27 | if (!ret.isEmpty()) { |
28 | ret.append(c: QLatin1Char(' ')); |
29 | } |
30 | ret += quoteArg(arg); |
31 | } |
32 | return ret; |
33 | } |
34 | |
35 | #ifdef Q_OS_WIN |
36 | #define ESCAPE '^' |
37 | #else |
38 | #define ESCAPE '\\' |
39 | #endif |
40 | |
41 | QString KShell::tildeExpand(const QString &fname) |
42 | { |
43 | if (!fname.isEmpty() && fname[0] == QLatin1Char('~')) { |
44 | int pos = fname.indexOf(c: QLatin1Char('/')); |
45 | if (pos < 0) { |
46 | return homeDir(user: fname.mid(position: 1)); |
47 | } |
48 | QString ret = homeDir(user: fname.mid(position: 1, n: pos - 1)); |
49 | if (!ret.isNull()) { |
50 | ret += QStringView(fname).mid(pos); |
51 | } |
52 | return ret; |
53 | } else if (fname.length() > 1 && fname[0] == QLatin1Char(ESCAPE) && fname[1] == QLatin1Char('~')) { |
54 | return fname.mid(position: 1); |
55 | } |
56 | return fname; |
57 | } |
58 | |
59 | QString KShell::tildeCollapse(const QString &path) |
60 | { |
61 | if (!path.isEmpty()) { |
62 | const auto homePath = QDir::homePath(); |
63 | if (path.startsWith(s: homePath)) { |
64 | auto newPath = path; |
65 | newPath.replace(i: 0, len: homePath.length(), after: QLatin1Char('~')); |
66 | return newPath; |
67 | } |
68 | } |
69 | return path; |
70 | } |
71 | |