-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathurlinfo.h
106 lines (92 loc) · 3.56 KB
/
urlinfo.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* This file is part of the KDE project
Copyright (C) 2015 Milian Wolff <[email protected]>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) version 3, or any
later version accepted by the membership of KDE e.V. (or its
successor approved by the membership of KDE e.V.), which shall
act as a proxy defined in Section 6 of version 3 of the license.
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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef URLINFO_H
#define URLINFO_H
#include <KTextEditor/Cursor>
#include <QDir>
#include <QRegularExpression>
#include <QString>
#include <QUrl>
/**
* Represents a file to be opened, consisting of its URL and the cursor to jump to.
*/
class UrlInfo
{
public:
/**
* Parses a file path argument and determines its line number and column and full path
* @param path path passed on e.g. command line to parse into an URL
*/
UrlInfo(QString path)
: cursor(KTextEditor::Cursor::invalid())
{
/**
* first try: just check if the path is an existing file
*/
if (QFile::exists(path)) {
/**
* create absolute file path, we will e.g. pass this over dbus to other processes
* and then we are done, no cursor can be detected here!
*/
url = QUrl::fromLocalFile(QDir::current().absoluteFilePath(path));
return;
}
/**
* ok, the path as is, is no existing file, now, cut away :xx:yy stuff as cursor
* this will make test:50 to test with line 50
*/
const auto match = QRegularExpression(QStringLiteral(":(\\d+)(?::(\\d+))?:?$")).match(path);
if (match.isValid()) {
/**
* cut away the line/column specification from the path
*/
path.chop(match.capturedLength());
/**
* set right cursor position
* don't use an invalid column when the line is valid
*/
const int line = match.captured(1).toInt() - 1;
const int column = qMax(0, match.captured(2).toInt() - 1);
cursor.setPosition(line, column);
}
/**
* construct url:
* - make relative paths absolute using the current working directory
* - prefer local file, if in doubt!
*/
url = QUrl::fromUserInput(path, QDir::currentPath(), QUrl::AssumeLocalFile);
/**
* in some cases, this will fail, e.g. if you have line/column specs like test.c:10:1
* => fallback: assume a local file and just convert it to an url
*/
if (!url.isValid()) {
/**
* create absolute file path, we will e.g. pass this over dbus to other processes
*/
url = QUrl::fromLocalFile(QDir::current().absoluteFilePath(path));
}
}
/**
* url computed out of the passed path
*/
QUrl url;
/**
* initial cursor position, if any found inside the path as line/column specification at the end
*/
KTextEditor::Cursor cursor;
};
#endif // URLINFO_H