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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
|
# TODO: string_delimiter should be part of the state: push(:regexp, '/'), check_if -> (state, delimiter) { … }
module CodeRay
module Scanners
class RuleBasedScanner6 < Scanner
Groups = Struct.new :token_kinds
Kind = Struct.new :token_kind
Push = Struct.new :state
Pop = Class.new
Check = Struct.new :condition
CheckIf = Class.new Check
CheckUnless = Class.new Check
ValueSetter = Struct.new :targets, :value
class << self
attr_accessor :states
def state *names, &block
@code ||= ""
@code << "when #{names.map(&:inspect).join(', ')}\n"
@first = true
instance_eval(&block)
@code << " else\n"
# @code << " raise 'no match for #{names.map(&:inspect).join(', ')}'\n"
@code << " encoder.text_token getch, :error\n"
@code << " end\n"
@code << " \n"
end
def on? pattern
pattern_expression = pattern.inspect
@code << " #{'els' unless @first}if check(#{pattern_expression})\n"
@first = true
yield
@code << " end\n"
@first = false
end
def on *pattern_and_actions
if index = pattern_and_actions.find_index { |item| !item.is_a?(Check) }
preconditions = pattern_and_actions[0..index - 1] if index > 0
pattern = pattern_and_actions[index] or raise 'I need a pattern!'
actions = pattern_and_actions[index + 1..-1] or raise 'I need actions!'
end
precondition_expression = ''
if preconditions
for precondition in preconditions
case precondition
when CheckIf
case precondition.condition
when Proc
precondition_expression << "#{make_callback(precondition.condition)} && "
when Symbol
precondition_expression << "#{precondition.condition} && "
else
raise "I don't know how to evaluate this check_if precondition: %p" % [precondition.condition]
end
when CheckUnless
case precondition.condition
when Proc
precondition_expression << "!#{make_callback(precondition.condition)} && "
when Symbol
precondition_expression << "!#{precondition.condition} && "
else
raise "I don't know how to evaluate this check_unless precondition: %p" % [precondition.condition]
end
else
raise "I don't know how to evaluate this precondition: %p" % [precondition]
end
end
end
case pattern
when String
raise
pattern_expression = pattern
when Regexp
pattern_expression = pattern.inspect
when Proc
pattern_expression = make_callback(pattern)
else
raise "I don't know how to evaluate this pattern: %p" % [pattern]
end
@code << " #{'els' unless @first}if #{precondition_expression}match = scan(#{pattern_expression})\n"
for action in actions
case action
when String
raise
@code << " p 'evaluate #{action.inspect}'\n" if $DEBUG
@code << " #{action}\n"
when Symbol
@code << " p 'text_token %p %p' % [match, #{action.inspect}]\n" if $DEBUG
@code << " encoder.text_token match, #{action.inspect}\n"
when Kind
case action.token_kind
when Proc
@code << " encoder.text_token match, #{make_callback(action.token_kind)}\n"
else
raise "I don't know how to evaluate this kind: %p" % [action.token_kind]
end
when Groups
@code << " p 'text_tokens %p in groups %p' % [match, #{action.token_kinds.inspect}]\n" if $DEBUG
action.token_kinds.each_with_index do |kind, i|
@code << " encoder.text_token self[#{i + 1}], #{kind.inspect} if self[#{i + 1}]\n"
end
when Push
case action.state
when String
raise
@code << " p 'push %p' % [#{action.state}]\n" if $DEBUG
@code << " state = #{action.state}\n"
when Symbol
@code << " p 'push %p' % [#{action.state.inspect}]\n" if $DEBUG
@code << " state = #{action.state.inspect}\n"
when Proc
@code << " state = #{make_callback(action.state)}\n"
else
raise "I don't know how to evaluate this push state: %p" % [action.state]
end
@code << " states << state\n"
@code << " encoder.begin_group state\n"
when Pop
@code << " p 'pop %p' % [states.last]\n" if $DEBUG
@code << " encoder.end_group states.pop\n"
@code << " state = states.last\n"
when ValueSetter
case action.value
when Proc
@code << " #{action.targets.join(' = ')} = #{make_callback(action.value)}\n"
else
@code << " #{action.targets.join(' = ')} = #{action.value.inspect}\n"
end
when Proc
@code << " #{make_callback(action)}\n"
else
raise "I don't know how to evaluate this action: %p" % [action]
end
end
@first = false
end
def groups *token_kinds
Groups.new token_kinds
end
def kind token_kind = nil, &block
Kind.new token_kind || block
end
def push state = nil, &block
raise 'push requires a state or a block; got nothing' unless state || block
Push.new state || block
end
def pop
Pop.new
end
def check_if value = nil, &callback
CheckIf.new value || callback
end
def check_unless value = nil, &callback
CheckUnless.new value || callback
end
def flag_on *flags
ValueSetter.new Array(flags), true
end
def flag_off *flags
ValueSetter.new Array(flags), false
end
def set flag, value = nil, &callback
ValueSetter.new [flag], value || callback
end
def unset *flags
ValueSetter.new Array(flags), nil
end
protected
def make_callback block
@callbacks ||= {}
base_name = "__callback_line_#{block.source_location.last}"
name = base_name
counter = 'a'
while @callbacks.key?(name)
name = "#{base_name}_#{counter}"
counter.succ!
end
@callbacks[name] = define_method(name, &block)
arguments = block.parameters.map(&:last)
if arguments.empty?
name
else
"#{name}(#{arguments.join(', ')})"
end
end
end
end
# Scanner for JavaScript.
#
# Aliases: +ecmascript+, +ecma_script+, +javascript+
class JavaScript5 < RuleBasedScanner6
register_for :java_script5
file_extension 'js'
# The actual JavaScript keywords.
KEYWORDS = %w[
break case catch continue default delete do else
finally for function if in instanceof new
return switch throw try typeof var void while with
] # :nodoc:
PREDEFINED_CONSTANTS = %w[
false null true undefined NaN Infinity
] # :nodoc:
MAGIC_VARIABLES = %w[ this arguments ] # :nodoc: arguments was introduced in JavaScript 1.4
KEYWORDS_EXPECTING_VALUE = WordList.new.add %w[
case delete in instanceof new return throw typeof with
] # :nodoc:
# Reserved for future use.
RESERVED_WORDS = %w[
abstract boolean byte char class debugger double enum export extends
final float goto implements import int interface long native package
private protected public short static super synchronized throws transient
volatile
] # :nodoc:
IDENT_KIND = WordList.new(:ident).
add(RESERVED_WORDS, :reserved).
add(PREDEFINED_CONSTANTS, :predefined_constant).
add(MAGIC_VARIABLES, :local_variable).
add(KEYWORDS, :keyword) # :nodoc:
ESCAPE = / [bfnrtv\n\\'"] | x[a-fA-F0-9]{1,2} | [0-7]{1,3} /x # :nodoc:
UNICODE_ESCAPE = / u[a-fA-F0-9]{4} | U[a-fA-F0-9]{8} /x # :nodoc:
REGEXP_ESCAPE = / [bBdDsSwW] /x # :nodoc:
STRING_CONTENT_PATTERN = {
"'" => /[^\\']+/,
'"' => /[^\\"]+/,
'/' => /[^\\\/]+/,
} # :nodoc:
KEY_CHECK_PATTERN = {
"'" => / (?> [^\\']* (?: \\. [^\\']* )* ) ' \s* : /mx,
'"' => / (?> [^\\"]* (?: \\. [^\\"]* )* ) " \s* : /mx,
} # :nodoc:
state :initial do
on %r/ \s+ | \\\n /x, :space, set(:value_expected) { |match, value_expected| value_expected || match.index(?\n) }
on %r! // [^\n\\]* (?: \\. [^\n\\]* )* | /\* (?: .*? \*/ | .*() ) !mx, :comment, flag_off(:value_expected)
# state = :open_multi_line_comment if self[1]
on? %r/\.?\d/ do
on %r/0[xX][0-9A-Fa-f]+/, :hex, flag_off(:key_expected, :value_expected)
on %r/(?>0[0-7]+)(?![89.eEfF])/, :octal, flag_off(:key_expected, :value_expected)
on %r/\d+[fF]|\d*\.\d+(?:[eE][+-]?\d+)?[fF]?|\d+[eE][+-]?\d+[fF]?/, :float, flag_off(:key_expected, :value_expected)
on %r/\d+/, :integer, flag_off(:key_expected, :value_expected)
end
on check_if(:value_expected), %r/<([[:alpha:]]\w*) (?: [^\/>]*\/> | .*?<\/\1>)/xim, -> (match, encoder) do
# TODO: scan over nested tags
xml_scanner.tokenize match, :tokens => encoder
end, flag_off(:value_expected)
on %r/ [-+*=<>?:;,!&^|(\[{~%]++ (?<![{,]) | \.+(?!\d) /x, :operator, flag_on(:value_expected), flag_off(:key_expected, :function_expected)
on %r/ [-+*=<>?:;,!&^|(\[{~%]*+ (?<=[{,]) /x, :operator, flag_on(:value_expected, :key_expected), flag_off(:function_expected)
on %r/ [)\]}]+ /x, :operator, flag_off(:function_expected, :key_expected, :value_expected)
on %r/ function (?![A-Za-z_0-9$]) /x, :keyword, flag_on(:function_expected), flag_off(:key_expected, :value_expected)
on %r/ [$a-zA-Z_][A-Za-z_0-9$]* /x, kind { |match, function_expected, key_expected|
kind = IDENT_KIND[match]
# TODO: labels
if kind == :ident
if match.index(?$) # $ allowed inside an identifier
kind = :predefined
elsif function_expected
kind = :function
elsif check(/\s*[=:]\s*function\b/)
kind = :function
elsif key_expected && check(/\s*:/)
kind = :key
end
end
kind
}, flag_off(:function_expected, :key_expected), set(:value_expected) { |match| KEYWORDS_EXPECTING_VALUE[match] }
on %r/["']/, push { |match, key_expected| key_expected && check(KEY_CHECK_PATTERN[match]) ? :key : :string }, :delimiter, set(:string_delimiter) { |match| match }
on check_if(:value_expected), %r/\//, push(:regexp), :delimiter
on %r/\//, :operator, flag_on(:value_expected), flag_off(:key_expected)
end
state :string, :key do
on -> (string_delimiter) { STRING_CONTENT_PATTERN[string_delimiter] }, :content
on %r/["']/, :delimiter, unset(:string_delimiter), flag_off(:key_expected, :value_expected), pop
on %r/ \\ (?: #{ESCAPE} | #{UNICODE_ESCAPE} ) /x, kind { |match, string_delimiter|
string_delimiter == "'" && !(match == "\\\\" || match == "\\'") ? :content : :char
}
on %r/ \\. /mx, :content
on %r/ \\ /x, unset(:string_delimiter), flag_off(:key_expected, :value_expected), pop, :error
end
state :regexp do
on STRING_CONTENT_PATTERN['/'], :content
on %r/(\/)([gim]+)?/, groups(:delimiter, :modifier), flag_off(:key_expected, :value_expected), pop
on %r/ \\ (?: #{ESCAPE} | #{REGEXP_ESCAPE} | #{UNICODE_ESCAPE} ) /x, :char
on %r/\\./m, :content
on %r/ \\ /x, pop, :error, flag_off(:key_expected, :value_expected)
end
# state :open_multi_line_comment do
# on %r! .*? \*/ !mx, :initial # don't consume!
# on %r/ .+ /mx, :comment, -> { value_expected = true }
#
# # if match = scan(%r! .*? \*/ !mx)
# # state = :initial
# # else
# # match = scan(%r! .+ !mx)
# # end
# # value_expected = true
# # encoder.text_token match, :comment if match
# end
protected
def setup
@state = :initial
end
scan_tokens_code = <<-"RUBY"
def scan_tokens encoder, options#{ def_line = __LINE__; nil }
state, string_delimiter = options[:state] || @state
if string_delimiter
encoder.begin_group state
end
value_expected = true
key_expected = false
function_expected = false
states = [state]
until eos?
case state
#{ @code.chomp.gsub(/^/, ' ') }
else
raise_inspect 'Unknown state: %p' % [state], encoder
end
end
if options[:keep_state]
@state = state, string_delimiter
end
if [:string, :regexp].include? state
encoder.end_group state
end
encoder
end
RUBY
if ENV['PUTS']
puts scan_tokens_code
puts "callbacks: #{@callbacks.size}"
end
class_eval scan_tokens_code, __FILE__, def_line
protected
def reset_instance
super
@xml_scanner.reset if defined? @xml_scanner
end
def xml_scanner
@xml_scanner ||= CodeRay.scanner :xml, :tokens => @tokens, :keep_tokens => true, :keep_state => false
end
end
end
end
|