File: Xmlhighlighter.cpp

package info (click to toggle)
camitk 4.1.2-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 427,532 kB
  • sloc: cpp: 79,494; xml: 1,176; sh: 1,137; ansic: 142; makefile: 107; perl: 84; sed: 20
file content (379 lines) | stat: -rw-r--r-- 17,028 bytes parent folder | download | duplicates (2)
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
/*
** Copyright 2009-10 Martin Holmes, Meagan Timney and the
** University of Victoria Humanities Computing and Media
** Centre.

** This file is part of the projXMLEditor project which in
** turn belongs to the Image Markup Tool version 2.0
** project. The purpose of svgIconsTest is to provide a
** platform to test and learn various features of Qt, and
** to provide a semi-useful tool to aid in the rapid
** creation and editing of resource files containing SVG
** icons for Qt application development.

** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.

** You may also use this code under the Mozilla Public Licence
** version 1.1. MPL 1.1 can be found at http://www.mozilla.org/MPL/MPL-1.1.html.

** "svgIconsTest" 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.
**
** Modified 9-5-2011 by Aurelien DERAM
** colors changed to match Kate ones
*/

#include <QtGui>

#include "Xmlhighlighter.h"

//! [0]
XmlHighlighter::XmlHighlighter(QTextDocument* parent)
    : QSyntaxHighlighter(parent) {
    HighlightingRule rule;

    //Taken from W3C: <http://www.w3.org/TR/REC-xml/#sec-suggested-names>
    //These are removed: \\x10000-\\xEFFFF (we can't fit them into the \xhhhh format).
    const QString nameStartCharList = R"(:A-Z_a-z\x00C0-\x00D6\x00D8-\x00F6\x00F8-\x02FF\x0370-\x037D\x037F-\x1FFF\x200C-\x200D\x2070-\x218F\x2C00-\x2FEF\x3001-\xD7FF\xF900-\xFDCF\xFDF0-\xFFFD)";

    const QString nameCharList = nameStartCharList + R"(\-\.0-9\x00B7\x0300-\x036F\x203F-\x2040)";
    const QString nameStart = "[" + nameStartCharList + "]";
    const QString nameChar = "[" + nameCharList + "]";
    const QString xmlName = nameStart + "(" + nameChar + ")*";

    QFont font;
    font.setFamily("DejaVu Sans Mono");
    font.setFixedPitch(true);
    font.setItalic(false);
    font.setPointSize(10);
    font.setStyle(QFont::StyleNormal);

//Processing instructions.
    xmlProcInstStartExpression = QRegExp("<\\?");
    xmlProcInstEndExpression = QRegExp("\\?>");
    xmlProcInstFormat.setFont(font);
    xmlProcInstFormat.setForeground(Qt::black);
    xmlProcInstFormat.setFontItalic(false);

//Multiline comments.
    xmlCommentStartExpression = QRegExp("<!\\-\\-");
    xmlCommentStartExpression.setMinimal(true);
    xmlCommentEndExpression = QRegExp("\\-\\->");
    xmlCommentEndExpression.setMinimal(true);
    xmlCommentFormat.setFont(font);
    xmlCommentFormat.setForeground(Qt::lightGray);
    xmlCommentFormat.setFontItalic(false);

//Opening tags
    xmlOpenTagStartExpression = QRegExp("<" + xmlName);
    xmlOpenTagStartExpression.setMinimal(false);
    xmlOpenTagEndExpression = QRegExp(">");
    xmlOpenTagEndExpression.setMinimal(true);

//Closing tags: first shot, handling them as start-end pairs.
    xmlCloseTagStartExpression = QRegExp("</" + xmlName);
    xmlCloseTagStartExpression.setMinimal(false);
    xmlCloseTagEndExpression = QRegExp(">");
    xmlCloseTagEndExpression.setMinimal(true);

    xmlTagFormat.setFont(font);
    xmlTagFormat.setForeground(Qt::black);
    xmlTagFormat.setFontWeight(QFont::Bold);
    xmlTagFormat.setFontItalic(false);

//Attributes
    xmlAttributeStartExpression = QRegExp("\\s*" + xmlName + R"(\s*=\s*((\x0022)|(\x0027)))");
    xmlAttributeStartExpression.setMinimal(true);
    xmlAttributeEndExpression = QRegExp(R"((([^\x0022]*\x0022)|([^\x0027]*\x0027)))");
    xmlAttributeStartExpression.setMinimal(true);
    xmlAttributeFormat.setFont(font);
    xmlAttributeFormat.setForeground(Qt::darkGreen);
    xmlAttributeFormat.setFontItalic(false);

//Attribute values.
    xmlAttValStartExpression = QRegExp(R"(((\x0022[^\x0022]*)|(\x0027[^\x0027]*)))");
    xmlAttValStartExpression.setMinimal(true);
//The end expression varies depending on what's matched with the start expression (single or double quote).
//This regexp is actually reset repeatedly during the highlighting process.
    xmlAttValFormat.setFont(font);
    xmlAttValFormat.setForeground(Qt::darkRed);
    xmlAttValFormat.setFontItalic(false);


//The DOCTYPE declaration.
    xmlDoctypeStartExpression = QRegExp("<!DOCTYPE");
    xmlDoctypeEndExpression = QRegExp(">");
    xmlDoctypeFormat.setFont(font);
    xmlDoctypeFormat.setForeground(Qt::lightGray);
    xmlDoctypeFormat.setFontItalic(false);


//Next, XML entities. This is the first item we can assume not to be multiline,
//So this can be added to the rules. We add this to the second set of rules so
//that it can highlight inside attribute values.
    xmlEntityFormat.setFont(font);
    xmlEntityFormat.setForeground(Qt::darkGray);
    xmlEntityFormat.setFontItalic(true);
    rule.pattern = QRegExp("&" + xmlName + ";");
    rule.format = xmlEntityFormat;
    hlRules.append(rule);

}

