1 // Scintilla source code edit control
2 /** @file LexFortran.cxx
4 ** Writen by Chuan-jian Shen, Last changed Sep. 2003
6 // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
7 // The License.txt file describes the conditions under which this software may be distributed.
8 /***************************************/
15 /***************************************/
17 #include "Scintilla.h"
21 #include "LexAccessor.h"
23 #include "StyleContext.h"
24 #include "CharacterSet.h"
25 #include "LexerModule.h"
26 /***************************************/
29 using namespace Scintilla
;
32 /***********************************************/
33 static inline bool IsAWordChar(const int ch
) {
34 return (ch
< 0x80) && (isalnum(ch
) || ch
== '_' || ch
== '%');
36 /**********************************************/
37 static inline bool IsAWordStart(const int ch
) {
38 return (ch
< 0x80) && (isalnum(ch
));
40 /***************************************/
41 inline bool IsABlank(unsigned int ch
) {
42 return (ch
== ' ') || (ch
== 0x09) || (ch
== 0x0b) ;
44 /***************************************/
45 inline bool IsALineEnd(char ch
) {
46 return ((ch
== '\n') || (ch
== '\r')) ;
48 /***************************************/
49 unsigned int GetContinuedPos(unsigned int pos
, Accessor
&styler
) {
50 while (!IsALineEnd(styler
.SafeGetCharAt(pos
++))) continue;
51 if (styler
.SafeGetCharAt(pos
) == '\n') pos
++;
52 while (IsABlank(styler
.SafeGetCharAt(pos
++))) continue;
53 char chCur
= styler
.SafeGetCharAt(pos
);
55 while (IsABlank(styler
.SafeGetCharAt(++pos
))) continue;
61 /***************************************/
62 static void ColouriseFortranDoc(unsigned int startPos
, int length
, int initStyle
,
63 WordList
*keywordlists
[], Accessor
&styler
, bool isFixFormat
) {
64 WordList
&keywords
= *keywordlists
[0];
65 WordList
&keywords2
= *keywordlists
[1];
66 WordList
&keywords3
= *keywordlists
[2];
67 /***************************************/
68 int posLineStart
= 0, numNonBlank
= 0, prevState
= 0;
69 int endPos
= startPos
+ length
;
70 /***************************************/
71 // backtrack to the nearest keyword
72 while ((startPos
> 1) && (styler
.StyleAt(startPos
) != SCE_F_WORD
)) {
75 startPos
= styler
.LineStart(styler
.GetLine(startPos
));
76 initStyle
= styler
.StyleAt(startPos
- 1);
77 StyleContext
sc(startPos
, endPos
-startPos
, initStyle
, styler
);
78 /***************************************/
79 for (; sc
.More(); sc
.Forward()) {
80 // remember the start position of the line
82 posLineStart
= sc
.currentPos
;
84 sc
.SetState(SCE_F_DEFAULT
);
86 if (!IsASpaceOrTab(sc
.ch
)) numNonBlank
++;
87 /***********************************************/
88 // Handle the fix format generically
89 int toLineStart
= sc
.currentPos
- posLineStart
;
90 if (isFixFormat
&& (toLineStart
< 6 || toLineStart
>= 72)) {
91 if ((toLineStart
== 0 && (tolower(sc
.ch
) == 'c' || sc
.ch
== '*')) || sc
.ch
== '!') {
92 if (sc
.MatchIgnoreCase("cdec$") || sc
.MatchIgnoreCase("*dec$") || sc
.MatchIgnoreCase("!dec$") ||
93 sc
.MatchIgnoreCase("cdir$") || sc
.MatchIgnoreCase("*dir$") || sc
.MatchIgnoreCase("!dir$") ||
94 sc
.MatchIgnoreCase("cms$") || sc
.MatchIgnoreCase("*ms$") || sc
.MatchIgnoreCase("!ms$") ||
96 sc
.SetState(SCE_F_PREPROCESSOR
);
98 sc
.SetState(SCE_F_COMMENT
);
101 while (!sc
.atLineEnd
&& sc
.More()) sc
.Forward(); // Until line end
102 } else if (toLineStart
>= 72) {
103 sc
.SetState(SCE_F_COMMENT
);
104 while (!sc
.atLineEnd
&& sc
.More()) sc
.Forward(); // Until line end
105 } else if (toLineStart
< 5) {
107 sc
.SetState(SCE_F_LABEL
);
109 sc
.SetState(SCE_F_DEFAULT
);
110 } else if (toLineStart
== 5) {
111 //if (!IsASpace(sc.ch) && sc.ch != '0') {
112 if (sc
.ch
!= '\r' && sc
.ch
!= '\n') {
113 sc
.SetState(SCE_F_CONTINUATION
);
114 if (!IsASpace(sc
.ch
) && sc
.ch
!= '0')
115 sc
.ForwardSetState(prevState
);
117 sc
.SetState(SCE_F_DEFAULT
);
121 /***************************************/
122 // Hanndle preprocessor directives
123 if (sc
.ch
== '#' && numNonBlank
== 1)
125 sc
.SetState(SCE_F_PREPROCESSOR
);
126 while (!sc
.atLineEnd
&& sc
.More())
127 sc
.Forward(); // Until line end
129 /***************************************/
130 // Handle line continuation generically.
131 if (!isFixFormat
&& sc
.ch
== '&' && sc
.state
!= SCE_F_COMMENT
) {
134 while (IsABlank(chTemp
) && j
<132) {
135 chTemp
= static_cast<char>(sc
.GetRelative(j
));
139 sc
.SetState(SCE_F_CONTINUATION
);
140 if (sc
.chNext
== '!') sc
.ForwardSetState(SCE_F_COMMENT
);
141 } else if (chTemp
== '\r' || chTemp
== '\n') {
142 int currentState
= sc
.state
;
143 sc
.SetState(SCE_F_CONTINUATION
);
144 sc
.ForwardSetState(SCE_F_DEFAULT
);
145 while (IsASpace(sc
.ch
) && sc
.More()) sc
.Forward();
147 sc
.SetState(SCE_F_CONTINUATION
);
150 sc
.SetState(currentState
);
153 /***************************************/
154 // Determine if the current state should terminate.
155 if (sc
.state
== SCE_F_OPERATOR
) {
156 sc
.SetState(SCE_F_DEFAULT
);
157 } else if (sc
.state
== SCE_F_NUMBER
) {
158 if (!(IsAWordChar(sc
.ch
) || sc
.ch
=='\'' || sc
.ch
=='\"' || sc
.ch
=='.')) {
159 sc
.SetState(SCE_F_DEFAULT
);
161 } else if (sc
.state
== SCE_F_IDENTIFIER
) {
162 if (!IsAWordChar(sc
.ch
) || (sc
.ch
== '%')) {
164 sc
.GetCurrentLowered(s
, sizeof(s
));
165 if (keywords
.InList(s
)) {
166 sc
.ChangeState(SCE_F_WORD
);
167 } else if (keywords2
.InList(s
)) {
168 sc
.ChangeState(SCE_F_WORD2
);
169 } else if (keywords3
.InList(s
)) {
170 sc
.ChangeState(SCE_F_WORD3
);
172 sc
.SetState(SCE_F_DEFAULT
);
174 } else if (sc
.state
== SCE_F_COMMENT
|| sc
.state
== SCE_F_PREPROCESSOR
) {
175 if (sc
.ch
== '\r' || sc
.ch
== '\n') {
176 sc
.SetState(SCE_F_DEFAULT
);
178 } else if (sc
.state
== SCE_F_STRING1
) {
179 prevState
= sc
.state
;
181 if (sc
.chNext
== '\'') {
184 sc
.ForwardSetState(SCE_F_DEFAULT
);
185 prevState
= SCE_F_DEFAULT
;
187 } else if (sc
.atLineEnd
) {
188 sc
.ChangeState(SCE_F_STRINGEOL
);
189 sc
.ForwardSetState(SCE_F_DEFAULT
);
191 } else if (sc
.state
== SCE_F_STRING2
) {
192 prevState
= sc
.state
;
194 sc
.ChangeState(SCE_F_STRINGEOL
);
195 sc
.ForwardSetState(SCE_F_DEFAULT
);
196 } else if (sc
.ch
== '\"') {
197 if (sc
.chNext
== '\"') {
200 sc
.ForwardSetState(SCE_F_DEFAULT
);
201 prevState
= SCE_F_DEFAULT
;
204 } else if (sc
.state
== SCE_F_OPERATOR2
) {
206 sc
.ForwardSetState(SCE_F_DEFAULT
);
208 } else if (sc
.state
== SCE_F_CONTINUATION
) {
209 sc
.SetState(SCE_F_DEFAULT
);
210 } else if (sc
.state
== SCE_F_LABEL
) {
211 if (!IsADigit(sc
.ch
)) {
212 sc
.SetState(SCE_F_DEFAULT
);
214 if (isFixFormat
&& sc
.currentPos
-posLineStart
> 4)
215 sc
.SetState(SCE_F_DEFAULT
);
216 else if (numNonBlank
> 5)
217 sc
.SetState(SCE_F_DEFAULT
);
220 /***************************************/
221 // Determine if a new state should be entered.
222 if (sc
.state
== SCE_F_DEFAULT
) {
224 if (sc
.MatchIgnoreCase("!dec$") || sc
.MatchIgnoreCase("!dir$") ||
225 sc
.MatchIgnoreCase("!ms$") || sc
.chNext
== '$') {
226 sc
.SetState(SCE_F_PREPROCESSOR
);
228 sc
.SetState(SCE_F_COMMENT
);
230 } else if ((!isFixFormat
) && IsADigit(sc
.ch
) && numNonBlank
== 1) {
231 sc
.SetState(SCE_F_LABEL
);
232 } else if (IsADigit(sc
.ch
) || (sc
.ch
== '.' && IsADigit(sc
.chNext
))) {
233 sc
.SetState(SCE_F_NUMBER
);
234 } else if ((tolower(sc
.ch
) == 'b' || tolower(sc
.ch
) == 'o' ||
235 tolower(sc
.ch
) == 'z') && (sc
.chNext
== '\"' || sc
.chNext
== '\'')) {
236 sc
.SetState(SCE_F_NUMBER
);
238 } else if (sc
.ch
== '.' && isalpha(sc
.chNext
)) {
239 sc
.SetState(SCE_F_OPERATOR2
);
240 } else if (IsAWordStart(sc
.ch
)) {
241 sc
.SetState(SCE_F_IDENTIFIER
);
242 } else if (sc
.ch
== '\"') {
243 sc
.SetState(SCE_F_STRING2
);
244 } else if (sc
.ch
== '\'') {
245 sc
.SetState(SCE_F_STRING1
);
246 } else if (isoperator(static_cast<char>(sc
.ch
))) {
247 sc
.SetState(SCE_F_OPERATOR
);
253 /***************************************/
254 // To determine the folding level depending on keywords
255 static int classifyFoldPointFortran(const char* s
, const char* prevWord
, const char chNextNonBlank
) {
257 if ((strcmp(prevWord
, "else") == 0 && strcmp(s
, "if") == 0) || strcmp(s
, "elseif") == 0)
259 if (strcmp(s
, "associate") == 0 || strcmp(s
, "block") == 0
260 || strcmp(s
, "blockdata") == 0 || strcmp(s
, "select") == 0
261 || strcmp(s
, "do") == 0 || strcmp(s
, "enum") ==0
262 || strcmp(s
, "function") == 0 || strcmp(s
, "interface") == 0
263 || strcmp(s
, "module") == 0 || strcmp(s
, "program") == 0
264 || strcmp(s
, "subroutine") == 0 || strcmp(s
, "then") == 0
265 || (strcmp(s
, "type") == 0 && chNextNonBlank
!= '(')
266 || strcmp(s
, "critical") == 0){
267 if (strcmp(prevWord
, "end") == 0)
271 } else if ((strcmp(s
, "end") == 0 && chNextNonBlank
!= '=')
272 || strcmp(s
, "endassociate") == 0 || strcmp(s
, "endblock") == 0
273 || strcmp(s
, "endblockdata") == 0 || strcmp(s
, "endselect") == 0
274 || strcmp(s
, "enddo") == 0 || strcmp(s
, "endenum") ==0
275 || strcmp(s
, "endif") == 0 || strcmp(s
, "endforall") == 0
276 || strcmp(s
, "endfunction") == 0 || strcmp(s
, "endinterface") == 0
277 || strcmp(s
, "endmodule") == 0 || strcmp(s
, "endprogram") == 0
278 || strcmp(s
, "endsubroutine") == 0 || strcmp(s
, "endtype") == 0
279 || strcmp(s
, "endwhere") == 0 || strcmp(s
, "endcritical") == 0
280 || (strcmp(s
, "procedure") == 0 && strcmp(prevWord
, "module") == 0) ) { // Take care of the "module procedure" statement
282 } else if (strcmp(prevWord
, "end") == 0 && strcmp(s
, "if") == 0){ // end if
284 } else if (strcmp(prevWord
, "type") == 0 && strcmp(s
, "is") == 0){ // type is
290 static void FoldFortranDoc(unsigned int startPos
, int length
, int initStyle
,
291 Accessor
&styler
, bool isFixFormat
) {
293 // bool foldComment = styler.GetPropertyInt("fold.comment") != 0;
294 // Do not know how to fold the comment at the moment.
296 bool foldCompact
= styler
.GetPropertyInt("fold.compact", 1) != 0;
297 unsigned int endPos
= startPos
+ length
;
298 int visibleChars
= 0;
299 int lineCurrent
= styler
.GetLine(startPos
);
300 int levelPrev
= styler
.LevelAt(lineCurrent
) & SC_FOLDLEVELNUMBERMASK
;
301 int levelCurrent
= levelPrev
;
302 char chNext
= styler
[startPos
];
304 int styleNext
= styler
.StyleAt(startPos
);
305 int style
= initStyle
;
306 /***************************************/
308 char prevWord
[32] = "";
310 // Variables for do label folding.
311 static int doLabels
[100];
312 static int posLabel
=-1;
313 /***************************************/
314 for (unsigned int i
= startPos
; i
< endPos
; i
++) {
316 chNext
= styler
.SafeGetCharAt(i
+ 1);
317 chNextNonBlank
= chNext
;
319 while(IsABlank(chNextNonBlank
) && j
<endPos
) {
321 chNextNonBlank
= styler
.SafeGetCharAt(j
);
323 int stylePrev
= style
;
325 styleNext
= styler
.StyleAt(i
+ 1);
326 bool atEOL
= (ch
== '\r' && chNext
!= '\n') || (ch
== '\n');
328 if (((isFixFormat
&& stylePrev
== SCE_F_CONTINUATION
) || stylePrev
== SCE_F_DEFAULT
|| stylePrev
== SCE_F_OPERATOR
) && (style
== SCE_F_WORD
|| style
== SCE_F_LABEL
)) {
329 // Store last word and label start point.
332 /***************************************/
333 if (style
== SCE_F_WORD
) {
334 if(iswordchar(ch
) && !iswordchar(chNext
)) {
337 for(k
=0; (k
<31 ) && (k
<i
-lastStart
+1 ); k
++) {
338 s
[k
] = static_cast<char>(tolower(styler
[lastStart
+k
]));
341 // Handle the forall and where statement and structure.
342 if (strcmp(s
, "forall") == 0 || strcmp(s
, "where") == 0) {
343 if (strcmp(prevWord
, "end") != 0) {
345 char chBrace
= '(', chSeek
= ')', ch1
= styler
.SafeGetCharAt(j
);
346 // Find the position of the first (
347 while (ch1
!= chBrace
&& j
<endPos
) {
349 ch1
= styler
.SafeGetCharAt(j
);
351 char styBrace
= styler
.StyleAt(j
);
357 chAtPos
= styler
.SafeGetCharAt(j
);
358 styAtPos
= styler
.StyleAt(j
);
359 if (styAtPos
== styBrace
) {
360 if (chAtPos
== chBrace
) depth
++;
361 if (chAtPos
== chSeek
) depth
--;
362 if (depth
== 0) break;
367 chAtPos
= styler
.SafeGetCharAt(j
);
368 styAtPos
= styler
.StyleAt(j
);
369 if (styAtPos
== SCE_F_COMMENT
|| IsABlank(chAtPos
)) continue;
371 if (!IsALineEnd(chAtPos
)) {
374 if (lineCurrent
< styler
.GetLine(styler
.Length()-1)) {
375 j
= styler
.LineStart(lineCurrent
+1);
376 if (styler
.StyleAt(j
+5) == SCE_F_CONTINUATION
) {
386 if (chAtPos
== '&' && styler
.StyleAt(j
) == SCE_F_CONTINUATION
) {
387 j
= GetContinuedPos(j
+1, styler
);
389 } else if (IsALineEnd(chAtPos
)) {
399 levelCurrent
+= classifyFoldPointFortran(s
, prevWord
, chNextNonBlank
);
400 // Store the do Labels into array
401 if (strcmp(s
, "do") == 0 && IsADigit(chNextNonBlank
)) {
403 for (i
=j
; (i
<j
+5 && i
<endPos
); i
++) {
404 ch
= styler
.SafeGetCharAt(i
);
412 doLabels
[posLabel
] = atoi(Label
);
417 } else if (style
== SCE_F_LABEL
) {
418 if(IsADigit(ch
) && !IsADigit(chNext
)) {
419 for(j
= 0; ( j
< 5 ) && ( j
< i
-lastStart
+1 ); j
++) {
420 ch
= styler
.SafeGetCharAt(lastStart
+ j
);
421 if (IsADigit(ch
) && styler
.StyleAt(lastStart
+j
) == SCE_F_LABEL
)
427 while (doLabels
[posLabel
] == atoi(Label
) && posLabel
> -1) {
435 if (visibleChars
== 0 && foldCompact
)
436 lev
|= SC_FOLDLEVELWHITEFLAG
;
437 if ((levelCurrent
> levelPrev
) && (visibleChars
> 0))
438 lev
|= SC_FOLDLEVELHEADERFLAG
;
439 if (lev
!= styler
.LevelAt(lineCurrent
)) {
440 styler
.SetLevel(lineCurrent
, lev
);
443 levelPrev
= levelCurrent
;
445 strcpy(prevWord
, "");
447 /***************************************/
448 if (!isspacechar(ch
)) visibleChars
++;
450 /***************************************/
451 // Fill in the real level of the next line, keeping the current flags as they will be filled in later
452 int flagsNext
= styler
.LevelAt(lineCurrent
) & ~SC_FOLDLEVELNUMBERMASK
;
453 styler
.SetLevel(lineCurrent
, levelPrev
| flagsNext
);
455 /***************************************/
456 static const char * const FortranWordLists
[] = {
457 "Primary keywords and identifiers",
458 "Intrinsic functions",
459 "Extended and user defined functions",
462 /***************************************/
463 static void ColouriseFortranDocFreeFormat(unsigned int startPos
, int length
, int initStyle
, WordList
*keywordlists
[],
465 ColouriseFortranDoc(startPos
, length
, initStyle
, keywordlists
, styler
, false);
467 /***************************************/
468 static void ColouriseFortranDocFixFormat(unsigned int startPos
, int length
, int initStyle
, WordList
*keywordlists
[],
470 ColouriseFortranDoc(startPos
, length
, initStyle
, keywordlists
, styler
, true);
472 /***************************************/
473 static void FoldFortranDocFreeFormat(unsigned int startPos
, int length
, int initStyle
,
474 WordList
*[], Accessor
&styler
) {
475 FoldFortranDoc(startPos
, length
, initStyle
,styler
, false);
477 /***************************************/
478 static void FoldFortranDocFixFormat(unsigned int startPos
, int length
, int initStyle
,
479 WordList
*[], Accessor
&styler
) {
480 FoldFortranDoc(startPos
, length
, initStyle
,styler
, true);
482 /***************************************/
483 LexerModule
lmFortran(SCLEX_FORTRAN
, ColouriseFortranDocFreeFormat
, "fortran", FoldFortranDocFreeFormat
, FortranWordLists
);
484 LexerModule
lmF77(SCLEX_F77
, ColouriseFortranDocFixFormat
, "f77", FoldFortranDocFixFormat
, FortranWordLists
);