Fixed issue #2175: TortoiseGitBlame fails to search if line has non-ascii chars and...
[TortoiseGit.git] / ext / scintilla / lexers / LexRuby.cxx
blob32b84339abf4356446ab00d1ee23d624adfa9dc8
1 // Scintilla source code edit control
2 /** @file LexRuby.cxx
3 ** Lexer for Ruby.
4 **/
5 // Copyright 2001- by Clemens Wyss <wys@helbling.ch>
6 // The License.txt file describes the conditions under which this software may be distributed.
8 #include <stdlib.h>
9 #include <string.h>
10 #include <stdio.h>
11 #include <stdarg.h>
12 #include <assert.h>
13 #include <ctype.h>
15 #include "ILexer.h"
16 #include "Scintilla.h"
17 #include "SciLexer.h"
19 #include "WordList.h"
20 #include "LexAccessor.h"
21 #include "Accessor.h"
22 #include "StyleContext.h"
23 #include "CharacterSet.h"
24 #include "LexerModule.h"
26 #ifdef SCI_NAMESPACE
27 using namespace Scintilla;
28 #endif
30 //XXX Identical to Perl, put in common area
31 static inline bool isEOLChar(char ch) {
32 return (ch == '\r') || (ch == '\n');
35 #define isSafeASCII(ch) ((unsigned int)(ch) <= 127)
36 // This one's redundant, but makes for more readable code
37 #define isHighBitChar(ch) ((unsigned int)(ch) > 127)
39 static inline bool isSafeAlpha(char ch) {
40 return (isSafeASCII(ch) && isalpha(ch)) || ch == '_';
43 static inline bool isSafeAlnum(char ch) {
44 return (isSafeASCII(ch) && isalnum(ch)) || ch == '_';
47 static inline bool isSafeAlnumOrHigh(char ch) {
48 return isHighBitChar(ch) || isalnum(ch) || ch == '_';
51 static inline bool isSafeDigit(char ch) {
52 return isSafeASCII(ch) && isdigit(ch);
55 static inline bool isSafeWordcharOrHigh(char ch) {
56 // Error: scintilla's KeyWords.h includes '.' as a word-char
57 // we want to separate things that can take methods from the
58 // methods.
59 return isHighBitChar(ch) || isalnum(ch) || ch == '_';
62 static bool inline iswhitespace(char ch) {
63 return ch == ' ' || ch == '\t';
66 #define MAX_KEYWORD_LENGTH 200
68 #define STYLE_MASK 63
69 #define actual_style(style) (style & STYLE_MASK)
71 static bool followsDot(unsigned int pos, Accessor &styler) {
72 styler.Flush();
73 for (; pos >= 1; --pos) {
74 int style = actual_style(styler.StyleAt(pos));
75 char ch;
76 switch (style) {
77 case SCE_RB_DEFAULT:
78 ch = styler[pos];
79 if (ch == ' ' || ch == '\t') {
80 //continue
81 } else {
82 return false;
84 break;
86 case SCE_RB_OPERATOR:
87 return styler[pos] == '.';
89 default:
90 return false;
93 return false;
96 // Forward declarations
97 static bool keywordIsAmbiguous(const char *prevWord);
98 static bool keywordDoStartsLoop(int pos,
99 Accessor &styler);
100 static bool keywordIsModifier(const char *word,
101 int pos,
102 Accessor &styler);
104 static int ClassifyWordRb(unsigned int start, unsigned int end, WordList &keywords, Accessor &styler, char *prevWord) {
105 char s[MAX_KEYWORD_LENGTH];
106 unsigned int i, j;
107 unsigned int lim = end - start + 1; // num chars to copy
108 if (lim >= MAX_KEYWORD_LENGTH) {
109 lim = MAX_KEYWORD_LENGTH - 1;
111 for (i = start, j = 0; j < lim; i++, j++) {
112 s[j] = styler[i];
114 s[j] = '\0';
115 int chAttr;
116 if (0 == strcmp(prevWord, "class"))
117 chAttr = SCE_RB_CLASSNAME;
118 else if (0 == strcmp(prevWord, "module"))
119 chAttr = SCE_RB_MODULE_NAME;
120 else if (0 == strcmp(prevWord, "def"))
121 chAttr = SCE_RB_DEFNAME;
122 else if (keywords.InList(s) && ((start == 0) || !followsDot(start - 1, styler))) {
123 if (keywordIsAmbiguous(s)
124 && keywordIsModifier(s, start, styler)) {
126 // Demoted keywords are colored as keywords,
127 // but do not affect changes in indentation.
129 // Consider the word 'if':
130 // 1. <<if test ...>> : normal
131 // 2. <<stmt if test>> : demoted
132 // 3. <<lhs = if ...>> : normal: start a new indent level
133 // 4. <<obj.if = 10>> : color as identifer, since it follows '.'
135 chAttr = SCE_RB_WORD_DEMOTED;
136 } else {
137 chAttr = SCE_RB_WORD;
139 } else
140 chAttr = SCE_RB_IDENTIFIER;
141 styler.ColourTo(end, chAttr);
142 if (chAttr == SCE_RB_WORD) {
143 strcpy(prevWord, s);
144 } else {
145 prevWord[0] = 0;
147 return chAttr;
151 //XXX Identical to Perl, put in common area
152 static bool isMatch(Accessor &styler, int lengthDoc, int pos, const char *val) {
153 if ((pos + static_cast<int>(strlen(val))) >= lengthDoc) {
154 return false;
156 while (*val) {
157 if (*val != styler[pos++]) {
158 return false;
160 val++;
162 return true;
165 // Do Ruby better -- find the end of the line, work back,
166 // and then check for leading white space
168 // Precondition: the here-doc target can be indented
169 static bool lookingAtHereDocDelim(Accessor &styler,
170 int pos,
171 int lengthDoc,
172 const char *HereDocDelim)
174 if (!isMatch(styler, lengthDoc, pos, HereDocDelim)) {
175 return false;
177 while (--pos > 0) {
178 char ch = styler[pos];
179 if (isEOLChar(ch)) {
180 return true;
181 } else if (ch != ' ' && ch != '\t') {
182 return false;
185 return false;
188 //XXX Identical to Perl, put in common area
189 static char opposite(char ch) {
190 if (ch == '(')
191 return ')';
192 if (ch == '[')
193 return ']';
194 if (ch == '{')
195 return '}';
196 if (ch == '<')
197 return '>';
198 return ch;
201 // Null transitions when we see we've reached the end
202 // and need to relex the curr char.
204 static void redo_char(int &i, char &ch, char &chNext, char &chNext2,
205 int &state) {
206 i--;
207 chNext2 = chNext;
208 chNext = ch;
209 state = SCE_RB_DEFAULT;
212 static void advance_char(int &i, char &ch, char &chNext, char &chNext2) {
213 i++;
214 ch = chNext;
215 chNext = chNext2;
218 // precondition: startPos points to one after the EOL char
219 static bool currLineContainsHereDelims(int& startPos,
220 Accessor &styler) {
221 if (startPos <= 1)
222 return false;
224 int pos;
225 for (pos = startPos - 1; pos > 0; pos--) {
226 char ch = styler.SafeGetCharAt(pos);
227 if (isEOLChar(ch)) {
228 // Leave the pointers where they are -- there are no
229 // here doc delims on the current line, even if
230 // the EOL isn't default style
232 return false;
233 } else {
234 styler.Flush();
235 if (actual_style(styler.StyleAt(pos)) == SCE_RB_HERE_DELIM) {
236 break;
240 if (pos == 0) {
241 return false;
243 // Update the pointers so we don't have to re-analyze the string
244 startPos = pos;
245 return true;
248 // This class is used by the enter and exit methods, so it needs
249 // to be hoisted out of the function.
251 class QuoteCls {
252 public:
253 int Count;
254 char Up;
255 char Down;
256 QuoteCls() {
257 New();
259 void New() {
260 Count = 0;
261 Up = '\0';
262 Down = '\0';
264 void Open(char u) {
265 Count++;
266 Up = u;
267 Down = opposite(Up);
269 QuoteCls(const QuoteCls& q) {
270 // copy constructor -- use this for copying in
271 Count = q.Count;
272 Up = q.Up;
273 Down = q.Down;
275 QuoteCls& operator=(const QuoteCls& q) { // assignment constructor
276 if (this != &q) {
277 Count = q.Count;
278 Up = q.Up;
279 Down = q.Down;
281 return *this;
287 static void enterInnerExpression(int *p_inner_string_types,
288 int *p_inner_expn_brace_counts,
289 QuoteCls *p_inner_quotes,
290 int& inner_string_count,
291 int& state,
292 int& brace_counts,
293 QuoteCls curr_quote
295 p_inner_string_types[inner_string_count] = state;
296 state = SCE_RB_DEFAULT;
297 p_inner_expn_brace_counts[inner_string_count] = brace_counts;
298 brace_counts = 0;
299 p_inner_quotes[inner_string_count] = curr_quote;
300 ++inner_string_count;
303 static void exitInnerExpression(int *p_inner_string_types,
304 int *p_inner_expn_brace_counts,
305 QuoteCls *p_inner_quotes,
306 int& inner_string_count,
307 int& state,
308 int& brace_counts,
309 QuoteCls& curr_quote
311 --inner_string_count;
312 state = p_inner_string_types[inner_string_count];
313 brace_counts = p_inner_expn_brace_counts[inner_string_count];
314 curr_quote = p_inner_quotes[inner_string_count];
317 static bool isEmptyLine(int pos,
318 Accessor &styler) {
319 int spaceFlags = 0;
320 int lineCurrent = styler.GetLine(pos);
321 int indentCurrent = styler.IndentAmount(lineCurrent, &spaceFlags, NULL);
322 return (indentCurrent & SC_FOLDLEVELWHITEFLAG) != 0;
325 static bool RE_CanFollowKeyword(const char *keyword) {
326 if (!strcmp(keyword, "and")
327 || !strcmp(keyword, "begin")
328 || !strcmp(keyword, "break")
329 || !strcmp(keyword, "case")
330 || !strcmp(keyword, "do")
331 || !strcmp(keyword, "else")
332 || !strcmp(keyword, "elsif")
333 || !strcmp(keyword, "if")
334 || !strcmp(keyword, "next")
335 || !strcmp(keyword, "return")
336 || !strcmp(keyword, "when")
337 || !strcmp(keyword, "unless")
338 || !strcmp(keyword, "until")
339 || !strcmp(keyword, "not")
340 || !strcmp(keyword, "or")) {
341 return true;
343 return false;
346 // Look at chars up to but not including endPos
347 // Don't look at styles in case we're looking forward
349 static int skipWhitespace(int startPos,
350 int endPos,
351 Accessor &styler) {
352 for (int i = startPos; i < endPos; i++) {
353 if (!iswhitespace(styler[i])) {
354 return i;
357 return endPos;
360 // This routine looks for false positives like
361 // undef foo, <<
362 // There aren't too many.
364 // iPrev points to the start of <<
366 static bool sureThisIsHeredoc(int iPrev,
367 Accessor &styler,
368 char *prevWord) {
370 // Not so fast, since Ruby's so dynamic. Check the context
371 // to make sure we're OK.
372 int prevStyle;
373 int lineStart = styler.GetLine(iPrev);
374 int lineStartPosn = styler.LineStart(lineStart);
375 styler.Flush();
377 // Find the first word after some whitespace
378 int firstWordPosn = skipWhitespace(lineStartPosn, iPrev, styler);
379 if (firstWordPosn >= iPrev) {
380 // Have something like {^ <<}
381 //XXX Look at the first previous non-comment non-white line
382 // to establish the context. Not too likely though.
383 return true;
384 } else {
385 switch (prevStyle = styler.StyleAt(firstWordPosn)) {
386 case SCE_RB_WORD:
387 case SCE_RB_WORD_DEMOTED:
388 case SCE_RB_IDENTIFIER:
389 break;
390 default:
391 return true;
394 int firstWordEndPosn = firstWordPosn;
395 char *dst = prevWord;
396 for (;;) {
397 if (firstWordEndPosn >= iPrev ||
398 styler.StyleAt(firstWordEndPosn) != prevStyle) {
399 *dst = 0;
400 break;
402 *dst++ = styler[firstWordEndPosn];
403 firstWordEndPosn += 1;
405 //XXX Write a style-aware thing to regex scintilla buffer objects
406 if (!strcmp(prevWord, "undef")
407 || !strcmp(prevWord, "def")
408 || !strcmp(prevWord, "alias")) {
409 // These keywords are what we were looking for
410 return false;
412 return true;
415 // Routine that saves us from allocating a buffer for the here-doc target
416 // targetEndPos points one past the end of the current target
417 static bool haveTargetMatch(int currPos,
418 int lengthDoc,
419 int targetStartPos,
420 int targetEndPos,
421 Accessor &styler) {
422 if (lengthDoc - currPos < targetEndPos - targetStartPos) {
423 return false;
425 int i, j;
426 for (i = targetStartPos, j = currPos;
427 i < targetEndPos && j < lengthDoc;
428 i++, j++) {
429 if (styler[i] != styler[j]) {
430 return false;
433 return true;
436 // We need a check because the form
437 // [identifier] <<[target]
438 // is ambiguous. The Ruby lexer/parser resolves it by
439 // looking to see if [identifier] names a variable or a
440 // function. If it's the first, it's the start of a here-doc.
441 // If it's a var, it's an operator. This lexer doesn't
442 // maintain a symbol table, so it looks ahead to see what's
443 // going on, in cases where we have
444 // ^[white-space]*[identifier([.|::]identifier)*][white-space]*<<[target]
446 // If there's no occurrence of [target] on a line, assume we don't.
448 // return true == yes, we have no heredocs
450 static bool sureThisIsNotHeredoc(int lt2StartPos,
451 Accessor &styler) {
452 int prevStyle;
453 // Use full document, not just part we're styling
454 int lengthDoc = styler.Length();
455 int lineStart = styler.GetLine(lt2StartPos);
456 int lineStartPosn = styler.LineStart(lineStart);
457 styler.Flush();
458 const bool definitely_not_a_here_doc = true;
459 const bool looks_like_a_here_doc = false;
461 // Find the first word after some whitespace
462 int firstWordPosn = skipWhitespace(lineStartPosn, lt2StartPos, styler);
463 if (firstWordPosn >= lt2StartPos) {
464 return definitely_not_a_here_doc;
466 prevStyle = styler.StyleAt(firstWordPosn);
467 // If we have '<<' following a keyword, it's not a heredoc
468 if (prevStyle != SCE_RB_IDENTIFIER
469 && prevStyle != SCE_RB_INSTANCE_VAR
470 && prevStyle != SCE_RB_CLASS_VAR) {
471 return definitely_not_a_here_doc;
473 int newStyle = prevStyle;
474 // Some compilers incorrectly warn about uninit newStyle
475 for (firstWordPosn += 1; firstWordPosn <= lt2StartPos; firstWordPosn += 1) {
476 // Inner loop looks at the name
477 for (; firstWordPosn <= lt2StartPos; firstWordPosn += 1) {
478 newStyle = styler.StyleAt(firstWordPosn);
479 if (newStyle != prevStyle) {
480 break;
483 // Do we have '::' or '.'?
484 if (firstWordPosn < lt2StartPos && newStyle == SCE_RB_OPERATOR) {
485 char ch = styler[firstWordPosn];
486 if (ch == '.') {
487 // yes
488 } else if (ch == ':') {
489 if (styler.StyleAt(++firstWordPosn) != SCE_RB_OPERATOR) {
490 return definitely_not_a_here_doc;
491 } else if (styler[firstWordPosn] != ':') {
492 return definitely_not_a_here_doc;
494 } else {
495 break;
497 } else {
498 break;
500 // on second and next passes, only identifiers may appear since
501 // class and instance variable are private
502 prevStyle = SCE_RB_IDENTIFIER;
504 // Skip next batch of white-space
505 firstWordPosn = skipWhitespace(firstWordPosn, lt2StartPos, styler);
506 if (firstWordPosn != lt2StartPos) {
507 // Have [[^ws[identifier]ws[*something_else*]ws<<
508 return definitely_not_a_here_doc;
510 // OK, now 'j' will point to the current spot moving ahead
511 int j = firstWordPosn + 1;
512 if (styler.StyleAt(j) != SCE_RB_OPERATOR || styler[j] != '<') {
513 // This shouldn't happen
514 return definitely_not_a_here_doc;
516 int nextLineStartPosn = styler.LineStart(lineStart + 1);
517 if (nextLineStartPosn >= lengthDoc) {
518 return definitely_not_a_here_doc;
520 j = skipWhitespace(j + 1, nextLineStartPosn, styler);
521 if (j >= lengthDoc) {
522 return definitely_not_a_here_doc;
524 bool allow_indent;
525 int target_start, target_end;
526 // From this point on no more styling, since we're looking ahead
527 if (styler[j] == '-') {
528 allow_indent = true;
529 j++;
530 } else {
531 allow_indent = false;
534 // Allow for quoted targets.
535 char target_quote = 0;
536 switch (styler[j]) {
537 case '\'':
538 case '"':
539 case '`':
540 target_quote = styler[j];
541 j += 1;
544 if (isSafeAlnum(styler[j])) {
545 // Init target_end because some compilers think it won't
546 // be initialized by the time it's used
547 target_start = target_end = j;
548 j++;
549 } else {
550 return definitely_not_a_here_doc;
552 for (; j < lengthDoc; j++) {
553 if (!isSafeAlnum(styler[j])) {
554 if (target_quote && styler[j] != target_quote) {
555 // unquoted end
556 return definitely_not_a_here_doc;
559 // And for now make sure that it's a newline
560 // don't handle arbitrary expressions yet
562 target_end = j;
563 if (target_quote) {
564 // Now we can move to the character after the string delimiter.
565 j += 1;
567 j = skipWhitespace(j, lengthDoc, styler);
568 if (j >= lengthDoc) {
569 return definitely_not_a_here_doc;
570 } else {
571 char ch = styler[j];
572 if (ch == '#' || isEOLChar(ch)) {
573 // This is OK, so break and continue;
574 break;
575 } else {
576 return definitely_not_a_here_doc;
582 // Just look at the start of each line
583 int last_line = styler.GetLine(lengthDoc - 1);
584 // But don't go too far
585 if (last_line > lineStart + 50) {
586 last_line = lineStart + 50;
588 for (int line_num = lineStart + 1; line_num <= last_line; line_num++) {
589 if (allow_indent) {
590 j = skipWhitespace(styler.LineStart(line_num), lengthDoc, styler);
591 } else {
592 j = styler.LineStart(line_num);
594 // target_end is one past the end
595 if (haveTargetMatch(j, lengthDoc, target_start, target_end, styler)) {
596 // We got it
597 return looks_like_a_here_doc;
600 return definitely_not_a_here_doc;
603 //todo: if we aren't looking at a stdio character,
604 // move to the start of the first line that is not in a
605 // multi-line construct
607 static void synchronizeDocStart(unsigned int& startPos,
608 int &length,
609 int &initStyle,
610 Accessor &styler,
611 bool skipWhiteSpace=false) {
613 styler.Flush();
614 int style = actual_style(styler.StyleAt(startPos));
615 switch (style) {
616 case SCE_RB_STDIN:
617 case SCE_RB_STDOUT:
618 case SCE_RB_STDERR:
619 // Don't do anything else with these.
620 return;
623 int pos = startPos;
624 // Quick way to characterize each line
625 int lineStart;
626 for (lineStart = styler.GetLine(pos); lineStart > 0; lineStart--) {
627 // Now look at the style before the previous line's EOL
628 pos = styler.LineStart(lineStart) - 1;
629 if (pos <= 10) {
630 lineStart = 0;
631 break;
633 char ch = styler.SafeGetCharAt(pos);
634 char chPrev = styler.SafeGetCharAt(pos - 1);
635 if (ch == '\n' && chPrev == '\r') {
636 pos--;
638 if (styler.SafeGetCharAt(pos - 1) == '\\') {
639 // Continuation line -- keep going
640 } else if (actual_style(styler.StyleAt(pos)) != SCE_RB_DEFAULT) {
641 // Part of multi-line construct -- keep going
642 } else if (currLineContainsHereDelims(pos, styler)) {
643 // Keep going, with pos and length now pointing
644 // at the end of the here-doc delimiter
645 } else if (skipWhiteSpace && isEmptyLine(pos, styler)) {
646 // Keep going
647 } else {
648 break;
651 pos = styler.LineStart(lineStart);
652 length += (startPos - pos);
653 startPos = pos;
654 initStyle = SCE_RB_DEFAULT;
657 static void ColouriseRbDoc(unsigned int startPos, int length, int initStyle,
658 WordList *keywordlists[], Accessor &styler) {
660 // Lexer for Ruby often has to backtrack to start of current style to determine
661 // which characters are being used as quotes, how deeply nested is the
662 // start position and what the termination string is for here documents
664 WordList &keywords = *keywordlists[0];
666 class HereDocCls {
667 public:
668 int State;
669 // States
670 // 0: '<<' encountered
671 // 1: collect the delimiter
672 // 1b: text between the end of the delimiter and the EOL
673 // 2: here doc text (lines after the delimiter)
674 char Quote; // the char after '<<'
675 bool Quoted; // true if Quote in ('\'','"','`')
676 int DelimiterLength; // strlen(Delimiter)
677 char Delimiter[256]; // the Delimiter, limit of 256: from Perl
678 bool CanBeIndented;
679 HereDocCls() {
680 State = 0;
681 DelimiterLength = 0;
682 Delimiter[0] = '\0';
683 CanBeIndented = false;
686 HereDocCls HereDoc;
688 QuoteCls Quote;
690 int numDots = 0; // For numbers --
691 // Don't start lexing in the middle of a num
693 synchronizeDocStart(startPos, length, initStyle, styler, // ref args
694 false);
696 bool preferRE = true;
697 int state = initStyle;
698 int lengthDoc = startPos + length;
700 char prevWord[MAX_KEYWORD_LENGTH + 1]; // 1 byte for zero
701 prevWord[0] = '\0';
702 if (length == 0)
703 return;
705 char chPrev = styler.SafeGetCharAt(startPos - 1);
706 char chNext = styler.SafeGetCharAt(startPos);
707 bool is_real_number = true; // Differentiate between constants and ?-sequences.
708 // Ruby uses a different mask because bad indentation is marked by oring with 32
709 styler.StartAt(startPos, 127);
710 styler.StartSegment(startPos);
712 static int q_states[] = {SCE_RB_STRING_Q,
713 SCE_RB_STRING_QQ,
714 SCE_RB_STRING_QR,
715 SCE_RB_STRING_QW,
716 SCE_RB_STRING_QW,
717 SCE_RB_STRING_QX};
718 static const char* q_chars = "qQrwWx";
720 // In most cases a value of 2 should be ample for the code in the
721 // Ruby library, and the code the user is likely to enter.
722 // For example,
723 // fu_output_message "mkdir #{options[:mode] ? ('-m %03o ' % options[:mode]) : ''}#{list.join ' '}"
724 // if options[:verbose]
725 // from fileutils.rb nests to a level of 2
726 // If the user actually hits a 6th occurrence of '#{' in a double-quoted
727 // string (including regex'es, %Q, %<sym>, %w, and other strings
728 // that interpolate), it will stay as a string. The problem with this
729 // is that quotes might flip, a 7th '#{' will look like a comment,
730 // and code-folding might be wrong.
732 // If anyone runs into this problem, I recommend raising this
733 // value slightly higher to replacing the fixed array with a linked
734 // list. Keep in mind this code will be called everytime the lexer
735 // is invoked.
737 #define INNER_STRINGS_MAX_COUNT 5
738 // These vars track our instances of "...#{,,,%Q<..#{,,,}...>,,,}..."
739 int inner_string_types[INNER_STRINGS_MAX_COUNT];
740 // Track # braces when we push a new #{ thing
741 int inner_expn_brace_counts[INNER_STRINGS_MAX_COUNT];
742 QuoteCls inner_quotes[INNER_STRINGS_MAX_COUNT];
743 int inner_string_count = 0;
744 int brace_counts = 0; // Number of #{ ... } things within an expression
746 int i;
747 for (i = 0; i < INNER_STRINGS_MAX_COUNT; i++) {
748 inner_string_types[i] = 0;
749 inner_expn_brace_counts[i] = 0;
751 for (i = startPos; i < lengthDoc; i++) {
752 char ch = chNext;
753 chNext = styler.SafeGetCharAt(i + 1);
754 char chNext2 = styler.SafeGetCharAt(i + 2);
756 if (styler.IsLeadByte(ch)) {
757 chNext = chNext2;
758 chPrev = ' ';
759 i += 1;
760 continue;
763 // skip on DOS/Windows
764 //No, don't, because some things will get tagged on,
765 // so we won't recognize keywords, for example
766 #if 0
767 if (ch == '\r' && chNext == '\n') {
768 continue;
770 #endif
772 if (HereDoc.State == 1 && isEOLChar(ch)) {
773 // Begin of here-doc (the line after the here-doc delimiter):
774 HereDoc.State = 2;
775 styler.ColourTo(i-1, state);
776 // Don't check for a missing quote, just jump into
777 // the here-doc state
778 state = SCE_RB_HERE_Q;
781 // Regular transitions
782 if (state == SCE_RB_DEFAULT) {
783 if (isSafeDigit(ch)) {
784 styler.ColourTo(i - 1, state);
785 state = SCE_RB_NUMBER;
786 is_real_number = true;
787 numDots = 0;
788 } else if (isHighBitChar(ch) || iswordstart(ch)) {
789 styler.ColourTo(i - 1, state);
790 state = SCE_RB_WORD;
791 } else if (ch == '#') {
792 styler.ColourTo(i - 1, state);
793 state = SCE_RB_COMMENTLINE;
794 } else if (ch == '=') {
795 // =begin indicates the start of a comment (doc) block
796 if ((i == 0 || isEOLChar(chPrev))
797 && chNext == 'b'
798 && styler.SafeGetCharAt(i + 2) == 'e'
799 && styler.SafeGetCharAt(i + 3) == 'g'
800 && styler.SafeGetCharAt(i + 4) == 'i'
801 && styler.SafeGetCharAt(i + 5) == 'n'
802 && !isSafeWordcharOrHigh(styler.SafeGetCharAt(i + 6))) {
803 styler.ColourTo(i - 1, state);
804 state = SCE_RB_POD;
805 } else {
806 styler.ColourTo(i - 1, state);
807 styler.ColourTo(i, SCE_RB_OPERATOR);
808 preferRE = true;
810 } else if (ch == '"') {
811 styler.ColourTo(i - 1, state);
812 state = SCE_RB_STRING;
813 Quote.New();
814 Quote.Open(ch);
815 } else if (ch == '\'') {
816 styler.ColourTo(i - 1, state);
817 state = SCE_RB_CHARACTER;
818 Quote.New();
819 Quote.Open(ch);
820 } else if (ch == '`') {
821 styler.ColourTo(i - 1, state);
822 state = SCE_RB_BACKTICKS;
823 Quote.New();
824 Quote.Open(ch);
825 } else if (ch == '@') {
826 // Instance or class var
827 styler.ColourTo(i - 1, state);
828 if (chNext == '@') {
829 state = SCE_RB_CLASS_VAR;
830 advance_char(i, ch, chNext, chNext2); // pass by ref
831 } else {
832 state = SCE_RB_INSTANCE_VAR;
834 } else if (ch == '$') {
835 // Check for a builtin global
836 styler.ColourTo(i - 1, state);
837 // Recognize it bit by bit
838 state = SCE_RB_GLOBAL;
839 } else if (ch == '/' && preferRE) {
840 // Ambigous operator
841 styler.ColourTo(i - 1, state);
842 state = SCE_RB_REGEX;
843 Quote.New();
844 Quote.Open(ch);
845 } else if (ch == '<' && chNext == '<' && chNext2 != '=') {
847 // Recognise the '<<' symbol - either a here document or a binary op
848 styler.ColourTo(i - 1, state);
849 i++;
850 chNext = chNext2;
851 styler.ColourTo(i, SCE_RB_OPERATOR);
853 if (! (strchr("\"\'`_-", chNext2) || isSafeAlpha(chNext2))) {
854 // It's definitely not a here-doc,
855 // based on Ruby's lexer/parser in the
856 // heredoc_identifier routine.
857 // Nothing else to do.
858 } else if (preferRE) {
859 if (sureThisIsHeredoc(i - 1, styler, prevWord)) {
860 state = SCE_RB_HERE_DELIM;
861 HereDoc.State = 0;
863 // else leave it in default state
864 } else {
865 if (sureThisIsNotHeredoc(i - 1, styler)) {
866 // leave state as default
867 // We don't have all the heuristics Perl has for indications
868 // of a here-doc, because '<<' is overloadable and used
869 // for so many other classes.
870 } else {
871 state = SCE_RB_HERE_DELIM;
872 HereDoc.State = 0;
875 preferRE = (state != SCE_RB_HERE_DELIM);
876 } else if (ch == ':') {
877 styler.ColourTo(i - 1, state);
878 if (chNext == ':') {
879 // Mark "::" as an operator, not symbol start
880 styler.ColourTo(i + 1, SCE_RB_OPERATOR);
881 advance_char(i, ch, chNext, chNext2); // pass by ref
882 state = SCE_RB_DEFAULT;
883 preferRE = false;
884 } else if (isSafeWordcharOrHigh(chNext)) {
885 state = SCE_RB_SYMBOL;
886 } else if (strchr("[*!~+-*/%=<>&^|", chNext)) {
887 // Do the operator analysis in-line, looking ahead
888 // Based on the table in pickaxe 2nd ed., page 339
889 bool doColoring = true;
890 switch (chNext) {
891 case '[':
892 if (chNext2 == ']' ) {
893 char ch_tmp = styler.SafeGetCharAt(i + 3);
894 if (ch_tmp == '=') {
895 i += 3;
896 ch = ch_tmp;
897 chNext = styler.SafeGetCharAt(i + 1);
898 } else {
899 i += 2;
900 ch = chNext2;
901 chNext = ch_tmp;
903 } else {
904 doColoring = false;
906 break;
908 case '*':
909 if (chNext2 == '*') {
910 i += 2;
911 ch = chNext2;
912 chNext = styler.SafeGetCharAt(i + 1);
913 } else {
914 advance_char(i, ch, chNext, chNext2);
916 break;
918 case '!':
919 if (chNext2 == '=' || chNext2 == '~') {
920 i += 2;
921 ch = chNext2;
922 chNext = styler.SafeGetCharAt(i + 1);
923 } else {
924 advance_char(i, ch, chNext, chNext2);
926 break;
928 case '<':
929 if (chNext2 == '<') {
930 i += 2;
931 ch = chNext2;
932 chNext = styler.SafeGetCharAt(i + 1);
933 } else if (chNext2 == '=') {
934 char ch_tmp = styler.SafeGetCharAt(i + 3);
935 if (ch_tmp == '>') { // <=> operator
936 i += 3;
937 ch = ch_tmp;
938 chNext = styler.SafeGetCharAt(i + 1);
939 } else {
940 i += 2;
941 ch = chNext2;
942 chNext = ch_tmp;
944 } else {
945 advance_char(i, ch, chNext, chNext2);
947 break;
949 default:
950 // Simple one-character operators
951 advance_char(i, ch, chNext, chNext2);
952 break;
954 if (doColoring) {
955 styler.ColourTo(i, SCE_RB_SYMBOL);
956 state = SCE_RB_DEFAULT;
958 } else if (!preferRE) {
959 // Don't color symbol strings (yet)
960 // Just color the ":" and color rest as string
961 styler.ColourTo(i, SCE_RB_SYMBOL);
962 state = SCE_RB_DEFAULT;
963 } else {
964 styler.ColourTo(i, SCE_RB_OPERATOR);
965 state = SCE_RB_DEFAULT;
966 preferRE = true;
968 } else if (ch == '%') {
969 styler.ColourTo(i - 1, state);
970 bool have_string = false;
971 if (strchr(q_chars, chNext) && !isSafeWordcharOrHigh(chNext2)) {
972 Quote.New();
973 const char *hit = strchr(q_chars, chNext);
974 if (hit != NULL) {
975 state = q_states[hit - q_chars];
976 Quote.Open(chNext2);
977 i += 2;
978 ch = chNext2;
979 chNext = styler.SafeGetCharAt(i + 1);
980 have_string = true;
982 } else if (preferRE && !isSafeWordcharOrHigh(chNext)) {
983 // Ruby doesn't allow high bit chars here,
984 // but the editor host might
985 Quote.New();
986 state = SCE_RB_STRING_QQ;
987 Quote.Open(chNext);
988 advance_char(i, ch, chNext, chNext2); // pass by ref
989 have_string = true;
990 } else if (!isSafeWordcharOrHigh(chNext) && !iswhitespace(chNext) && !isEOLChar(chNext)) {
991 // Ruby doesn't allow high bit chars here,
992 // but the editor host might
993 Quote.New();
994 state = SCE_RB_STRING_QQ;
995 Quote.Open(chNext);
996 advance_char(i, ch, chNext, chNext2); // pass by ref
997 have_string = true;
999 if (!have_string) {
1000 styler.ColourTo(i, SCE_RB_OPERATOR);
1001 // stay in default
1002 preferRE = true;
1004 } else if (ch == '?') {
1005 styler.ColourTo(i - 1, state);
1006 if (iswhitespace(chNext) || chNext == '\n' || chNext == '\r') {
1007 styler.ColourTo(i, SCE_RB_OPERATOR);
1008 } else {
1009 // It's the start of a character code escape sequence
1010 // Color it as a number.
1011 state = SCE_RB_NUMBER;
1012 is_real_number = false;
1014 } else if (isoperator(ch) || ch == '.') {
1015 styler.ColourTo(i - 1, state);
1016 styler.ColourTo(i, SCE_RB_OPERATOR);
1017 // If we're ending an expression or block,
1018 // assume it ends an object, and the ambivalent
1019 // constructs are binary operators
1021 // So if we don't have one of these chars,
1022 // we aren't ending an object exp'n, and ops
1023 // like : << / are unary operators.
1025 if (ch == '{') {
1026 ++brace_counts;
1027 preferRE = true;
1028 } else if (ch == '}' && --brace_counts < 0
1029 && inner_string_count > 0) {
1030 styler.ColourTo(i, SCE_RB_OPERATOR);
1031 exitInnerExpression(inner_string_types,
1032 inner_expn_brace_counts,
1033 inner_quotes,
1034 inner_string_count,
1035 state, brace_counts, Quote);
1036 } else {
1037 preferRE = (strchr(")}].", ch) == NULL);
1039 // Stay in default state
1040 } else if (isEOLChar(ch)) {
1041 // Make sure it's a true line-end, with no backslash
1042 if ((ch == '\r' || (ch == '\n' && chPrev != '\r'))
1043 && chPrev != '\\') {
1044 // Assume we've hit the end of the statement.
1045 preferRE = true;
1048 } else if (state == SCE_RB_WORD) {
1049 if (ch == '.' || !isSafeWordcharOrHigh(ch)) {
1050 // Words include x? in all contexts,
1051 // and <letters>= after either 'def' or a dot
1052 // Move along until a complete word is on our left
1054 // Default accessor treats '.' as word-chars,
1055 // but we don't for now.
1057 if (ch == '='
1058 && isSafeWordcharOrHigh(chPrev)
1059 && (chNext == '('
1060 || strchr(" \t\n\r", chNext) != NULL)
1061 && (!strcmp(prevWord, "def")
1062 || followsDot(styler.GetStartSegment(), styler))) {
1063 // <name>= is a name only when being def'd -- Get it the next time
1064 // This means that <name>=<name> is always lexed as
1065 // <name>, (op, =), <name>
1066 } else if ((ch == '?' || ch == '!')
1067 && isSafeWordcharOrHigh(chPrev)
1068 && !isSafeWordcharOrHigh(chNext)) {
1069 // <name>? is a name -- Get it the next time
1070 // But <name>?<name> is always lexed as
1071 // <name>, (op, ?), <name>
1072 // Same with <name>! to indicate a method that
1073 // modifies its target
1074 } else if (isEOLChar(ch)
1075 && isMatch(styler, lengthDoc, i - 7, "__END__")) {
1076 styler.ColourTo(i, SCE_RB_DATASECTION);
1077 state = SCE_RB_DATASECTION;
1078 // No need to handle this state -- we'll just move to the end
1079 preferRE = false;
1080 } else {
1081 int wordStartPos = styler.GetStartSegment();
1082 int word_style = ClassifyWordRb(wordStartPos, i - 1, keywords, styler, prevWord);
1083 switch (word_style) {
1084 case SCE_RB_WORD:
1085 preferRE = RE_CanFollowKeyword(prevWord);
1086 break;
1088 case SCE_RB_WORD_DEMOTED:
1089 preferRE = true;
1090 break;
1092 case SCE_RB_IDENTIFIER:
1093 if (isMatch(styler, lengthDoc, wordStartPos, "print")) {
1094 preferRE = true;
1095 } else if (isEOLChar(ch)) {
1096 preferRE = true;
1097 } else {
1098 preferRE = false;
1100 break;
1101 default:
1102 preferRE = false;
1104 if (ch == '.') {
1105 // We might be redefining an operator-method
1106 preferRE = false;
1108 // And if it's the first
1109 redo_char(i, ch, chNext, chNext2, state); // pass by ref
1112 } else if (state == SCE_RB_NUMBER) {
1113 if (!is_real_number) {
1114 if (ch != '\\') {
1115 styler.ColourTo(i, state);
1116 state = SCE_RB_DEFAULT;
1117 preferRE = false;
1118 } else if (strchr("\\ntrfvaebs", chNext)) {
1119 // Terminal escape sequence -- handle it next time
1120 // Nothing more to do this time through the loop
1121 } else if (chNext == 'C' || chNext == 'M') {
1122 if (chNext2 != '-') {
1123 // \C or \M ends the sequence -- handle it next time
1124 } else {
1125 // Move from abc?\C-x
1126 // ^
1127 // to
1128 // ^
1129 i += 2;
1130 ch = chNext2;
1131 chNext = styler.SafeGetCharAt(i + 1);
1133 } else if (chNext == 'c') {
1134 // Stay here, \c is a combining sequence
1135 advance_char(i, ch, chNext, chNext2); // pass by ref
1136 } else {
1137 // ?\x, including ?\\ is final.
1138 styler.ColourTo(i + 1, state);
1139 state = SCE_RB_DEFAULT;
1140 preferRE = false;
1141 advance_char(i, ch, chNext, chNext2);
1143 } else if (isSafeAlnumOrHigh(ch) || ch == '_') {
1144 // Keep going
1145 } else if (ch == '.' && chNext == '.') {
1146 ++numDots;
1147 styler.ColourTo(i - 1, state);
1148 redo_char(i, ch, chNext, chNext2, state); // pass by ref
1149 } else if (ch == '.' && ++numDots == 1) {
1150 // Keep going
1151 } else {
1152 styler.ColourTo(i - 1, state);
1153 redo_char(i, ch, chNext, chNext2, state); // pass by ref
1154 preferRE = false;
1156 } else if (state == SCE_RB_COMMENTLINE) {
1157 if (isEOLChar(ch)) {
1158 styler.ColourTo(i - 1, state);
1159 state = SCE_RB_DEFAULT;
1160 // Use whatever setting we had going into the comment
1162 } else if (state == SCE_RB_HERE_DELIM) {
1163 // See the comment for SCE_RB_HERE_DELIM in LexPerl.cxx
1164 // Slightly different: if we find an immediate '-',
1165 // the target can appear indented.
1167 if (HereDoc.State == 0) { // '<<' encountered
1168 HereDoc.State = 1;
1169 HereDoc.DelimiterLength = 0;
1170 if (ch == '-') {
1171 HereDoc.CanBeIndented = true;
1172 advance_char(i, ch, chNext, chNext2); // pass by ref
1173 } else {
1174 HereDoc.CanBeIndented = false;
1176 if (isEOLChar(ch)) {
1177 // Bail out of doing a here doc if there's no target
1178 state = SCE_RB_DEFAULT;
1179 preferRE = false;
1180 } else {
1181 HereDoc.Quote = ch;
1183 if (ch == '\'' || ch == '"' || ch == '`') {
1184 HereDoc.Quoted = true;
1185 HereDoc.Delimiter[0] = '\0';
1186 } else {
1187 HereDoc.Quoted = false;
1188 HereDoc.Delimiter[0] = ch;
1189 HereDoc.Delimiter[1] = '\0';
1190 HereDoc.DelimiterLength = 1;
1193 } else if (HereDoc.State == 1) { // collect the delimiter
1194 if (isEOLChar(ch)) {
1195 // End the quote now, and go back for more
1196 styler.ColourTo(i - 1, state);
1197 state = SCE_RB_DEFAULT;
1198 i--;
1199 chNext = ch;
1200 preferRE = false;
1201 } else if (HereDoc.Quoted) {
1202 if (ch == HereDoc.Quote) { // closing quote => end of delimiter
1203 styler.ColourTo(i, state);
1204 state = SCE_RB_DEFAULT;
1205 preferRE = false;
1206 } else {
1207 if (ch == '\\' && !isEOLChar(chNext)) {
1208 advance_char(i, ch, chNext, chNext2);
1210 HereDoc.Delimiter[HereDoc.DelimiterLength++] = ch;
1211 HereDoc.Delimiter[HereDoc.DelimiterLength] = '\0';
1213 } else { // an unquoted here-doc delimiter
1214 if (isSafeAlnumOrHigh(ch) || ch == '_') {
1215 HereDoc.Delimiter[HereDoc.DelimiterLength++] = ch;
1216 HereDoc.Delimiter[HereDoc.DelimiterLength] = '\0';
1217 } else {
1218 styler.ColourTo(i - 1, state);
1219 redo_char(i, ch, chNext, chNext2, state);
1220 preferRE = false;
1223 if (HereDoc.DelimiterLength >= static_cast<int>(sizeof(HereDoc.Delimiter)) - 1) {
1224 styler.ColourTo(i - 1, state);
1225 state = SCE_RB_ERROR;
1226 preferRE = false;
1229 } else if (state == SCE_RB_HERE_Q) {
1230 // Not needed: HereDoc.State == 2
1231 // Indentable here docs: look backwards
1232 // Non-indentable: look forwards, like in Perl
1234 // Why: so we can quickly resolve things like <<-" abc"
1236 if (!HereDoc.CanBeIndented) {
1237 if (isEOLChar(chPrev)
1238 && isMatch(styler, lengthDoc, i, HereDoc.Delimiter)) {
1239 styler.ColourTo(i - 1, state);
1240 i += HereDoc.DelimiterLength - 1;
1241 chNext = styler.SafeGetCharAt(i + 1);
1242 if (isEOLChar(chNext)) {
1243 styler.ColourTo(i, SCE_RB_HERE_DELIM);
1244 state = SCE_RB_DEFAULT;
1245 HereDoc.State = 0;
1246 preferRE = false;
1248 // Otherwise we skipped through the here doc faster.
1250 } else if (isEOLChar(chNext)
1251 && lookingAtHereDocDelim(styler,
1252 i - HereDoc.DelimiterLength + 1,
1253 lengthDoc,
1254 HereDoc.Delimiter)) {
1255 styler.ColourTo(i - 1 - HereDoc.DelimiterLength, state);
1256 styler.ColourTo(i, SCE_RB_HERE_DELIM);
1257 state = SCE_RB_DEFAULT;
1258 preferRE = false;
1259 HereDoc.State = 0;
1261 } else if (state == SCE_RB_CLASS_VAR
1262 || state == SCE_RB_INSTANCE_VAR
1263 || state == SCE_RB_SYMBOL) {
1264 if (!isSafeWordcharOrHigh(ch)) {
1265 styler.ColourTo(i - 1, state);
1266 redo_char(i, ch, chNext, chNext2, state); // pass by ref
1267 preferRE = false;
1269 } else if (state == SCE_RB_GLOBAL) {
1270 if (!isSafeWordcharOrHigh(ch)) {
1271 // handle special globals here as well
1272 if (chPrev == '$') {
1273 if (ch == '-') {
1274 // Include the next char, like $-a
1275 advance_char(i, ch, chNext, chNext2);
1277 styler.ColourTo(i, state);
1278 state = SCE_RB_DEFAULT;
1279 } else {
1280 styler.ColourTo(i - 1, state);
1281 redo_char(i, ch, chNext, chNext2, state); // pass by ref
1283 preferRE = false;
1285 } else if (state == SCE_RB_POD) {
1286 // PODs end with ^=end\s, -- any whitespace can follow =end
1287 if (strchr(" \t\n\r", ch) != NULL
1288 && i > 5
1289 && isEOLChar(styler[i - 5])
1290 && isMatch(styler, lengthDoc, i - 4, "=end")) {
1291 styler.ColourTo(i - 1, state);
1292 state = SCE_RB_DEFAULT;
1293 preferRE = false;
1295 } else if (state == SCE_RB_REGEX || state == SCE_RB_STRING_QR) {
1296 if (ch == '\\' && Quote.Up != '\\') {
1297 // Skip one
1298 advance_char(i, ch, chNext, chNext2);
1299 } else if (ch == Quote.Down) {
1300 Quote.Count--;
1301 if (Quote.Count == 0) {
1302 // Include the options
1303 while (isSafeAlpha(chNext)) {
1304 i++;
1305 ch = chNext;
1306 chNext = styler.SafeGetCharAt(i + 1);
1308 styler.ColourTo(i, state);
1309 state = SCE_RB_DEFAULT;
1310 preferRE = false;
1312 } else if (ch == Quote.Up) {
1313 // Only if close quoter != open quoter
1314 Quote.Count++;
1316 } else if (ch == '#' ) {
1317 if (chNext == '{'
1318 && inner_string_count < INNER_STRINGS_MAX_COUNT) {
1319 // process #{ ... }
1320 styler.ColourTo(i - 1, state);
1321 styler.ColourTo(i + 1, SCE_RB_OPERATOR);
1322 enterInnerExpression(inner_string_types,
1323 inner_expn_brace_counts,
1324 inner_quotes,
1325 inner_string_count,
1326 state,
1327 brace_counts,
1328 Quote);
1329 preferRE = true;
1330 // Skip one
1331 advance_char(i, ch, chNext, chNext2);
1332 } else {
1333 //todo: distinguish comments from pound chars
1334 // for now, handle as comment
1335 styler.ColourTo(i - 1, state);
1336 bool inEscape = false;
1337 while (++i < lengthDoc) {
1338 ch = styler.SafeGetCharAt(i);
1339 if (ch == '\\') {
1340 inEscape = true;
1341 } else if (isEOLChar(ch)) {
1342 // Comment inside a regex
1343 styler.ColourTo(i - 1, SCE_RB_COMMENTLINE);
1344 break;
1345 } else if (inEscape) {
1346 inEscape = false; // don't look at char
1347 } else if (ch == Quote.Down) {
1348 // Have the regular handler deal with this
1349 // to get trailing modifiers.
1350 i--;
1351 ch = styler[i];
1352 break;
1355 chNext = styler.SafeGetCharAt(i + 1);
1358 // Quotes of all kinds...
1359 } else if (state == SCE_RB_STRING_Q || state == SCE_RB_STRING_QQ ||
1360 state == SCE_RB_STRING_QX || state == SCE_RB_STRING_QW ||
1361 state == SCE_RB_STRING || state == SCE_RB_CHARACTER ||
1362 state == SCE_RB_BACKTICKS) {
1363 if (!Quote.Down && !isspacechar(ch)) {
1364 Quote.Open(ch);
1365 } else if (ch == '\\' && Quote.Up != '\\') {
1366 //Riddle me this: Is it safe to skip *every* escaped char?
1367 advance_char(i, ch, chNext, chNext2);
1368 } else if (ch == Quote.Down) {
1369 Quote.Count--;
1370 if (Quote.Count == 0) {
1371 styler.ColourTo(i, state);
1372 state = SCE_RB_DEFAULT;
1373 preferRE = false;
1375 } else if (ch == Quote.Up) {
1376 Quote.Count++;
1377 } else if (ch == '#' && chNext == '{'
1378 && inner_string_count < INNER_STRINGS_MAX_COUNT
1379 && state != SCE_RB_CHARACTER
1380 && state != SCE_RB_STRING_Q) {
1381 // process #{ ... }
1382 styler.ColourTo(i - 1, state);
1383 styler.ColourTo(i + 1, SCE_RB_OPERATOR);
1384 enterInnerExpression(inner_string_types,
1385 inner_expn_brace_counts,
1386 inner_quotes,
1387 inner_string_count,
1388 state,
1389 brace_counts,
1390 Quote);
1391 preferRE = true;
1392 // Skip one
1393 advance_char(i, ch, chNext, chNext2);
1397 if (state == SCE_RB_ERROR) {
1398 break;
1400 chPrev = ch;
1402 if (state == SCE_RB_WORD) {
1403 // We've ended on a word, possibly at EOF, and need to
1404 // classify it.
1405 (void) ClassifyWordRb(styler.GetStartSegment(), lengthDoc - 1, keywords, styler, prevWord);
1406 } else {
1407 styler.ColourTo(lengthDoc - 1, state);
1411 // Helper functions for folding, disambiguation keywords
1412 // Assert that there are no high-bit chars
1414 static void getPrevWord(int pos,
1415 char *prevWord,
1416 Accessor &styler,
1417 int word_state)
1419 int i;
1420 styler.Flush();
1421 for (i = pos - 1; i > 0; i--) {
1422 if (actual_style(styler.StyleAt(i)) != word_state) {
1423 i++;
1424 break;
1427 if (i < pos - MAX_KEYWORD_LENGTH) // overflow
1428 i = pos - MAX_KEYWORD_LENGTH;
1429 char *dst = prevWord;
1430 for (; i <= pos; i++) {
1431 *dst++ = styler[i];
1433 *dst = 0;
1436 static bool keywordIsAmbiguous(const char *prevWord)
1438 // Order from most likely used to least likely
1439 // Lots of ways to do a loop in Ruby besides 'while/until'
1440 if (!strcmp(prevWord, "if")
1441 || !strcmp(prevWord, "do")
1442 || !strcmp(prevWord, "while")
1443 || !strcmp(prevWord, "unless")
1444 || !strcmp(prevWord, "until")
1445 || !strcmp(prevWord, "for")) {
1446 return true;
1447 } else {
1448 return false;
1452 // Demote keywords in the following conditions:
1453 // if, while, unless, until modify a statement
1454 // do after a while or until, as a noise word (like then after if)
1456 static bool keywordIsModifier(const char *word,
1457 int pos,
1458 Accessor &styler)
1460 if (word[0] == 'd' && word[1] == 'o' && !word[2]) {
1461 return keywordDoStartsLoop(pos, styler);
1463 char ch, chPrev, chPrev2;
1464 int style = SCE_RB_DEFAULT;
1465 int lineStart = styler.GetLine(pos);
1466 int lineStartPosn = styler.LineStart(lineStart);
1467 // We want to step backwards until we don't care about the current
1468 // position. But first move lineStartPosn back behind any
1469 // continuations immediately above word.
1470 while (lineStartPosn > 0) {
1471 ch = styler[lineStartPosn-1];
1472 if (ch == '\n' || ch == '\r') {
1473 chPrev = styler.SafeGetCharAt(lineStartPosn-2);
1474 chPrev2 = styler.SafeGetCharAt(lineStartPosn-3);
1475 lineStart = styler.GetLine(lineStartPosn-1);
1476 // If we find a continuation line, include it in our analysis.
1477 if (chPrev == '\\') {
1478 lineStartPosn = styler.LineStart(lineStart);
1479 } else if (ch == '\n' && chPrev == '\r' && chPrev2 == '\\') {
1480 lineStartPosn = styler.LineStart(lineStart);
1481 } else {
1482 break;
1484 } else {
1485 break;
1489 styler.Flush();
1490 while (--pos >= lineStartPosn) {
1491 style = actual_style(styler.StyleAt(pos));
1492 if (style == SCE_RB_DEFAULT) {
1493 if (iswhitespace(ch = styler[pos])) {
1494 //continue
1495 } else if (ch == '\r' || ch == '\n') {
1496 // Scintilla's LineStart() and GetLine() routines aren't
1497 // platform-independent, so if we have text prepared with
1498 // a different system we can't rely on it.
1500 // Also, lineStartPosn may have been moved to more than one
1501 // line above word's line while pushing past continuations.
1502 chPrev = styler.SafeGetCharAt(pos - 1);
1503 chPrev2 = styler.SafeGetCharAt(pos - 2);
1504 if (chPrev == '\\') {
1505 pos-=1; // gloss over the "\\"
1506 //continue
1507 } else if (ch == '\n' && chPrev == '\r' && chPrev2 == '\\') {
1508 pos-=2; // gloss over the "\\\r"
1509 //continue
1510 } else {
1511 return false;
1514 } else {
1515 break;
1518 if (pos < lineStartPosn) {
1519 return false;
1521 // First things where the action is unambiguous
1522 switch (style) {
1523 case SCE_RB_DEFAULT:
1524 case SCE_RB_COMMENTLINE:
1525 case SCE_RB_POD:
1526 case SCE_RB_CLASSNAME:
1527 case SCE_RB_DEFNAME:
1528 case SCE_RB_MODULE_NAME:
1529 return false;
1530 case SCE_RB_OPERATOR:
1531 break;
1532 case SCE_RB_WORD:
1533 // Watch out for uses of 'else if'
1534 //XXX: Make a list of other keywords where 'if' isn't a modifier
1535 // and can appear legitimately
1536 // Formulate this to avoid warnings from most compilers
1537 if (strcmp(word, "if") == 0) {
1538 char prevWord[MAX_KEYWORD_LENGTH + 1];
1539 getPrevWord(pos, prevWord, styler, SCE_RB_WORD);
1540 return strcmp(prevWord, "else") != 0;
1542 return true;
1543 default:
1544 return true;
1546 // Assume that if the keyword follows an operator,
1547 // usually it's a block assignment, like
1548 // a << if x then y else z
1550 ch = styler[pos];
1551 switch (ch) {
1552 case ')':
1553 case ']':
1554 case '}':
1555 return true;
1556 default:
1557 return false;
1561 #define WHILE_BACKWARDS "elihw"
1562 #define UNTIL_BACKWARDS "litnu"
1563 #define FOR_BACKWARDS "rof"
1565 // Nothing fancy -- look to see if we follow a while/until somewhere
1566 // on the current line
1568 static bool keywordDoStartsLoop(int pos,
1569 Accessor &styler)
1571 char ch;
1572 int style;
1573 int lineStart = styler.GetLine(pos);
1574 int lineStartPosn = styler.LineStart(lineStart);
1575 styler.Flush();
1576 while (--pos >= lineStartPosn) {
1577 style = actual_style(styler.StyleAt(pos));
1578 if (style == SCE_RB_DEFAULT) {
1579 if ((ch = styler[pos]) == '\r' || ch == '\n') {
1580 // Scintilla's LineStart() and GetLine() routines aren't
1581 // platform-independent, so if we have text prepared with
1582 // a different system we can't rely on it.
1583 return false;
1585 } else if (style == SCE_RB_WORD) {
1586 // Check for while or until, but write the word in backwards
1587 char prevWord[MAX_KEYWORD_LENGTH + 1]; // 1 byte for zero
1588 char *dst = prevWord;
1589 int wordLen = 0;
1590 int start_word;
1591 for (start_word = pos;
1592 start_word >= lineStartPosn && actual_style(styler.StyleAt(start_word)) == SCE_RB_WORD;
1593 start_word--) {
1594 if (++wordLen < MAX_KEYWORD_LENGTH) {
1595 *dst++ = styler[start_word];
1598 *dst = 0;
1599 // Did we see our keyword?
1600 if (!strcmp(prevWord, WHILE_BACKWARDS)
1601 || !strcmp(prevWord, UNTIL_BACKWARDS)
1602 || !strcmp(prevWord, FOR_BACKWARDS)) {
1603 return true;
1605 // We can move pos to the beginning of the keyword, and then
1606 // accept another decrement, as we can never have two contiguous
1607 // keywords:
1608 // word1 word2
1609 // ^
1610 // <- move to start_word
1611 // ^
1612 // <- loop decrement
1613 // ^ # pointing to end of word1 is fine
1614 pos = start_word;
1617 return false;
1621 * Folding Ruby
1623 * The language is quite complex to analyze without a full parse.
1624 * For example, this line shouldn't affect fold level:
1626 * print "hello" if feeling_friendly?
1628 * Neither should this:
1630 * print "hello" \
1631 * if feeling_friendly?
1634 * But this should:
1636 * if feeling_friendly? #++
1637 * print "hello" \
1638 * print "goodbye"
1639 * end #--
1641 * So we cheat, by actually looking at the existing indentation
1642 * levels for each line, and just echoing it back. Like Python.
1643 * Then if we get better at it, we'll take braces into consideration,
1644 * which always affect folding levels.
1646 * How the keywords should work:
1647 * No effect:
1648 * __FILE__ __LINE__ BEGIN END alias and
1649 * defined? false in nil not or self super then
1650 * true undef
1652 * Always increment:
1653 * begin class def do for module when {
1655 * Always decrement:
1656 * end }
1658 * Increment if these start a statement
1659 * if unless until while -- do nothing if they're modifiers
1661 * These end a block if there's no modifier, but don't bother
1662 * break next redo retry return yield
1664 * These temporarily de-indent, but re-indent
1665 * case else elsif ensure rescue
1667 * This means that the folder reflects indentation rather
1668 * than setting it. The language-service updates indentation
1669 * when users type return and finishes entering de-denters.
1671 * Later offer to fold POD, here-docs, strings, and blocks of comments
1674 static void FoldRbDoc(unsigned int startPos, int length, int initStyle,
1675 WordList *[], Accessor &styler) {
1676 const bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0;
1677 bool foldComment = styler.GetPropertyInt("fold.comment") != 0;
1679 synchronizeDocStart(startPos, length, initStyle, styler, // ref args
1680 false);
1681 unsigned int endPos = startPos + length;
1682 int visibleChars = 0;
1683 int lineCurrent = styler.GetLine(startPos);
1684 int levelPrev = startPos == 0 ? 0 : (styler.LevelAt(lineCurrent)
1685 & SC_FOLDLEVELNUMBERMASK
1686 & ~SC_FOLDLEVELBASE);
1687 int levelCurrent = levelPrev;
1688 char chNext = styler[startPos];
1689 int styleNext = styler.StyleAt(startPos);
1690 int stylePrev = startPos <= 1 ? SCE_RB_DEFAULT : styler.StyleAt(startPos - 1);
1691 bool buffer_ends_with_eol = false;
1692 for (unsigned int i = startPos; i < endPos; i++) {
1693 char ch = chNext;
1694 chNext = styler.SafeGetCharAt(i + 1);
1695 int style = styleNext;
1696 styleNext = styler.StyleAt(i + 1);
1697 bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n');
1698 if (style == SCE_RB_COMMENTLINE) {
1699 if (foldComment && stylePrev != SCE_RB_COMMENTLINE) {
1700 if (chNext == '{') {
1701 levelCurrent++;
1702 } else if (chNext == '}' && levelCurrent > 0) {
1703 levelCurrent--;
1706 } else if (style == SCE_RB_OPERATOR) {
1707 if (strchr("[{(", ch)) {
1708 levelCurrent++;
1709 } else if (strchr(")}]", ch)) {
1710 // Don't decrement below 0
1711 if (levelCurrent > 0)
1712 levelCurrent--;
1714 } else if (style == SCE_RB_WORD && styleNext != SCE_RB_WORD) {
1715 // Look at the keyword on the left and decide what to do
1716 char prevWord[MAX_KEYWORD_LENGTH + 1]; // 1 byte for zero
1717 prevWord[0] = 0;
1718 getPrevWord(i, prevWord, styler, SCE_RB_WORD);
1719 if (!strcmp(prevWord, "end")) {
1720 // Don't decrement below 0
1721 if (levelCurrent > 0)
1722 levelCurrent--;
1723 } else if ( !strcmp(prevWord, "if")
1724 || !strcmp(prevWord, "def")
1725 || !strcmp(prevWord, "class")
1726 || !strcmp(prevWord, "module")
1727 || !strcmp(prevWord, "begin")
1728 || !strcmp(prevWord, "case")
1729 || !strcmp(prevWord, "do")
1730 || !strcmp(prevWord, "while")
1731 || !strcmp(prevWord, "unless")
1732 || !strcmp(prevWord, "until")
1733 || !strcmp(prevWord, "for")
1735 levelCurrent++;
1737 } else if (style == SCE_RB_HERE_DELIM) {
1738 if (styler.SafeGetCharAt(i-2) == '<' && styler.SafeGetCharAt(i-1) == '<') {
1739 levelCurrent++;
1740 } else if (styleNext == SCE_RB_DEFAULT) {
1741 levelCurrent--;
1744 if (atEOL) {
1745 int lev = levelPrev;
1746 if (visibleChars == 0 && foldCompact)
1747 lev |= SC_FOLDLEVELWHITEFLAG;
1748 if ((levelCurrent > levelPrev) && (visibleChars > 0))
1749 lev |= SC_FOLDLEVELHEADERFLAG;
1750 styler.SetLevel(lineCurrent, lev|SC_FOLDLEVELBASE);
1751 lineCurrent++;
1752 levelPrev = levelCurrent;
1753 visibleChars = 0;
1754 buffer_ends_with_eol = true;
1755 } else if (!isspacechar(ch)) {
1756 visibleChars++;
1757 buffer_ends_with_eol = false;
1759 stylePrev = style;
1761 // Fill in the real level of the next line, keeping the current flags as they will be filled in later
1762 if (!buffer_ends_with_eol) {
1763 lineCurrent++;
1764 int new_lev = levelCurrent;
1765 if (visibleChars == 0 && foldCompact)
1766 new_lev |= SC_FOLDLEVELWHITEFLAG;
1767 if ((levelCurrent > levelPrev) && (visibleChars > 0))
1768 new_lev |= SC_FOLDLEVELHEADERFLAG;
1769 levelCurrent = new_lev;
1771 styler.SetLevel(lineCurrent, levelCurrent|SC_FOLDLEVELBASE);
1774 static const char * const rubyWordListDesc[] = {
1775 "Keywords",
1779 LexerModule lmRuby(SCLEX_RUBY, ColouriseRbDoc, "ruby", FoldRbDoc, rubyWordListDesc, 6);