-
Notifications
You must be signed in to change notification settings - Fork 0
/
DesktopEntry.cpp
240 lines (195 loc) · 5.43 KB
/
DesktopEntry.cpp
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/*
libmimeapps, an implementation of
http://standards.freedesktop.org/mime-apps-spec/mime-apps-spec-latest.html
Copyright (c) 2015, Piotr Wójcik
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "DesktopEntry.h"
#include <algorithm>
#include "ConfigReader.h"
#include "Tools.h"
namespace LibMimeApps
{
DesktopEntry::DesktopEntry():
noDisplay_(false),
hidden_(false),
allowMultiple_(false),
allowRemote_(false)
{
}
DesktopEntry::DesktopEntry(const std::string &baseDirectory, const std::string &relative, const std::string &language):
identifier_(relative),
path_(baseDirectory + relative),
noDisplay_(false),
hidden_(false),
allowMultiple_(false),
allowRemote_(false)
{
ConfigReader config(path_);
std::replace(identifier_.begin(), identifier_.end(), '/', '-');
name_ = getLocaleValue(config, std::string("Desktop Entry"), std::string("Name"), language);
icon_ = getLocaleValue(config, std::string("Desktop Entry"), std::string("Icon"), language);
executable_ = config.value(std::string("Desktop Entry"), std::string("Exec"));
types_ = split(config.value(std::string("Desktop Entry"), std::string("MimeType")), ';');
noDisplay_ = (config.value(std::string("Desktop Entry"), std::string("NoDisplay")) == std::string("true"));
hidden_ = (config.value(std::string("Desktop Entry"), std::string("Hidden")) == std::string("true"));
}
bool DesktopEntry::execAllowMultipleUrl()
{
parseExec();
return allowMultiple_;
}
bool DesktopEntry::execAllowRemoteUrl()
{
parseExec();
return allowRemote_;
}
std::vector<std::string> DesktopEntry::parseExec(const std::string &executable, const std::vector<std::string> &urls, ParseOptions options)
{
DesktopEntry entry;
entry.executable_ = executable;
return entry.parseExec(urls, options);
}
std::vector<std::string> DesktopEntry::parseExec(const std::vector<std::string> &urls, ParseOptions options)
{
std::vector<std::string> result;
bool quoted = false;
bool urlUsed = false;
result.push_back(std::string());
for (std::string::size_type i = 0; i < executable_.size();++i)
{
if (executable_.at(i) == ' ' && !quoted)
{
if (result.back().size() > 0)
{
result.push_back(std::string());
}
}
else if (executable_.at(i) == '"')
{
quoted = !quoted;
}
else if (executable_.at(i) == '\\')
{
++i;
result.back().push_back(executable_.at(i));
}
else if (executable_.at(i) == '%' && !quoted)
{
++i;
switch (executable_.at(i))
{
case 'u':
allowRemote_ = true;
//@fallthrough@
case 'f':
if (urls.size() > 0)
{
result.back() += urls.front();
}
urlUsed = true;
break;
case 'U':
allowRemote_ = true;
//@fallthrough@
case 'F':
allowMultiple_ = true;
if (urls.size() > 0)
{
result.back() += urls.front();
}
for (std::vector<std::string>::size_type i = 1; i < urls.size(); ++i)
{
result.push_back(urls.at(i));
}
urlUsed = true;
break;
case 'i':
if (icon_.size() > 0)
{
result.push_back(std::string("--icon"));
result.push_back(icon_);
}
break;
case 'c':
result.push_back(name_);
break;
case 'k':
result.push_back(path_);
break;
case '%':
result.back().push_back('%');
break;
default:
break;
}
}
else
{
result.back().push_back(executable_.at(i));
}
}
if (!urlUsed && isSet(options, ParseOptions::NecessarilyUseUrl))
{
result.insert(result.end(), urls.begin(), urls.end());
}
return result;
}
std::string DesktopEntry::name() const
{
return name_;
}
std::string DesktopEntry::icon() const
{
return icon_;
}
std::string DesktopEntry::executable() const
{
return executable_;
}
std::string DesktopEntry::identifier() const
{
return identifier_;
}
std::string DesktopEntry::path() const
{
return path_;
}
std::vector<std::string> DesktopEntry::types() const
{
return types_;
}
bool DesktopEntry::noDisplay() const
{
return noDisplay_;
}
bool DesktopEntry::hidden() const
{
return hidden_;
}
bool isSet(const DesktopEntry::ParseOptions options, const DesktopEntry::ParseOptions searchedFlag)
{
const unsigned int intOptions = static_cast<unsigned int>(options);
const unsigned int intSearchedFlag = static_cast<unsigned int>(searchedFlag);
return ((intOptions & intSearchedFlag) == intSearchedFlag);
}
}