]>
git.saurik.com Git - wxWidgets.git/blob - src/stc/scintilla/lexers/LexNsis.cxx
1 // Scintilla source code edit control
5 // Copyright 2003 - 2005 by Angelo Mandato <angelo [at] spaceblue [dot] com>
6 // Last Updated: 03/13/2005
7 // The License.txt file describes the conditions under which this software may be distributed.
17 #include "Scintilla.h"
21 #include "LexAccessor.h"
23 #include "StyleContext.h"
24 #include "CharacterSet.h"
25 #include "LexerModule.h"
28 using namespace Scintilla
;
32 // located in SciLexer.h
35 #define SCE_NSIS_DEFAULT 0
36 #define SCE_NSIS_COMMENT 1
37 #define SCE_NSIS_STRINGDQ 2
38 #define SCE_NSIS_STRINGLQ 3
39 #define SCE_NSIS_STRINGRQ 4
40 #define SCE_NSIS_FUNCTION 5
41 #define SCE_NSIS_VARIABLE 6
42 #define SCE_NSIS_LABEL 7
43 #define SCE_NSIS_USERDEFINED 8
44 #define SCE_NSIS_SECTIONDEF 9
45 #define SCE_NSIS_SUBSECTIONDEF 10
46 #define SCE_NSIS_IFDEFINEDEF 11
47 #define SCE_NSIS_MACRODEF 12
48 #define SCE_NSIS_STRINGVAR 13
49 #define SCE_NSIS_NUMBER 14
50 // ADDED for Scintilla v1.63
51 #define SCE_NSIS_SECTIONGROUP 15
52 #define SCE_NSIS_PAGEEX 16
53 #define SCE_NSIS_FUNCTIONDEF 17
54 #define SCE_NSIS_COMMENTBOX 18
57 static bool isNsisNumber(char ch
)
59 return (ch
>= '0' && ch
<= '9');
62 static bool isNsisChar(char ch
)
64 return (ch
== '.' ) || (ch
== '_' ) || isNsisNumber(ch
) || (ch
>= 'A' && ch
<= 'Z') || (ch
>= 'a' && ch
<= 'z');
67 static bool isNsisLetter(char ch
)
69 return (ch
>= 'A' && ch
<= 'Z') || (ch
>= 'a' && ch
<= 'z');
72 static bool NsisNextLineHasElse(unsigned int start
, unsigned int end
, Accessor
&styler
)
75 for( unsigned int i
= start
; i
< end
; i
++ )
77 char cNext
= styler
.SafeGetCharAt( i
);
85 if( nNextLine
== -1 ) // We never found the next line...
88 for( unsigned int firstChar
= nNextLine
; firstChar
< end
; firstChar
++ )
90 char cNext
= styler
.SafeGetCharAt( firstChar
);
97 if( styler
.Match(firstChar
, "!else") )
106 static int NsisCmp( const char *s1
, const char *s2
, bool bIgnoreCase
)
109 return CompareCaseInsensitive( s1
, s2
);
111 return strcmp( s1
, s2
);
114 static int calculateFoldNsis(unsigned int start
, unsigned int end
, int foldlevel
, Accessor
&styler
, bool bElse
, bool foldUtilityCmd
)
116 int style
= styler
.StyleAt(end
);
118 // If the word is too long, it is not what we are looking for
119 if( end
- start
> 20 )
124 // Check the style at this point, if it is not valid, then return zero
125 if( style
!= SCE_NSIS_FUNCTIONDEF
&& style
!= SCE_NSIS_SECTIONDEF
&&
126 style
!= SCE_NSIS_SUBSECTIONDEF
&& style
!= SCE_NSIS_IFDEFINEDEF
&&
127 style
!= SCE_NSIS_MACRODEF
&& style
!= SCE_NSIS_SECTIONGROUP
&&
128 style
!= SCE_NSIS_PAGEEX
)
133 if( style
!= SCE_NSIS_FUNCTIONDEF
&& style
!= SCE_NSIS_SECTIONDEF
&&
134 style
!= SCE_NSIS_SUBSECTIONDEF
&& style
!= SCE_NSIS_SECTIONGROUP
&&
135 style
!= SCE_NSIS_PAGEEX
)
139 int newFoldlevel
= foldlevel
;
140 bool bIgnoreCase
= false;
141 if( styler
.GetPropertyInt("nsis.ignorecase") == 1 )
144 char s
[20]; // The key word we are looking for has atmost 13 characters
146 for (unsigned int i
= 0; i
< end
- start
+ 1 && i
< 19; i
++)
148 s
[i
] = static_cast<char>( styler
[ start
+ i
] );
154 if( NsisCmp(s
, "!ifndef", bIgnoreCase
) == 0 || NsisCmp(s
, "!ifdef", bIgnoreCase
) == 0 || NsisCmp(s
, "!ifmacrodef", bIgnoreCase
) == 0 || NsisCmp(s
, "!ifmacrondef", bIgnoreCase
) == 0 || NsisCmp(s
, "!if", bIgnoreCase
) == 0 || NsisCmp(s
, "!macro", bIgnoreCase
) == 0 )
156 else if( NsisCmp(s
, "!endif", bIgnoreCase
) == 0 || NsisCmp(s
, "!macroend", bIgnoreCase
) == 0 )
158 else if( bElse
&& NsisCmp(s
, "!else", bIgnoreCase
) == 0 )
163 if( NsisCmp(s
, "Section", bIgnoreCase
) == 0 || NsisCmp(s
, "SectionGroup", bIgnoreCase
) == 0 || NsisCmp(s
, "Function", bIgnoreCase
) == 0 || NsisCmp(s
, "SubSection", bIgnoreCase
) == 0 || NsisCmp(s
, "PageEx", bIgnoreCase
) == 0 )
165 else if( NsisCmp(s
, "SectionGroupEnd", bIgnoreCase
) == 0 || NsisCmp(s
, "SubSectionEnd", bIgnoreCase
) == 0 || NsisCmp(s
, "FunctionEnd", bIgnoreCase
) == 0 || NsisCmp(s
, "SectionEnd", bIgnoreCase
) == 0 || NsisCmp(s
, "PageExEnd", bIgnoreCase
) == 0 )
172 static int classifyWordNsis(unsigned int start
, unsigned int end
, WordList
*keywordLists
[], Accessor
&styler
)
174 bool bIgnoreCase
= false;
175 if( styler
.GetPropertyInt("nsis.ignorecase") == 1 )
178 bool bUserVars
= false;
179 if( styler
.GetPropertyInt("nsis.uservars") == 1 )
184 WordList
&Functions
= *keywordLists
[0];
185 WordList
&Variables
= *keywordLists
[1];
186 WordList
&Lables
= *keywordLists
[2];
187 WordList
&UserDefined
= *keywordLists
[3];
189 for (unsigned int i
= 0; i
< end
- start
+ 1 && i
< 99; i
++)
192 s
[i
] = static_cast<char>( tolower(styler
[ start
+ i
] ) );
194 s
[i
] = static_cast<char>( styler
[ start
+ i
] );
198 // Check for special words...
199 if( NsisCmp(s
, "!macro", bIgnoreCase
) == 0 || NsisCmp(s
, "!macroend", bIgnoreCase
) == 0 ) // Covers !macro and !macroend
200 return SCE_NSIS_MACRODEF
;
202 if( NsisCmp(s
, "!ifdef", bIgnoreCase
) == 0 || NsisCmp(s
, "!ifndef", bIgnoreCase
) == 0 || NsisCmp(s
, "!endif", bIgnoreCase
) == 0 ) // Covers !ifdef, !ifndef and !endif
203 return SCE_NSIS_IFDEFINEDEF
;
205 if( NsisCmp(s
, "!if", bIgnoreCase
) == 0 || NsisCmp(s
, "!else", bIgnoreCase
) == 0 ) // Covers !if and else
206 return SCE_NSIS_IFDEFINEDEF
;
208 if (NsisCmp(s
, "!ifmacrodef", bIgnoreCase
) == 0 || NsisCmp(s
, "!ifmacrondef", bIgnoreCase
) == 0 ) // Covers !ifmacrodef and !ifnmacrodef
209 return SCE_NSIS_IFDEFINEDEF
;
211 if( NsisCmp(s
, "SectionGroup", bIgnoreCase
) == 0 || NsisCmp(s
, "SectionGroupEnd", bIgnoreCase
) == 0 ) // Covers SectionGroup and SectionGroupEnd
212 return SCE_NSIS_SECTIONGROUP
;
214 if( NsisCmp(s
, "Section", bIgnoreCase
) == 0 || NsisCmp(s
, "SectionEnd", bIgnoreCase
) == 0 ) // Covers Section and SectionEnd
215 return SCE_NSIS_SECTIONDEF
;
217 if( NsisCmp(s
, "SubSection", bIgnoreCase
) == 0 || NsisCmp(s
, "SubSectionEnd", bIgnoreCase
) == 0 ) // Covers SubSection and SubSectionEnd
218 return SCE_NSIS_SUBSECTIONDEF
;
220 if( NsisCmp(s
, "PageEx", bIgnoreCase
) == 0 || NsisCmp(s
, "PageExEnd", bIgnoreCase
) == 0 ) // Covers PageEx and PageExEnd
221 return SCE_NSIS_PAGEEX
;
223 if( NsisCmp(s
, "Function", bIgnoreCase
) == 0 || NsisCmp(s
, "FunctionEnd", bIgnoreCase
) == 0 ) // Covers Function and FunctionEnd
224 return SCE_NSIS_FUNCTIONDEF
;
226 if ( Functions
.InList(s
) )
227 return SCE_NSIS_FUNCTION
;
229 if ( Variables
.InList(s
) )
230 return SCE_NSIS_VARIABLE
;
232 if ( Lables
.InList(s
) )
233 return SCE_NSIS_LABEL
;
235 if( UserDefined
.InList(s
) )
236 return SCE_NSIS_USERDEFINED
;
240 if( s
[1] == '{' && s
[strlen(s
)-1] == '}' )
241 return SCE_NSIS_VARIABLE
;
244 // See if the variable is a user defined variable
245 if( s
[0] == '$' && bUserVars
)
247 bool bHasSimpleNsisChars
= true;
248 for (unsigned int j
= 1; j
< end
- start
+ 1 && j
< 99; j
++)
250 if( !isNsisChar( s
[j
] ) )
252 bHasSimpleNsisChars
= false;
257 if( bHasSimpleNsisChars
)
258 return SCE_NSIS_VARIABLE
;
261 // To check for numbers
262 if( isNsisNumber( s
[0] ) )
264 bool bHasSimpleNsisNumber
= true;
265 for (unsigned int j
= 1; j
< end
- start
+ 1 && j
< 99; j
++)
267 if( !isNsisNumber( s
[j
] ) )
269 bHasSimpleNsisNumber
= false;
274 if( bHasSimpleNsisNumber
)
275 return SCE_NSIS_NUMBER
;
278 return SCE_NSIS_DEFAULT
;
281 static void ColouriseNsisDoc(unsigned int startPos
, int length
, int, WordList
*keywordLists
[], Accessor
&styler
)
283 int state
= SCE_NSIS_DEFAULT
;
285 state
= styler
.StyleAt(startPos
-1); // Use the style from the previous line, usually default, but could be commentbox
287 styler
.StartAt( startPos
);
288 styler
.GetLine( startPos
);
290 unsigned int nLengthDoc
= startPos
+ length
;
291 styler
.StartSegment( startPos
);
294 bool bVarInString
= false;
295 bool bClassicVarInString
= false;
298 for( i
= startPos
; i
< nLengthDoc
; i
++ )
300 cCurrChar
= styler
.SafeGetCharAt( i
);
301 char cNextChar
= styler
.SafeGetCharAt(i
+1);
305 case SCE_NSIS_DEFAULT
:
306 if( cCurrChar
== ';' || cCurrChar
== '#' ) // we have a comment line
308 styler
.ColourTo(i
-1, state
);
309 state
= SCE_NSIS_COMMENT
;
312 if( cCurrChar
== '"' )
314 styler
.ColourTo(i
-1, state
);
315 state
= SCE_NSIS_STRINGDQ
;
316 bVarInString
= false;
317 bClassicVarInString
= false;
320 if( cCurrChar
== '\'' )
322 styler
.ColourTo(i
-1, state
);
323 state
= SCE_NSIS_STRINGRQ
;
324 bVarInString
= false;
325 bClassicVarInString
= false;
328 if( cCurrChar
== '`' )
330 styler
.ColourTo(i
-1, state
);
331 state
= SCE_NSIS_STRINGLQ
;
332 bVarInString
= false;
333 bClassicVarInString
= false;
337 // NSIS KeyWord,Function, Variable, UserDefined:
338 if( cCurrChar
== '$' || isNsisChar(cCurrChar
) || cCurrChar
== '!' )
340 styler
.ColourTo(i
-1,state
);
341 state
= SCE_NSIS_FUNCTION
;
343 // If it is a number, we must check and set style here first...
344 if( isNsisNumber(cCurrChar
) && (cNextChar
== '\t' || cNextChar
== ' ' || cNextChar
== '\r' || cNextChar
== '\n' ) )
345 styler
.ColourTo( i
, SCE_NSIS_NUMBER
);
350 if( cCurrChar
== '/' && cNextChar
== '*' )
352 styler
.ColourTo(i
-1,state
);
353 state
= SCE_NSIS_COMMENTBOX
;
358 case SCE_NSIS_COMMENT
:
359 if( cNextChar
== '\n' || cNextChar
== '\r' )
362 if( cCurrChar
== '\\' )
364 styler
.ColourTo(i
-2,state
);
365 styler
.ColourTo(i
,SCE_NSIS_DEFAULT
);
369 styler
.ColourTo(i
,state
);
370 state
= SCE_NSIS_DEFAULT
;
374 case SCE_NSIS_STRINGDQ
:
375 case SCE_NSIS_STRINGLQ
:
376 case SCE_NSIS_STRINGRQ
:
378 if( styler
.SafeGetCharAt(i
-1) == '\\' && styler
.SafeGetCharAt(i
-2) == '$' )
379 break; // Ignore the next character, even if it is a quote of some sort
381 if( cCurrChar
== '"' && state
== SCE_NSIS_STRINGDQ
)
383 styler
.ColourTo(i
,state
);
384 state
= SCE_NSIS_DEFAULT
;
388 if( cCurrChar
== '`' && state
== SCE_NSIS_STRINGLQ
)
390 styler
.ColourTo(i
,state
);
391 state
= SCE_NSIS_DEFAULT
;
395 if( cCurrChar
== '\'' && state
== SCE_NSIS_STRINGRQ
)
397 styler
.ColourTo(i
,state
);
398 state
= SCE_NSIS_DEFAULT
;
402 if( cNextChar
== '\r' || cNextChar
== '\n' )
404 int nCurLine
= styler
.GetLine(i
+1);
406 // We need to check if the previous line has a \ in it...
407 bool bNextLine
= false;
411 if( styler
.GetLine(nBack
) != nCurLine
)
414 char cTemp
= styler
.SafeGetCharAt(nBack
, 'a'); // Letter 'a' is safe here
421 if( cTemp
!= '\r' && cTemp
!= '\n' && cTemp
!= '\t' && cTemp
!= ' ' )
429 styler
.ColourTo(i
+1,state
);
431 if( bNextLine
== false )
433 styler
.ColourTo(i
,state
);
434 state
= SCE_NSIS_DEFAULT
;
439 case SCE_NSIS_FUNCTION
:
442 if( cCurrChar
== '$' )
443 state
= SCE_NSIS_DEFAULT
;
444 else if( cCurrChar
== '\\' && (cNextChar
== 'n' || cNextChar
== 'r' || cNextChar
== 't' ) )
445 state
= SCE_NSIS_DEFAULT
;
446 else if( (isNsisChar(cCurrChar
) && !isNsisChar( cNextChar
) && cNextChar
!= '}') || cCurrChar
== '}' )
448 state
= classifyWordNsis( styler
.GetStartSegment(), i
, keywordLists
, styler
);
449 styler
.ColourTo( i
, state
);
450 state
= SCE_NSIS_DEFAULT
;
452 else if( !isNsisChar( cCurrChar
) && cCurrChar
!= '{' && cCurrChar
!= '}' )
454 if( classifyWordNsis( styler
.GetStartSegment(), i
-1, keywordLists
, styler
) == SCE_NSIS_NUMBER
)
455 styler
.ColourTo( i
-1, SCE_NSIS_NUMBER
);
457 state
= SCE_NSIS_DEFAULT
;
459 if( cCurrChar
== '"' )
461 state
= SCE_NSIS_STRINGDQ
;
462 bVarInString
= false;
463 bClassicVarInString
= false;
465 else if( cCurrChar
== '`' )
467 state
= SCE_NSIS_STRINGLQ
;
468 bVarInString
= false;
469 bClassicVarInString
= false;
471 else if( cCurrChar
== '\'' )
473 state
= SCE_NSIS_STRINGRQ
;
474 bVarInString
= false;
475 bClassicVarInString
= false;
477 else if( cCurrChar
== '#' || cCurrChar
== ';' )
479 state
= SCE_NSIS_COMMENT
;
483 case SCE_NSIS_COMMENTBOX
:
485 if( styler
.SafeGetCharAt(i
-1) == '*' && cCurrChar
== '/' )
487 styler
.ColourTo(i
,state
);
488 state
= SCE_NSIS_DEFAULT
;
493 if( state
== SCE_NSIS_COMMENT
|| state
== SCE_NSIS_COMMENTBOX
)
495 styler
.ColourTo(i
,state
);
497 else if( state
== SCE_NSIS_STRINGDQ
|| state
== SCE_NSIS_STRINGLQ
|| state
== SCE_NSIS_STRINGRQ
)
499 bool bIngoreNextDollarSign
= false;
500 bool bUserVars
= false;
501 if( styler
.GetPropertyInt("nsis.uservars") == 1 )
504 if( bVarInString
&& cCurrChar
== '$' )
506 bVarInString
= false;
507 bIngoreNextDollarSign
= true;
509 else if( bVarInString
&& cCurrChar
== '\\' && (cNextChar
== 'n' || cNextChar
== 'r' || cNextChar
== 't' || cNextChar
== '"' || cNextChar
== '`' || cNextChar
== '\'' ) )
511 styler
.ColourTo( i
+1, SCE_NSIS_STRINGVAR
);
512 bVarInString
= false;
513 bIngoreNextDollarSign
= false;
516 // Covers "$INSTDIR and user vars like $MYVAR"
517 else if( bVarInString
&& !isNsisChar(cNextChar
) )
519 int nWordState
= classifyWordNsis( styler
.GetStartSegment(), i
, keywordLists
, styler
);
520 if( nWordState
== SCE_NSIS_VARIABLE
)
521 styler
.ColourTo( i
, SCE_NSIS_STRINGVAR
);
523 styler
.ColourTo( i
, SCE_NSIS_STRINGVAR
);
524 bVarInString
= false;
526 // Covers "${TEST}..."
527 else if( bClassicVarInString
&& cNextChar
== '}' )
529 styler
.ColourTo( i
+1, SCE_NSIS_STRINGVAR
);
530 bClassicVarInString
= false;
533 // Start of var in string
534 if( !bIngoreNextDollarSign
&& cCurrChar
== '$' && cNextChar
== '{' )
536 styler
.ColourTo( i
-1, state
);
537 bClassicVarInString
= true;
538 bVarInString
= false;
540 else if( !bIngoreNextDollarSign
&& cCurrChar
== '$' )
542 styler
.ColourTo( i
-1, state
);
544 bClassicVarInString
= false;
549 // Colourise remaining document
550 styler
.ColourTo(nLengthDoc
-1,state
);
553 static void FoldNsisDoc(unsigned int startPos
, int length
, int, WordList
*[], Accessor
&styler
)
555 // No folding enabled, no reason to continue...
556 if( styler
.GetPropertyInt("fold") == 0 )
559 bool foldAtElse
= styler
.GetPropertyInt("fold.at.else", 0) == 1;
560 bool foldUtilityCmd
= styler
.GetPropertyInt("nsis.foldutilcmd", 1) == 1;
561 bool blockComment
= false;
563 int lineCurrent
= styler
.GetLine(startPos
);
564 unsigned int safeStartPos
= styler
.LineStart( lineCurrent
);
569 int levelCurrent
= SC_FOLDLEVELBASE
;
571 levelCurrent
= styler
.LevelAt(lineCurrent
-1) >> 16;
572 int levelNext
= levelCurrent
;
573 int style
= styler
.StyleAt(safeStartPos
);
574 if( style
== SCE_NSIS_COMMENTBOX
)
576 if( styler
.SafeGetCharAt(safeStartPos
) == '/' && styler
.SafeGetCharAt(safeStartPos
+1) == '*' )
581 for (unsigned int i
= safeStartPos
; i
< startPos
+ length
; i
++)
583 char chCurr
= styler
.SafeGetCharAt(i
);
584 style
= styler
.StyleAt(i
);
585 if( blockComment
&& style
!= SCE_NSIS_COMMENTBOX
)
588 blockComment
= false;
590 else if( !blockComment
&& style
== SCE_NSIS_COMMENTBOX
)
596 if( bArg1
&& !blockComment
)
598 if( nWordStart
== -1 && (isNsisLetter(chCurr
) || chCurr
== '!') )
602 else if( isNsisLetter(chCurr
) == false && nWordStart
> -1 )
604 int newLevel
= calculateFoldNsis( nWordStart
, i
-1, levelNext
, styler
, foldAtElse
, foldUtilityCmd
);
606 if( newLevel
== levelNext
)
608 if( foldAtElse
&& foldUtilityCmd
)
610 if( NsisNextLineHasElse(i
, startPos
+ length
, styler
) )
615 levelNext
= newLevel
;
622 if( bArg1
&& foldAtElse
&& foldUtilityCmd
&& !blockComment
)
624 if( NsisNextLineHasElse(i
, startPos
+ length
, styler
) )
628 // If we are on a new line...
629 int levelUse
= levelCurrent
;
630 int lev
= levelUse
| levelNext
<< 16;
631 if (levelUse
< levelNext
)
632 lev
|= SC_FOLDLEVELHEADERFLAG
;
633 if (lev
!= styler
.LevelAt(lineCurrent
))
634 styler
.SetLevel(lineCurrent
, lev
);
637 levelCurrent
= levelNext
;
638 bArg1
= true; // New line, lets look at first argument again
643 int levelUse
= levelCurrent
;
644 int lev
= levelUse
| levelNext
<< 16;
645 if (levelUse
< levelNext
)
646 lev
|= SC_FOLDLEVELHEADERFLAG
;
647 if (lev
!= styler
.LevelAt(lineCurrent
))
648 styler
.SetLevel(lineCurrent
, lev
);
651 static const char * const nsisWordLists
[] = {
659 LexerModule
lmNsis(SCLEX_NSIS
, ColouriseNsisDoc
, "nsis", FoldNsisDoc
, nsisWordLists
);