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
|
# -*- coding: utf-8 -*-
=begin
parser/ruby.rb - parser for ruby script
Copyright (C) 2013 Kouhei Sutou <kou@clear-code.com>
Copyright (C) 2003-2009 Masao Mutoh
Copyright (C) 2005 speakillof
Copyright (C) 2001,2002 Yasushi Shoji, Masao Mutoh
You may redistribute it and/or modify it under the same
license terms as Ruby or LGPL.
=end
require "irb/ruby-lex"
require "stringio"
require "gettext/po_entry"
module GetText
class RubyLexX < RubyLex # :nodoc: all
# Parser#parse resemlbes RubyLex#lex
def parse
until ( (tk = token).kind_of?(RubyToken::TkEND_OF_SCRIPT) && !@continue or tk.nil? )
s = get_readed
if RubyToken::TkSTRING === tk or RubyToken::TkDSTRING === tk
def tk.value
@value
end
def tk.value=(s)
@value = s
end
if @here_header
s = s.sub(/\A.*?\n/, "").sub(/^.*\n\Z/, "")
else
begin
s = eval(s)
rescue Exception
# Do nothing.
end
end
tk.value = s
end
if $DEBUG
if tk.is_a? TkSTRING or tk.is_a? TkDSTRING
$stderr.puts("#{tk}: #{tk.value}")
elsif tk.is_a? TkIDENTIFIER
$stderr.puts("#{tk}: #{tk.name}")
else
$stderr.puts(tk)
end
end
yield tk
end
return nil
end
# Original parser does not keep the content of the comments,
# so monkey patching this with new token type and extended
# identify_comment implementation
RubyToken.def_token :TkCOMMENT_WITH_CONTENT, TkVal
def identify_comment
@ltype = "#"
get_readed # skip the hash sign itself
while ch = getc
if ch == "\n"
@ltype = nil
ungetc
break
end
end
return Token(TkCOMMENT_WITH_CONTENT, get_readed)
end
end
# Extends POEntry for RubyParser.
# Implements a sort of state machine to assist the parser.
module POEntryForRubyParser
# Supports parsing by setting attributes by and by.
def set_current_attribute(str)
param = @param_type[@param_number]
raise ParseError, "no more string parameters expected" unless param
set_value(param, str)
end
def init_param
@param_number = 0
self
end
def advance_to_next_attribute
@param_number += 1
end
end
class POEntry
include POEntryForRubyParser
alias :initialize_old :initialize
def initialize(type)
initialize_old(type)
init_param
end
end
class RubyParser
ID = ["gettext", "_", "N_", "sgettext", "s_"]
PLURAL_ID = ["ngettext", "n_", "Nn_", "ns_", "nsgettext"]
MSGCTXT_ID = ["pgettext", "p_"]
MSGCTXT_PLURAL_ID = ["npgettext", "np_"]
class << self
def target?(file) # :nodoc:
true # always true, as the default parser.
end
# Parses Ruby script located at `path`.
#
# This is a short cut method. It equals to `new(path,
# options).parse`.
#
# @param (see #initialize)
# @option (see #initialize)
# @return (see #parse)
# @see #initialize
# @see #parse
def parse(path, options={})
parser = new(path, options)
parser.parse
end
end
#
# @example `:comment_tag` option: String tag
# path = "hello.rb"
# # content:
# # # TRANSLATORS: This is a comment to translators.
# # _("Hello")
# #
# # # This is a comment for programmers.
# # # TRANSLATORS: This is a comment to translators.
# # # This is also a comment to translators.
# # _("World")
# #
# # # This is a comment for programmers.
# # # This is also a comment for programmers
# # # because all lines don't start with "TRANSRATORS:".
# # _("Bye")
# options = {:comment_tag => "TRANSLATORS:"}
# parser = GetText::RubyParser.new(path, options)
# parser.parse
# # => [
# # POEntry<
# # :msgid => "Hello",
# # :extracted_comment =>
# # "TRANSLATORS: This is a comment to translators.",
# # >,
# # POEntry<
# # :msgid => "World",
# # :extracted_comment =>
# # "TRANSLATORS: This is a comment to translators.\n" +
# # "This is also a comment to translators.",
# # >,
# # POEntry<
# # :msgid => "Bye",
# # :extracted_comment => nil,
# # >,
# # ]
#
# @example `:comment_tag` option: nil tag
# path = "hello.rb"
# # content:
# # # This is a comment to translators.
# # # This is also a comment for translators.
# # _("Hello")
# options = {:comment_tag => nil}
# parser = GetText::RubyParser.new(path, options)
# parser.parse
# # => [
# # POEntry<
# # :msgid => "Hello",
# # :extracted_comment =>
# # "This is a comment to translators.\n" +
# # " This is also a comment for translators.",
# # >,
# # ]
#
# @param path [String] Ruby script path to be parsed
# @param options [Hash] Options
# @option options [String, nil] :comment_tag The tag to
# detect comments to be extracted. The extracted comments are
# used to deliver messages to translators from programmers.
#
# If the tag is String and a line in a comment start with the
# tag, the line and the following lines are extracted.
#
# If the tag is nil, all comments are extracted.
def initialize(path, options={})
@path = path
@options = options
end
# Extracts messages from @path.
#
# @return [Array<POEntry>] Extracted messages
def parse
source = IO.read(@path)
encoding = detect_encoding(source) || source.encoding
source.force_encoding(encoding)
parse_source(source)
end
def detect_encoding(source)
binary_source = source.dup.force_encoding("ASCII-8BIT")
if /\A.*coding\s*[=:]\s*([[:alnum:]\-_]+)/ =~ binary_source
$1.gsub(/-(?:unix|mac|dos)\z/, "")
else
nil
end
end
def parse_source(source)
po = []
file = StringIO.new(source)
rl = RubyLexX.new
rl.set_input(file)
rl.skip_space = true
#rl.readed_auto_clean_up = true
po_entry = nil
line_no = nil
last_comment = ""
reset_comment = false
ignore_next_comma = false
rl.parse do |tk|
begin
ignore_current_comma = ignore_next_comma
ignore_next_comma = false
case tk
when RubyToken::TkIDENTIFIER, RubyToken::TkCONSTANT
if store_po_entry(po, po_entry, line_no, last_comment)
last_comment = ""
end
if ID.include?(tk.name)
po_entry = POEntry.new(:normal)
elsif PLURAL_ID.include?(tk.name)
po_entry = POEntry.new(:plural)
elsif MSGCTXT_ID.include?(tk.name)
po_entry = POEntry.new(:msgctxt)
elsif MSGCTXT_PLURAL_ID.include?(tk.name)
po_entry = POEntry.new(:msgctxt_plural)
else
po_entry = nil
end
line_no = tk.line_no.to_s
when RubyToken::TkSTRING, RubyToken::TkDSTRING
po_entry.set_current_attribute tk.value if po_entry
when RubyToken::TkPLUS, RubyToken::TkNL
#do nothing
when RubyToken::TkINTEGER
ignore_next_comma = true
when RubyToken::TkCOMMA
unless ignore_current_comma
po_entry.advance_to_next_attribute if po_entry
end
else
if store_po_entry(po, po_entry, line_no, last_comment)
po_entry = nil
last_comment = ""
end
end
rescue
$stderr.print "\n\nError"
$stderr.print " parsing #{@path}:#{tk.line_no}\n\t #{source.lines.to_a[tk.line_no - 1]}" if tk
$stderr.print "\n #{$!.inspect} in\n"
$stderr.print $!.backtrace.join("\n")
$stderr.print "\n"
exit 1
end
case tk
when RubyToken::TkCOMMENT_WITH_CONTENT
last_comment = "" if reset_comment
if last_comment.empty?
comment1 = tk.value.lstrip
if comment_to_be_extracted?(comment1)
last_comment << comment1
end
else
last_comment += "\n"
last_comment += tk.value
end
reset_comment = false
when RubyToken::TkNL
else
reset_comment = true
end
end
po
end
private
def store_po_entry(po, po_entry, line_no, last_comment) #:nodoc:
if po_entry && po_entry.msgid
po_entry.references << @path + ":" + line_no
po_entry.add_comment(last_comment) unless last_comment.empty?
po << po_entry
true
else
false
end
end
def comment_to_be_extracted?(comment)
return false unless @options.has_key?(:comment_tag)
tag = @options[:comment_tag]
return true if tag.nil?
/\A#{Regexp.escape(tag)}/ === comment
end
end
end
|