summaryrefslogtreecommitdiff
path: root/lib/coderay/scanners/ruby.rb
blob: 3ce5003b3f8193878dfbaf8e36e8523e96b26732 (plain)
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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
module CodeRay
module Scanners

  # This scanner is really complex, since Ruby _is_ a complex language!
  #
  # It tries to highlight 100% of all common code,
  # and 90% of strange codes.
  #
  # It is optimized for HTML highlighting, and is not very useful for
  # parsing or pretty printing.
  #
  # For now, I think it's better than the scanners in VIM or Syntax, or
  # any highlighter I was able to find, except Caleb's RubyLexer.
  #
  # I hope it's also better than the rdoc/irb lexer.
  class Ruby < Scanner

    include Streamable

    register_for :ruby

    helper :patterns
    
    DEFAULT_OPTIONS = {
      :parse_regexps => true,
    }

  private
    def scan_tokens tokens, options
      parse_regexp = false # options[:parse_regexps]
      first_bake = saved_tokens = nil
      last_token_dot = false
      fancy_allowed = regexp_allowed = true
      heredocs = nil
      last_state = nil
      state = :initial
      depth = nil
      states = []

      patterns = Patterns  # avoid constant lookup

      until eos?
        type = :error
        match = nil
        kind = nil

        if state.instance_of? patterns::StringState
