Absolute File Name: | /home/qt/qt5_coco/qt5/qtbase/src/corelib/mimetypes/qmimetypeparser.cpp |
Source code | Switch to Preprocessed file |
Line | Source | Count | ||||||
---|---|---|---|---|---|---|---|---|
1 | /**************************************************************************** | - | ||||||
2 | ** | - | ||||||
3 | ** Copyright (C) 2016 The Qt Company Ltd. | - | ||||||
4 | ** Contact: https://www.qt.io/licensing/ | - | ||||||
5 | ** | - | ||||||
6 | ** This file is part of the QtCore module of the Qt Toolkit. | - | ||||||
7 | ** | - | ||||||
8 | ** $QT_BEGIN_LICENSE:LGPL$ | - | ||||||
9 | ** Commercial License Usage | - | ||||||
10 | ** Licensees holding valid commercial Qt licenses may use this file in | - | ||||||
11 | ** accordance with the commercial license agreement provided with the | - | ||||||
12 | ** Software or, alternatively, in accordance with the terms contained in | - | ||||||
13 | ** a written agreement between you and The Qt Company. For licensing terms | - | ||||||
14 | ** and conditions see https://www.qt.io/terms-conditions. For further | - | ||||||
15 | ** information use the contact form at https://www.qt.io/contact-us. | - | ||||||
16 | ** | - | ||||||
17 | ** GNU Lesser General Public License Usage | - | ||||||
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser | - | ||||||
19 | ** General Public License version 3 as published by the Free Software | - | ||||||
20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the | - | ||||||
21 | ** packaging of this file. Please review the following information to | - | ||||||
22 | ** ensure the GNU Lesser General Public License version 3 requirements | - | ||||||
23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. | - | ||||||
24 | ** | - | ||||||
25 | ** GNU General Public License Usage | - | ||||||
26 | ** Alternatively, this file may be used under the terms of the GNU | - | ||||||
27 | ** General Public License version 2.0 or (at your option) the GNU General | - | ||||||
28 | ** Public license version 3 or any later version approved by the KDE Free | - | ||||||
29 | ** Qt Foundation. The licenses are as published by the Free Software | - | ||||||
30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 | - | ||||||
31 | ** included in the packaging of this file. Please review the following | - | ||||||
32 | ** information to ensure the GNU General Public License requirements will | - | ||||||
33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and | - | ||||||
34 | ** https://www.gnu.org/licenses/gpl-3.0.html. | - | ||||||
35 | ** | - | ||||||
36 | ** $QT_END_LICENSE$ | - | ||||||
37 | ** | - | ||||||
38 | ****************************************************************************/ | - | ||||||
39 | - | |||||||
40 | #define QT_NO_CAST_FROM_ASCII | - | ||||||
41 | - | |||||||
42 | #include "qmimetypeparser_p.h" | - | ||||||
43 | - | |||||||
44 | #ifndef QT_NO_MIMETYPE | - | ||||||
45 | - | |||||||
46 | #include "qmimetype_p.h" | - | ||||||
47 | #include "qmimemagicrulematcher_p.h" | - | ||||||
48 | - | |||||||
49 | #include <QtCore/QCoreApplication> | - | ||||||
50 | #include <QtCore/QDebug> | - | ||||||
51 | #include <QtCore/QDir> | - | ||||||
52 | #include <QtCore/QPair> | - | ||||||
53 | #include <QtCore/QXmlStreamReader> | - | ||||||
54 | #include <QtCore/QXmlStreamWriter> | - | ||||||
55 | #include <QtCore/QStack> | - | ||||||
56 | - | |||||||
57 | QT_BEGIN_NAMESPACE | - | ||||||
58 | - | |||||||
59 | // XML tags in MIME files | - | ||||||
60 | static const char mimeInfoTagC[] = "mime-info"; | - | ||||||
61 | static const char mimeTypeTagC[] = "mime-type"; | - | ||||||
62 | static const char mimeTypeAttributeC[] = "type"; | - | ||||||
63 | static const char subClassTagC[] = "sub-class-of"; | - | ||||||
64 | static const char commentTagC[] = "comment"; | - | ||||||
65 | static const char genericIconTagC[] = "generic-icon"; | - | ||||||
66 | static const char iconTagC[] = "icon"; | - | ||||||
67 | static const char nameAttributeC[] = "name"; | - | ||||||
68 | static const char globTagC[] = "glob"; | - | ||||||
69 | static const char aliasTagC[] = "alias"; | - | ||||||
70 | static const char patternAttributeC[] = "pattern"; | - | ||||||
71 | static const char weightAttributeC[] = "weight"; | - | ||||||
72 | static const char caseSensitiveAttributeC[] = "case-sensitive"; | - | ||||||
73 | static const char localeAttributeC[] = "xml:lang"; | - | ||||||
74 | - | |||||||
75 | static const char magicTagC[] = "magic"; | - | ||||||
76 | static const char priorityAttributeC[] = "priority"; | - | ||||||
77 | - | |||||||
78 | static const char matchTagC[] = "match"; | - | ||||||
79 | static const char matchValueAttributeC[] = "value"; | - | ||||||
80 | static const char matchTypeAttributeC[] = "type"; | - | ||||||
81 | static const char matchOffsetAttributeC[] = "offset"; | - | ||||||
82 | static const char matchMaskAttributeC[] = "mask"; | - | ||||||
83 | - | |||||||
84 | /*! | - | ||||||
85 | \class QMimeTypeParser | - | ||||||
86 | \inmodule QtCore | - | ||||||
87 | \internal | - | ||||||
88 | \brief The QMimeTypeParser class parses MIME types, and builds a MIME database hierarchy by adding to QMimeDatabasePrivate. | - | ||||||
89 | - | |||||||
90 | Populates QMimeDataBase | - | ||||||
91 | - | |||||||
92 | \sa QMimeDatabase, QMimeMagicRuleMatcher, MagicRule, MagicStringRule, MagicByteRule, GlobPattern | - | ||||||
93 | \sa QMimeTypeParser | - | ||||||
94 | */ | - | ||||||
95 | - | |||||||
96 | /*! | - | ||||||
97 | \class QMimeTypeParserBase | - | ||||||
98 | \inmodule QtCore | - | ||||||
99 | \internal | - | ||||||
100 | \brief The QMimeTypeParserBase class parses for a sequence of <mime-type> in a generic way. | - | ||||||
101 | - | |||||||
102 | Calls abstract handler function process for QMimeType it finds. | - | ||||||
103 | - | |||||||
104 | \sa QMimeDatabase, QMimeMagicRuleMatcher, MagicRule, MagicStringRule, MagicByteRule, GlobPattern | - | ||||||
105 | \sa QMimeTypeParser | - | ||||||
106 | */ | - | ||||||
107 | - | |||||||
108 | /*! | - | ||||||
109 | \fn virtual bool QMimeTypeParserBase::process(const QMimeType &t, QString *errorMessage) = 0; | - | ||||||
110 | Overwrite to process the sequence of parsed data | - | ||||||
111 | */ | - | ||||||
112 | - | |||||||
113 | QMimeTypeParserBase::ParseState QMimeTypeParserBase::nextState(ParseState currentState, const QStringRef &startElement) | - | ||||||
114 | { | - | ||||||
115 | switch (currentState) { | - | ||||||
116 | case ParseBeginning: executed 17 times by 1 test: case ParseBeginning: Executed by:
| 17 | ||||||
117 | if (startElement == QLatin1String(mimeInfoTagC))
| 0-17 | ||||||
118 | return ParseMimeInfo; executed 17 times by 1 test: return ParseMimeInfo; Executed by:
| 17 | ||||||
119 | if (startElement == QLatin1String(mimeTypeTagC))
| 0 | ||||||
120 | return ParseMimeType; never executed: return ParseMimeType; | 0 | ||||||
121 | return ParseError; never executed: return ParseError; | 0 | ||||||
122 | case ParseMimeInfo: executed 17 times by 1 test: case ParseMimeInfo: Executed by:
| 17 | ||||||
123 | return startElement == QLatin1String(mimeTypeTagC) ? ParseMimeType : ParseError; executed 17 times by 1 test: return startElement == QLatin1String(mimeTypeTagC) ? ParseMimeType : ParseError; Executed by:
| 17 | ||||||
124 | case ParseMimeType: executed 3319 times by 1 test: case ParseMimeType: Executed by:
| 3319 | ||||||
125 | case ParseComment: executed 134104 times by 1 test: case ParseComment: Executed by:
| 134104 | ||||||
126 | case ParseGenericIcon: executed 1575 times by 1 test: case ParseGenericIcon: Executed by:
| 1575 | ||||||
127 | case ParseIcon: never executed: case ParseIcon: | 0 | ||||||
128 | case ParseGlobPattern: executed 4132 times by 1 test: case ParseGlobPattern: Executed by:
| 4132 | ||||||
129 | case ParseSubClass: executed 1560 times by 1 test: case ParseSubClass: Executed by:
| 1560 | ||||||
130 | case ParseAlias: executed 975 times by 1 test: case ParseAlias: Executed by:
| 975 | ||||||
131 | case ParseOtherMimeTypeSubTag: executed 1825 times by 1 test: case ParseOtherMimeTypeSubTag: Executed by:
| 1825 | ||||||
132 | case ParseMagicMatchRule: executed 4052 times by 1 test: case ParseMagicMatchRule: Executed by:
| 4052 | ||||||
133 | if (startElement == QLatin1String(mimeTypeTagC)) // Sequence of <mime-type>
| 3302-148240 | ||||||
134 | return ParseMimeType; executed 3302 times by 1 test: return ParseMimeType; Executed by:
| 3302 | ||||||
135 | if (startElement == QLatin1String(commentTagC ))
| 14136-134104 | ||||||
136 | return ParseComment; executed 134104 times by 1 test: return ParseComment; Executed by:
| 134104 | ||||||
137 | if (startElement == QLatin1String(genericIconTagC))
| 1575-12561 | ||||||
138 | return ParseGenericIcon; executed 1575 times by 1 test: return ParseGenericIcon; Executed by:
| 1575 | ||||||
139 | if (startElement == QLatin1String(iconTagC))
| 0-12561 | ||||||
140 | return ParseIcon; never executed: return ParseIcon; | 0 | ||||||
141 | if (startElement == QLatin1String(globTagC))
| 4136-8425 | ||||||
142 | return ParseGlobPattern; executed 4136 times by 1 test: return ParseGlobPattern; Executed by:
| 4136 | ||||||
143 | if (startElement == QLatin1String(subClassTagC))
| 1560-6865 | ||||||
144 | return ParseSubClass; executed 1560 times by 1 test: return ParseSubClass; Executed by:
| 1560 | ||||||
145 | if (startElement == QLatin1String(aliasTagC))
| 975-5890 | ||||||
146 | return ParseAlias; executed 975 times by 1 test: return ParseAlias; Executed by:
| 975 | ||||||
147 | if (startElement == QLatin1String(magicTagC))
| 1733-4157 | ||||||
148 | return ParseMagic; executed 1733 times by 1 test: return ParseMagic; Executed by:
| 1733 | ||||||
149 | if (startElement == QLatin1String(matchTagC))
| 1832-2325 | ||||||
150 | return ParseMagicMatchRule; executed 2325 times by 1 test: return ParseMagicMatchRule; Executed by:
| 2325 | ||||||
151 | return ParseOtherMimeTypeSubTag; executed 1832 times by 1 test: return ParseOtherMimeTypeSubTag; Executed by:
| 1832 | ||||||
152 | case ParseMagic: executed 1733 times by 1 test: case ParseMagic: Executed by:
| 1733 | ||||||
153 | if (startElement == QLatin1String(matchTagC))
| 0-1733 | ||||||
154 | return ParseMagicMatchRule; executed 1733 times by 1 test: return ParseMagicMatchRule; Executed by:
| 1733 | ||||||
155 | break; never executed: break; | 0 | ||||||
156 | case ParseError: never executed: case ParseError: | 0 | ||||||
157 | break; never executed: break; | 0 | ||||||
158 | } | - | ||||||
159 | return ParseError; never executed: return ParseError; | 0 | ||||||
160 | } | - | ||||||
161 | - | |||||||
162 | // Parse int number from an (attribute) string | - | ||||||
163 | bool QMimeTypeParserBase::parseNumber(const QStringRef &n, int *target, QString *errorMessage) | - | ||||||
164 | { | - | ||||||
165 | bool ok; | - | ||||||
166 | *target = n.toInt(&ok); | - | ||||||
167 | if (Q_UNLIKELY(!ok)) {
| 0-9733 | ||||||
168 | *errorMessage = QLatin1String("Not a number '") + n + QLatin1String("'."); | - | ||||||
169 | return false; never executed: return false; | 0 | ||||||
170 | } | - | ||||||
171 | return true; executed 9733 times by 1 test: return true; Executed by:
| 9733 | ||||||
172 | } | - | ||||||
173 | - | |||||||
174 | #ifndef QT_NO_XMLSTREAMREADER | - | ||||||
175 | struct CreateMagicMatchRuleResult { | - | ||||||
176 | QString errorMessage; // must be first | - | ||||||
177 | QMimeMagicRule rule; | - | ||||||
178 | - | |||||||
179 | CreateMagicMatchRuleResult(const QStringRef &type, const QStringRef &value, const QStringRef &offsets, const QStringRef &mask) | - | ||||||
180 | : errorMessage(), rule(type.toString(), value.toUtf8(), offsets.toString(), mask.toLatin1(), &errorMessage) | - | ||||||
181 | { | - | ||||||
182 | - | |||||||
183 | } executed 4058 times by 1 test: end of block Executed by:
| 4058 | ||||||
184 | }; | - | ||||||
185 | - | |||||||
186 | static CreateMagicMatchRuleResult createMagicMatchRule(const QXmlStreamAttributes &atts) | - | ||||||
187 | { | - | ||||||
188 | const QStringRef type = atts.value(QLatin1String(matchTypeAttributeC)); | - | ||||||
189 | const QStringRef value = atts.value(QLatin1String(matchValueAttributeC)); | - | ||||||
190 | const QStringRef offsets = atts.value(QLatin1String(matchOffsetAttributeC)); | - | ||||||
191 | const QStringRef mask = atts.value(QLatin1String(matchMaskAttributeC)); | - | ||||||
192 | return CreateMagicMatchRuleResult(type, value, offsets, mask); executed 4058 times by 1 test: return CreateMagicMatchRuleResult(type, value, offsets, mask); Executed by:
| 4058 | ||||||
193 | } | - | ||||||
194 | #endif | - | ||||||
195 | - | |||||||
196 | bool QMimeTypeParserBase::parse(QIODevice *dev, const QString &fileName, QString *errorMessage) | - | ||||||
197 | { | - | ||||||
198 | #ifdef QT_NO_XMLSTREAMREADER | - | ||||||
199 | if (errorMessage) | - | ||||||
200 | *errorMessage = QString::fromLatin1("QXmlStreamReader is not available, cannot parse."); | - | ||||||
201 | return false; | - | ||||||
202 | #else | - | ||||||
203 | QMimeTypePrivate data; | - | ||||||
204 | int priority = 50; | - | ||||||
205 | QStack<QMimeMagicRule *> currentRules; // stack for the nesting of rules | - | ||||||
206 | QList<QMimeMagicRule> rules; // toplevel rules | - | ||||||
207 | QXmlStreamReader reader(dev); | - | ||||||
208 | ParseState ps = ParseBeginning; | - | ||||||
209 | while (!reader.atEnd()) {
| 17-333413 | ||||||
210 | switch (reader.readNext()) { | - | ||||||
211 | case QXmlStreamReader::StartElement: { executed 153309 times by 1 test: case QXmlStreamReader::StartElement: Executed by:
| 153309 | ||||||
212 | ps = nextState(ps, reader.name()); | - | ||||||
213 | const QXmlStreamAttributes atts = reader.attributes(); | - | ||||||
214 | switch (ps) { | - | ||||||
215 | case ParseMimeType: { // start parsing a MIME type name executed 3319 times by 1 test: case ParseMimeType: Executed by:
| 3319 | ||||||
216 | const QString name = atts.value(QLatin1String(mimeTypeAttributeC)).toString(); | - | ||||||
217 | if (name.isEmpty()) {
| 0-3319 | ||||||
218 | reader.raiseError(QStringLiteral("Missing 'type'-attribute")); never executed: return qstring_literal_temp; | 0 | ||||||
219 | } else { never executed: end of block | 0 | ||||||
220 | data.name = name; | - | ||||||
221 | } executed 3319 times by 1 test: end of block Executed by:
| 3319 | ||||||
222 | } | - | ||||||
223 | break; executed 3319 times by 1 test: break; Executed by:
| 3319 | ||||||
224 | case ParseGenericIcon: executed 1575 times by 1 test: case ParseGenericIcon: Executed by:
| 1575 | ||||||
225 | data.genericIconName = atts.value(QLatin1String(nameAttributeC)).toString(); | - | ||||||
226 | break; executed 1575 times by 1 test: break; Executed by:
| 1575 | ||||||
227 | case ParseIcon: never executed: case ParseIcon: | 0 | ||||||
228 | data.iconName = atts.value(QLatin1String(nameAttributeC)).toString(); | - | ||||||
229 | break; never executed: break; | 0 | ||||||
230 | case ParseGlobPattern: { executed 4136 times by 1 test: case ParseGlobPattern: Executed by:
| 4136 | ||||||
231 | const QString pattern = atts.value(QLatin1String(patternAttributeC)).toString(); | - | ||||||
232 | unsigned weight = atts.value(QLatin1String(weightAttributeC)).toInt(); | - | ||||||
233 | const bool caseSensitive = atts.value(QLatin1String(caseSensitiveAttributeC)) == QLatin1String("true"); | - | ||||||
234 | - | |||||||
235 | if (weight == 0)
| 10-4126 | ||||||
236 | weight = QMimeGlobPattern::DefaultWeight; executed 4126 times by 1 test: weight = QMimeGlobPattern::DefaultWeight; Executed by:
| 4126 | ||||||
237 | - | |||||||
238 | Q_ASSERT(!data.name.isEmpty()); | - | ||||||
239 | const QMimeGlobPattern glob(pattern, data.name, weight, caseSensitive ? Qt::CaseSensitive : Qt::CaseInsensitive); | - | ||||||
240 | if (!process(glob, errorMessage)) // for actual glob matching
| 0-4136 | ||||||
241 | return false; never executed: return false; | 0 | ||||||
242 | data.addGlobPattern(pattern); // just for QMimeType::globPatterns() | - | ||||||
243 | } | - | ||||||
244 | break; executed 4136 times by 1 test: break; Executed by:
| 4136 | ||||||
245 | case ParseSubClass: { executed 1560 times by 1 test: case ParseSubClass: Executed by:
| 1560 | ||||||
246 | const QString inheritsFrom = atts.value(QLatin1String(mimeTypeAttributeC)).toString(); | - | ||||||
247 | if (!inheritsFrom.isEmpty())
| 0-1560 | ||||||
248 | processParent(data.name, inheritsFrom); executed 1560 times by 1 test: processParent(data.name, inheritsFrom); Executed by:
| 1560 | ||||||
249 | } | - | ||||||
250 | break; executed 1560 times by 1 test: break; Executed by:
| 1560 | ||||||
251 | case ParseComment: { executed 134104 times by 1 test: case ParseComment: Executed by:
| 134104 | ||||||
252 | // comments have locale attributes. We want the default, English one | - | ||||||
253 | QString locale = atts.value(QLatin1String(localeAttributeC)).toString(); | - | ||||||
254 | const QString comment = reader.readElementText(); | - | ||||||
255 | if (locale.isEmpty())
| 3319-130785 | ||||||
256 | locale = QString::fromLatin1("en_US"); executed 3319 times by 1 test: locale = QString::fromLatin1("en_US"); Executed by:
| 3319 | ||||||
257 | data.localeComments.insert(locale, comment); | - | ||||||
258 | } | - | ||||||
259 | break; executed 134104 times by 1 test: break; Executed by:
| 134104 | ||||||
260 | case ParseAlias: { executed 975 times by 1 test: case ParseAlias: Executed by:
| 975 | ||||||
261 | const QString alias = atts.value(QLatin1String(mimeTypeAttributeC)).toString(); | - | ||||||
262 | if (!alias.isEmpty())
| 0-975 | ||||||
263 | processAlias(alias, data.name); executed 975 times by 1 test: processAlias(alias, data.name); Executed by:
| 975 | ||||||
264 | } | - | ||||||
265 | break; executed 975 times by 1 test: break; Executed by:
| 975 | ||||||
266 | case ParseMagic: { executed 1733 times by 1 test: case ParseMagic: Executed by:
| 1733 | ||||||
267 | priority = 50; | - | ||||||
268 | const QStringRef priorityS = atts.value(QLatin1String(priorityAttributeC)); | - | ||||||
269 | if (!priorityS.isEmpty()) {
| 116-1617 | ||||||
270 | if (!parseNumber(priorityS, &priority, errorMessage))
| 0-1617 | ||||||
271 | return false; never executed: return false; | 0 | ||||||
272 | - | |||||||
273 | } executed 1617 times by 1 test: end of block Executed by:
| 1617 | ||||||
274 | currentRules.clear(); | - | ||||||
275 | //qDebug() << "MAGIC start for mimetype" << data.name; | - | ||||||
276 | } | - | ||||||
277 | break; executed 1733 times by 1 test: break; Executed by:
| 1733 | ||||||
278 | case ParseMagicMatchRule: { executed 4058 times by 1 test: case ParseMagicMatchRule: Executed by:
| 4058 | ||||||
279 | auto result = createMagicMatchRule(atts); | - | ||||||
280 | if (Q_UNLIKELY(!result.rule.isValid()))
| 6-4052 | ||||||
281 | qWarning("QMimeDatabase: Error parsing %ls\n%ls", executed 6 times by 1 test: QMessageLogger(__FILE__, 281, __PRETTY_FUNCTION__).warning("QMimeDatabase: Error parsing %ls\n%ls", static_cast<const wchar_t*>(static_cast<const void*>(QString(fileName).utf16())), static_cast<const wchar_t*>(static_cast<const void*>(QString(result.errorMessage).utf16()))); Executed by:
| 6 | ||||||
282 | qUtf16Printable(fileName), qUtf16Printable(result.errorMessage)); executed 6 times by 1 test: QMessageLogger(__FILE__, 281, __PRETTY_FUNCTION__).warning("QMimeDatabase: Error parsing %ls\n%ls", static_cast<const wchar_t*>(static_cast<const void*>(QString(fileName).utf16())), static_cast<const wchar_t*>(static_cast<const void*>(QString(result.errorMessage).utf16()))); Executed by:
| 6 | ||||||
283 | QList<QMimeMagicRule> *ruleList; | - | ||||||
284 | if (currentRules.isEmpty())
| 1040-3018 | ||||||
285 | ruleList = &rules; executed 3018 times by 1 test: ruleList = &rules; Executed by:
| 3018 | ||||||
286 | else // nest this rule into the proper parent | - | ||||||
287 | ruleList = ¤tRules.top()->m_subMatches; executed 1040 times by 1 test: ruleList = ¤tRules.top()->m_subMatches; Executed by:
| 1040 | ||||||
288 | ruleList->append(std::move(result.rule)); | - | ||||||
289 | //qDebug() << " MATCH added. Stack size was" << currentRules.size(); | - | ||||||
290 | currentRules.push(&ruleList->last()); | - | ||||||
291 | break; executed 4058 times by 1 test: break; Executed by:
| 4058 | ||||||
292 | } | - | ||||||
293 | case ParseError: never executed: case ParseError: | 0 | ||||||
294 | reader.raiseError(QLatin1String("Unexpected element <") + reader.name() + QLatin1Char('>')); | - | ||||||
295 | break; never executed: break; | 0 | ||||||
296 | default: executed 1849 times by 1 test: default: Executed by:
| 1849 | ||||||
297 | break; executed 1849 times by 1 test: break; Executed by:
| 1849 | ||||||
298 | } | - | ||||||
299 | } | - | ||||||
300 | break; executed 153309 times by 1 test: break; Executed by:
| 153309 | ||||||
301 | // continue switch QXmlStreamReader::Token... | - | ||||||
302 | case QXmlStreamReader::EndElement: // Finished element executed 19205 times by 1 test: case QXmlStreamReader::EndElement: Executed by:
| 19205 | ||||||
303 | { | - | ||||||
304 | const QStringRef elementName = reader.name(); | - | ||||||
305 | if (elementName == QLatin1String(mimeTypeTagC)) {
| 3319-15886 | ||||||
306 | if (!process(QMimeType(data), errorMessage))
| 0-3319 | ||||||
307 | return false; never executed: return false; | 0 | ||||||
308 | data.clear(); | - | ||||||
309 | } else if (elementName == QLatin1String(matchTagC)) { executed 3319 times by 1 test: end of block Executed by:
| 3319-11828 | ||||||
310 | // Closing a <match> tag, pop stack | - | ||||||
311 | currentRules.pop(); | - | ||||||
312 | //qDebug() << " MATCH closed. Stack size is now" << currentRules.size(); | - | ||||||
313 | } else if (elementName == QLatin1String(magicTagC)) { executed 4058 times by 1 test: end of block Executed by:
| 1733-10095 | ||||||
314 | //qDebug() << "MAGIC ended, we got" << rules.count() << "rules, with prio" << priority; | - | ||||||
315 | // Finished a <magic> sequence | - | ||||||
316 | QMimeMagicRuleMatcher ruleMatcher(data.name, priority); | - | ||||||
317 | ruleMatcher.addRules(rules); | - | ||||||
318 | processMagicMatcher(ruleMatcher); | - | ||||||
319 | rules.clear(); | - | ||||||
320 | } executed 1733 times by 1 test: end of block Executed by:
| 1733 | ||||||
321 | break; executed 19205 times by 1 test: break; Executed by:
| 19205 | ||||||
322 | } | - | ||||||
323 | default: executed 160899 times by 1 test: default: Executed by:
| 160899 | ||||||
324 | break; executed 160899 times by 1 test: break; Executed by:
| 160899 | ||||||
325 | } | - | ||||||
326 | } | - | ||||||
327 | - | |||||||
328 | if (Q_UNLIKELY(reader.hasError())) {
| 0-17 | ||||||
329 | if (errorMessage) {
| 0 | ||||||
330 | *errorMessage = QString::asprintf("An error has been encountered at line %lld of %ls: %ls:", | - | ||||||
331 | reader.lineNumber(), | - | ||||||
332 | qUtf16Printable(fileName), | - | ||||||
333 | qUtf16Printable(reader.errorString())); | - | ||||||
334 | } never executed: end of block | 0 | ||||||
335 | return false; never executed: return false; | 0 | ||||||
336 | } | - | ||||||
337 | - | |||||||
338 | return true; executed 17 times by 1 test: return true; Executed by:
| 17 | ||||||
339 | #endif //QT_NO_XMLSTREAMREADER | - | ||||||
340 | } | - | ||||||
341 | - | |||||||
342 | QT_END_NAMESPACE | - | ||||||
343 | - | |||||||
344 | #endif // QT_NO_MIMETYPE | - | ||||||
Source code | Switch to Preprocessed file |