This file is indexed.

/usr/lib/ruby/1.8/migemo-regex.rb is in migemo 0.40-10.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
#
# Ruby/Migemo - a library for Japanese incremental search.
#
# Copyright (C) 2001 Satoru Takabayashi <satoru@namazu.org>
#     All rights reserved.
#     This is free software with ABSOLUTELY NO WARRANTY.
#
# You can redistribute it and/or modify it under the terms of 
# the GNU General Public License version 2.
#
# NOTE: Ruby/Migemo can work only with EUC_JP encoding. ($KCODE="e")
#

module MigemoRegex
  class RegexAlternation < Array
    def sort
      self.clone.replace(super)
    end

    def uniq
      self.clone.replace(super)
    end

    def map
      self.clone.replace(super {|x| yield(x)})
    end

    def delete_if
      self.clone.replace(super {|x| yield(x)})
    end

    def select
      self.clone.replace(super {|x| yield(x)})
    end
  end

  class RegexConcatnation < Array
    def map
      self.clone.replace(super {|x| yield(x)})
    end
  end

  class RegexCharClass < Array
  end

  class RegexCompiler
    def initialize
      @regex = RegexAlternation.new
    end
    attr_reader :regex

    private
    # ["$B1?(B", "$B1?F0(B", "$B1?E>(B", "$BF|K\(B", "$BF|K\8l(B"] => ["$B0B(B" "$B1?(B" "$BF|K\(B"]
    # ($B1?(B|$B1?F0(B|$B1?E>(B|$BF|K\(B|$BF|K\8l(B) => ($B0B(B|$B1?(B|$BF|K\(B)
    def optimize1 (regex)
      prefixpat = nil
      regex.sort.select do |word|
	if prefixpat && prefixpat.match(word) then
	  false # excluded
	else
	  prefixpat = Regexp.new(word.quotemeta)
	  true # included
	end
      end
    end

    # ($B$"$"$"(B|$B$"$"$$(B|$B$"$"$&(B)
    # => ($B$"(B($B$"(B($B$"(B|$B$$(B|$B$&(B)))
    def optimize2 (regex)
      tmpregex = regex.sort.clone # I wish Array#cdr were available...
      optimized = RegexAlternation.new
      until tmpregex.empty?
	head = tmpregex.shift
	initial = head.first
	friends = RegexAlternation.new
	while item = tmpregex.first
	  if initial == item.first
	    friends.push(item.rest)
	    tmpregex.shift
	  else
	    break
	  end
	end
	if friends.empty?
	  optimized.push head
	else
	  concat = RegexConcatnation.new
	  concat.push(initial)
	  friends.unshift(head.rest) 
	  concat.push(optimize2(friends))
	  optimized.push(concat)
	end
      end
      return optimized
    end

    # ($B$"(B|$B$$(B|$B$&(B|$B$((B|$B$*(B)
    # => [$B$"$$$&$($*(B]
    def optimize3 (regex)
      charclass = RegexCharClass.new
      if regex.instance_of?(RegexAlternation)
	regex.delete_if do |x|
	  if x.instance_of?(String) && x =~ /^.$/ then
	    charclass.push(x)
	    true
	  end
	end
      end

      if charclass.length == 1
	regex.unshift charclass.first
      elsif charclass.length > 1
	regex.unshift charclass
      end

      regex.map do |x|
	if x.instance_of?(RegexAlternation) || x.instance_of?(RegexConcatnation)
	  optimize3(x)
	else
	  x
	end
      end
    end

    public
    def push (item)
      @regex.push(item)
    end

    def uniq
      @regex.uniq
    end

    def optimize (level)
      @regex = optimize1(@regex) if level >= 1
      @regex = optimize2(@regex) if level >= 2
      @regex = optimize3(@regex) if level >= 3
    end
  end

  class RegexMetachars
    def initialize
      @bar = '|'
      @lparen = '('
      @rparen = ')'
    end
    attr_accessor :bar
    attr_accessor :lparen
    attr_accessor :rparen
  end

  class RegexEgrepMetachars < RegexMetachars
  end

  class RegexPerlMetachars < RegexMetachars
    def initialize
      @bar = '|'
      @lparen = '(?:'
      @rparen = ')'
    end
  end

  class RegexRubyMetachars < RegexMetachars
  end

  class RegexEmacsMetachars < RegexMetachars
    def initialize
      @bar = '\\|'
      @lparen = '\\('
      @rparen = '\\)'
    end
  end

  class RegexRenderer
    def initialize (regex, insertion)
      raise if regex == nil
      @regex = regex
      @meta = RegexMetachars.new
      @insertion = insertion
      @with_paren = false
    end
    attr_accessor :with_paren

    private
    def render_alternation (regex)
      if regex.length == 0
	raise
      elsif regex.length == 1
	render0(regex[0])
      else
	@meta.lparen + 
	  regex.map {|x| render0(x) }.join(@meta.bar) + 
	  @meta.rparen
      end
    end

    def render_concatnation (regex)
      regex.map {|x| render0(x) }.join(@insertion)
    end

    def escape_string (string)
      string.quotemeta
    end

    def escape_charclass (string)
      string.gsub(/\\/, '\\\\\\')
    end

    def render_charclass (regex)
      if regex.delete("-")
	regex.push("-")  # move "-" to the end of Array.
      end
      if regex.delete("]")
	regex.unshift("]")  # move "]" to the beginning of Array.
      end
      escape_charclass("[" + regex.join + "]")
    end

    def insert (string)
      if @insertion != ""
	tmp = string.gsub(/(\\.|.)/, "\\1#{@insertion}")
	tmp = tmp.sub(/#{@insertion.quotemeta}$/, "")
      else
	string
      end
    end

    def render_string (regex)
      insert(escape_string(regex))
    end

    def render0 (x)
      if x.instance_of?(RegexAlternation)
	render_alternation(x)
      elsif x.instance_of?(RegexConcatnation)
	render_concatnation(x)
      elsif x.instance_of?(RegexCharClass)
	render_charclass(x)
      elsif x.instance_of?(String)
	render_string(x)
      else
	raise "unexpected type: #{x} of #{x.class}"
      end
    end

    public
    def render
      if @with_paren  # e.g. "(a|b|c)"
        render0(@regex)
      else            # e.g. "a|b|c"
        @regex.map do |x|
          render0(x)
        end.join @meta.bar
      end
    end

    def join_regexes (string, regexes)
      ([string] + regexes).join @meta.bar
    end
  end

  class RegexPerlRenderer < RegexRenderer
    def initialize (regex, insertion)
      super(regex, insertion)
      @meta = RegexPerlMetachars.new
    end
  end

  class RegexRubyRenderer < RegexPerlRenderer
  end

  class RegexEgrepRenderer < RegexRenderer
  end

  class RegexEmacsRenderer < RegexRenderer
    def initialize (regex, insertion)
      super(regex, insertion)
      @meta = RegexEmacsMetachars.new
    end

    def escape_string (string)
      str = string.quotemeta
      str.gsub!(/\\\(/, "(")
      str.gsub!(/\\\)/, ")")
      str.gsub!(/\\\|/, "|")
      str.gsub!(/\\\</, "<")
      str.gsub!(/\\\>/, ">")
      str.gsub!(/\\\=/, "=")
      str.gsub!(/\\\'/, "'")
      str.gsub!(/\\\`/, "`")
      str.gsub!(/\\\{/, "{")
      str
    end

    def escape_charclass (string)
      string
    end
  end

  module RegexMetacharsFactory
    def new (type)
      case type
      when nil
	RegexRubyMetachars.new
      when "emacs"
	RegexEmacsMetachars.new
      when "perl"
	RegexPerlMetachars.new
      when "ruby"
	RegexRubyMetachars.new
      when "egrep"
	RegexEgrepMetachars.new
      else
	raise "Unknown type: #{type}"
      end
    end
    module_function :new
  end

  module RegexRendererFactory
    def new (regex, type, insertion)
      case type
      when nil
	RegexRubyRenderer.new(regex, insertion)
      when "emacs"
	RegexEmacsRenderer.new(regex, insertion)
      when "perl"
	RegexPerlRenderer.new(regex, insertion)
      when "ruby"
	RegexRubyRenderer.new(regex, insertion)
      when "egrep"
	RegexEgrepRenderer.new(regex, insertion)
      else
	raise "Unknown type: #{regex}"
      end
    end
    module_function :new
  end

end