void XmlHighlighter::highlightSubBlock(const QString& text, const int startIndex, const int currState) {
    if (startIndex >= text.length()) {
        return;
    }
    int offset, commentOffset, procInstOffset, doctypeOffset, openTagOffset, closeTagOffset;
    int matchedLength = 0;
    int lowest = -1;
    int newState = -1;

    int effectiveState = currState;
    if (currState < 0) {
        effectiveState = inNothing;
    }
    switch (effectiveState) {
        case (inNothing): {
//If we're not in anything, then what could be coming is either a comment, processing instruction, a doctype decl, or a tag (open or close).
            commentOffset = xmlCommentStartExpression.indexIn(text, startIndex);
            procInstOffset = xmlProcInstStartExpression.indexIn(text, startIndex);
            doctypeOffset = xmlDoctypeStartExpression.indexIn(text, startIndex);
            openTagOffset = xmlOpenTagStartExpression.indexIn(text, startIndex);
            closeTagOffset = xmlCloseTagStartExpression.indexIn(text, startIndex);
            if (commentOffset > lowest) {
                lowest = commentOffset;
                newState = inComment;
                matchedLength = xmlCommentStartExpression.matchedLength();
            }
            if ((procInstOffset > -1) && ((lowest == -1) || (procInstOffset < lowest))) {
                lowest = procInstOffset;
                newState = inProcInst;
                matchedLength = xmlProcInstStartExpression.matchedLength();
            }
            if ((doctypeOffset > -1) && ((lowest == -1) || (doctypeOffset < lowest))) {
                lowest = doctypeOffset;
                newState = inDoctypeDecl;
                matchedLength = xmlDoctypeStartExpression.matchedLength();
            }
            if ((openTagOffset > -1) && ((lowest == -1) || (openTagOffset < lowest))) {
                lowest = openTagOffset;
                newState = inOpenTag;
                matchedLength = xmlOpenTagStartExpression.matchedLength();
            }
            if ((closeTagOffset > -1) && ((lowest == -1) || (closeTagOffset < lowest))) {
                lowest = closeTagOffset;
                newState = inCloseTag;
                matchedLength = xmlCloseTagStartExpression.matchedLength();
            }
            switch (newState) {
                case -1: {
                    //Nothing starts in this block.
                    setCurrentBlockState(inNothing);
                    break;
                }
                case inComment: {
                    //We're into a comment.
                    setFormat(commentOffset, matchedLength, xmlCommentFormat);
                    setCurrentBlockState(inComment);
                    highlightSubBlock(text, commentOffset + matchedLength, inComment);
                    break;
                }
                case inProcInst: {
                    //We're into a processing instruction.
                    //Format the matched text
                    setFormat(procInstOffset, matchedLength, xmlProcInstFormat);
                    //Call this function again with a new offset and state.
                    setCurrentBlockState(inProcInst);
                    highlightSubBlock(text, procInstOffset + matchedLength, inProcInst);
                    break;
                }
                case inDoctypeDecl: {
                    //We're into a document type declaration.
                    //Format the matched text
                    setFormat(doctypeOffset, matchedLength, xmlDoctypeFormat);
                    //Call this function again with a new offset and state.
                    setCurrentBlockState(inDoctypeDecl);
                    highlightSubBlock(text, doctypeOffset + matchedLength, inDoctypeDecl);
                    break;
                }
                case inOpenTag: {
                    //We're into an opening tag.
                    //Format the matched text
                    setFormat(openTagOffset, matchedLength, xmlTagFormat);
                    //Call this function again with a new offset and state.
                    setCurrentBlockState(inOpenTag);
                    highlightSubBlock(text, openTagOffset + matchedLength, inOpenTag);
                    break;
                }
                case inCloseTag: {
                    //We're into a closing tag.
                    //Format the matched text
                    setFormat(closeTagOffset, matchedLength, xmlTagFormat);
                    setCurrentBlockState(inCloseTag);
                    //Call this function again with a new offset and state.
                    highlightSubBlock(text, closeTagOffset + matchedLength, inCloseTag);
                    break;
                }
            }
            break;
        }
        case inProcInst: {
            //Look for the end of the processing instruction.
            offset = xmlProcInstEndExpression.indexIn(text, startIndex);
            matchedLength = xmlProcInstEndExpression.matchedLength();
            if (offset > -1) {
                setFormat(startIndex, (offset + matchedLength) - startIndex, xmlProcInstFormat);
                setCurrentBlockState(inNothing);
                highlightSubBlock(text, offset + matchedLength, inNothing);
            }
            else {
                //We leave this block still inside the processing instruction,
                //after formatting the rest of the line.
                setFormat(startIndex, text.length() - startIndex, xmlProcInstFormat);
                setCurrentBlockState(inProcInst);
            }
            break;
        }
        case inDoctypeDecl: {
            //Look for the end of the doctype declaration.
            offset = xmlDoctypeEndExpression.indexIn(text, startIndex);
            matchedLength = xmlDoctypeEndExpression.matchedLength();
            if (offset > -1) {
                setFormat(startIndex, (offset + matchedLength) - startIndex, xmlDoctypeFormat);
                setCurrentBlockState(inNothing);
                highlightSubBlock(text, offset + matchedLength, inNothing);
            }
            else {
                //We leave this block still inside the doctype declaration,
                //after formatting the rest of the line.
                setFormat(startIndex, text.length() - startIndex, xmlDoctypeFormat);
                setCurrentBlockState(inDoctypeDecl);
            }
            break;
        }
        case inOpenTag: {
//If we're in an open tag, we're looking either for the end of the open tag, or for
//the beginning of an attribute name.
            int openTagEndOffset = xmlOpenTagEndExpression.indexIn(text, startIndex);
            int attStartOffset = xmlAttributeStartExpression.indexIn(text, startIndex);
            if (attStartOffset > -1) {
                lowest = attStartOffset;
                newState = inAttVal;
                matchedLength = xmlAttributeStartExpression.matchedLength();
            }
            if ((openTagEndOffset > -1) && ((lowest == -1) || (openTagEndOffset < lowest))) {
                lowest = openTagEndOffset;
                newState = inNothing;
                matchedLength = xmlOpenTagEndExpression.matchedLength();
            }
            switch (newState) {
                case -1: {
                    //we're still in a tag. No need to highlight anything.
                    setCurrentBlockState(inOpenTag);
                    break;
                }
                case inNothing: {
                    //We've come to the end of the open tag.
                    setFormat(openTagEndOffset, matchedLength, xmlTagFormat);
                    setCurrentBlockState(inNothing);
                    highlightSubBlock(text, openTagEndOffset + matchedLength, inNothing);
                    break;
                }
                case inAttVal: {
                    //We've started an attribute. First format the attribute name and quote.
                    setFormat(attStartOffset, matchedLength, xmlAttributeFormat);
                    //We need to change the value of the attribute close matcher, so that
                    //it pairs correctly with the opening quote.
                    QChar quote = text.at(attStartOffset + matchedLength - 1);
                    if (quote.unicode() == 0x27) {
                        xmlAttributeEndExpression = QRegExp("\\x0027");
                    }
                    else {
                        xmlAttributeEndExpression = QRegExp("\\x0022");
                    }
                    setCurrentBlockState(inAttVal);
                    highlightSubBlock(text, attStartOffset + matchedLength, inAttVal);
                    break;
                }
            }
            break;
        }
        case inAttVal: {
//When we're in an attribute value, we're only looking for the closing quote.
            offset = xmlAttributeEndExpression.indexIn(text, startIndex);
            if (offset > -1) {
                //Do some highlighting. First the attribute value.
                setFormat(startIndex, offset - startIndex, xmlAttValFormat);
                //Now the closing quote.
                setFormat(offset, 1, xmlAttributeFormat);
                setCurrentBlockState(inOpenTag);
                highlightSubBlock(text, offset + 1, inOpenTag);
            }
            else {
                //The attribute value runs over the end of the line.
                setFormat(startIndex, text.length() - startIndex, xmlAttValFormat);
                setCurrentBlockState(inAttVal);
            }
            break;
        }
        case inCloseTag: {
            int closeTagEndOffset = xmlCloseTagEndExpression.indexIn(text, startIndex);
            matchedLength = xmlCloseTagEndExpression.matchedLength();
            if (closeTagEndOffset > -1) {
                //We've found the end of the close tag.
                setFormat(closeTagEndOffset, matchedLength, xmlTagFormat);
                setCurrentBlockState(inNothing);
                highlightSubBlock(text, closeTagEndOffset + matchedLength, inNothing);
            }
            else {
                //There must be a linebreak inside the close tag.
                setCurrentBlockState(inCloseTag);
            }
            break;
        }
        case inComment: {
//Once we're in a comment, we just have to search for the end of it. Nothing else takes precedence.
            //Look for the end of the comment.
            offset = xmlCommentEndExpression.indexIn(text, startIndex);
            matchedLength = xmlCommentEndExpression.matchedLength();
            if (offset > -1) {
                setFormat(startIndex, (offset + matchedLength) - startIndex, xmlCommentFormat);
                setCurrentBlockState(inNothing);
                highlightSubBlock(text, offset + matchedLength, inNothing);
            }
            else {
                //We leave this block still inside the comment,
                //after formatting the rest of the line.
                setFormat(startIndex, text.length() - startIndex, xmlCommentFormat);
                setCurrentBlockState(inComment);
            }
            break;
        }
    }

}

void XmlHighlighter::highlightBlock(const QString& text) {
    //Do the main block highlighting.
    highlightSubBlock(text, 0, previousBlockState());

    //Run the set of inline rules.
    foreach (const HighlightingRule& rule, hlRules) {
        QRegExp expression(rule.pattern);
        int index = expression.indexIn(text);
        while (index >= 0) {
            int length = expression.matchedLength();
            setFormat(index, length, rule.format);
            index = expression.indexIn(text, index + length);
        }
    }
}