# {{{
          match = scan_until(state.pattern) || scan_until(/\z/)
          tokens << [match, :content] unless match.empty?
          break if eos?
          
          if state.heredoc and self[1]  # end of heredoc
            match = getch.to_s
            match << scan_until(/$/) unless eos?
            tokens << [match, :delimiter]
            tokens << [:close, state.type]
            state = state.next_state
            next
          end
          
          case match = getch
          
          when state.delim
            if state.paren
              state.paren_depth -= 1 
              if state.paren_depth > 0
                tokens << [match, :nesting_delimiter]
                next
              end
            end
            tokens << [match, :delimiter]
            if state.type == :regexp and not eos?
              modifiers = scan(/#{patterns::REGEXP_MODIFIERS}/ox)
              tokens << [modifiers, :modifier] unless modifiers.empty?
              if parse_regexp
                extended = modifiers.index ?x
                tokens = saved_tokens
                regexp = tokens
                for text, type in regexp
                  if text.is_a? ::String
                    case type
                    when :content
                      text.scan(/([^#]+)|(#.*)/) do |plain, comment|
                        if plain
                          tokens << [plain, :content]
                        else
                          tokens << [comment, :comment]
                        end
                      end
                    when :character
                      if text[/\\(?:[swdSWDAzZbB]|\d+)/]
                        tokens << [text, :modifier]
                      else
                        tokens << [text, type]
                      end
                    else
                      tokens << [text, type]
                    end
                  else
                    tokens << [text, type]
                  end                    
                end
                first_bake = saved_tokens = nil
              end
            end
            tokens << [:close, state.type]
            fancy_allowed = regexp_allowed = false
            state = state.next_state
            
          when '\\'
            if state.interpreted
              if esc = scan(/ #{patterns::ESCAPE} /ox)
                tokens << [match + esc, :char]
              else
                tokens << [match, :error]
              end
            else
              case m = getch
              when state.delim, '\\'
                tokens << [match + m, :char]
              when nil
                tokens << [match, :error]
              else
                tokens << [match + m, :content]
              end
            end
            
          when '#'
            case peek(1)[0]
            when ?{
              states.push [state, depth, heredocs]
              fancy_allowed = regexp_allowed = true
              state = :initial
              depth = 1
              tokens << [:open, :inline]
              tokens << [match + getch, :delimiter]
            when ?$, ?@
              tokens << [match, :escape]
              last_state = state  # scan one token as normal code, then return here
              state = :initial
            else
              raise_inspect 'else-case # reached; #%p not handled' % peek(1), tokens
            end
            
          when state.paren
            state.paren_depth += 1
            tokens << [match, :nesting_delimiter]

          when /#{patterns::REGEXP_SYMBOLS}/ox
            tokens << [match, :function]
            
          else
            raise_inspect 'else-case " reached; %p not handled, state = %p' % [match, state], tokens
            
          end
          next
# }}}
        else
# {{{
          if match = scan(/ [ \t\f]+ | \\? \n | \# .* /x) or
            ( bol? and match = scan(/#{patterns::RUBYDOC_OR_DATA}/o) )
            fancy_allowed = true
            case m = match[0]
            when ?\s, ?\t, ?\f
              match << scan(/\s*/) unless eos? or heredocs
              type = :space
            when ?\n, ?\\
              type = :space
              if m == ?\n
                regexp_allowed = true
                state = :initial if state == :undef_comma_expected
              end
              if heredocs
                unscan  # heredoc scanning needs \n at start
                state = heredocs.shift
                tokens << [:open, state.type]
                heredocs = nil if heredocs.empty?
                next
              else
                match << scan(/\s*/) unless eos?
              end
            when ?#, ?=, ?_
              type = :comment
              regexp_allowed = true
            else
              raise_inspect 'else-case _ reached, because case %p was not handled' % [matched[0].chr], tokens
            end
            tokens << [match, type]
            next

          elsif state == :initial

            # IDENTS #
            if match = scan(/#{patterns::METHOD_NAME}/o)
              if last_token_dot
                type = if match[/^[A-Z]/] and not match?(/\(/) then :constant else :ident end
              else
                type = patterns::IDENT_KIND[match]
                if type == :ident and match[/^[A-Z]/] and not match[/[!?]$/] and not match?(/\(/)
                  type = :constant
                elsif type == :reserved
                  state = patterns::DEF_NEW_STATE[match]
                end
              end
              ## experimental!
              fancy_allowed = regexp_allowed = :set if patterns::REGEXP_ALLOWED[match] or check(/\s+(?:%\S|\/\S)/)

            # OPERATORS #
            elsif (not last_token_dot and match = scan(/ ==?=? | \.\.?\.? | [\(\)\[\]\{\}] | :: | , /x)) or
              (last_token_dot and match = scan(/#{patterns::METHOD_NAME_OPERATOR}/o))
              if match !~ / [.\)\]\}] /x or match =~ /\.\.\.?/
                regexp_allowed = fancy_allowed = :set
              end
              last_token_dot = :set if match == '.' or match == '::'
              type = :operator
              unless states.empty?
                case match
                when '{'
                  depth += 1
                when '}'
                  depth -= 1
                  if depth == 0
                    state, depth, heredocs = states.pop
                    tokens << [match, :delimiter]
                    type = :inline
                    match = :close
                  end
                end
              end

            elsif match = scan(/ ['"] /mx)
              tokens << [:open, :string]
              type = :delimiter
              state = patterns::StringState.new :string, match == '"', match  # important for streaming

            elsif match = scan(/#{patterns::INSTANCE_VARIABLE}/o)
              type = :instance_variable

            elsif regexp_allowed and match = scan(/\//)
              tokens << [:open, :regexp]
              type = :delimiter
              interpreted = true
              state = patterns::StringState.new :regexp, interpreted, match
              if parse_regexp
                tokens = []
                saved_tokens = tokens
              end

            elsif match = scan(/#{patterns::NUMERIC}/o)
              type = if self[1] then :float else :integer end

            elsif match = scan(/#{patterns::SYMBOL}/o)
              case delim = match[1]
              when ?', ?"
                tokens << [:open, :symbol]
                tokens << [':', :symbol]
                match = delim.chr
                type = :delimiter
                state = patterns::StringState.new :symbol, delim == ?", match
              else
                type = :symbol
              end

            elsif match = scan(/ [-+!~^]=? | [*|&]{1,2}=? | >>? /x)
              regexp_allowed = fancy_allowed = :set
              type = :operator

            elsif fancy_allowed and match = scan(/#{patterns::HEREDOC_OPEN}/o)
              indented = self[1] == '-'
              quote = self[3]
              delim = self[quote ? 4 : 2]
              type = patterns::QUOTE_TO_TYPE[quote]
              tokens << [:open, type]
              tokens << [match, :delimiter]
              match = :close
              heredoc = patterns::StringState.new type, quote != '\'', delim, (indented ? :indented : :linestart )
              heredocs ||= []  # create heredocs if empty
              heredocs << heredoc

            elsif fancy_allowed and match = scan(/#{patterns::FANCY_START_SAVE}/o)
              type, interpreted = *patterns::FancyStringType.fetch(self[1]) do
                raise_inspect 'Unknown fancy string: %%%p' % k, tokens
              end
              tokens << [:open, type]
              state = patterns::StringState.new type, interpreted, self[2]
              type = :delimiter

            elsif fancy_allowed and match = scan(/#{patterns::CHARACTER}/o)
              type = :integer

            elsif match = scan(/ [\/%]=? | <(?:<|=>?)? | [?:;] /x)
              regexp_allowed = fancy_allowed = :set
              type = :operator

            elsif match = scan(/`/)
              if last_token_dot
                type = :operator
              else
                tokens << [:open, :shell]
                type = :delimiter
                state = patterns::StringState.new :shell, true, match
              end

            elsif match = scan(/#{patterns::GLOBAL_VARIABLE}/o)
              type = :global_variable

            elsif match = scan(/#{patterns::CLASS_VARIABLE}/o)
              type = :class_variable

            else
              match = getch

            end

          elsif state == :def_expected
            state = :initial
            if match = scan(/(?>#{patterns::METHOD_NAME_EX})(?!\.|::)/o)
              type = :method
            else
              next
            end

          elsif state == :undef_expected
            state = :undef_comma_expected
            if match = scan(/#{patterns::METHOD_NAME_EX}/o)
              type = :method
            elsif match = scan(/#{patterns::SYMBOL}/o)
              case delim = match[1]
              when ?', ?"
                tokens << [:open, :symbol]
                tokens << [':', :symbol]
                match = delim.chr
                type = :delimiter
                state = patterns::StringState.new :symbol, delim == ?", match
                state.next_state = :undef_comma_expected
              else
                type = :symbol
              end
            else
              state = :initial
              next
            end

          elsif state == :undef_comma_expected
            if match = scan(/,/)
              type = :operator
              state = :undef_expected
            else
              state = :initial
              next
            end

          elsif state == :module_expected
            if match = scan(/<</)
              type = :operator
            else
              state = :initial
              if match = scan(/ (?:#{patterns::IDENT}::)* #{patterns::IDENT} /ox)
                type = :class
              else
                next
              end
            end

          end
# }}}

          regexp_allowed = regexp_allowed == :set
          fancy_allowed = fancy_allowed == :set
          last_token_dot = last_token_dot == :set

          if $DEBUG and (not kind or kind == :error)
            raise_inspect 'Error token %p in line %d' %
              [[match, kind], line], tokens
          end
          raise_inspect 'Empty token', tokens unless match

          tokens << [match, type]

          if last_state
            state = last_state
            last_state = nil
          end
        end
      end

      states << state if state.is_a? patterns::StringState
      until states.empty?
        tokens << [:close, states.pop.type]
      end

      tokens
    end
  end

end
end

# vim:fdm=marker