Class: FastGettext::GetText::MOFile
- Inherits:
-
Hash
- Object
- Hash
- FastGettext::GetText::MOFile
- Defined in:
- lib/fast_gettext/vendor/mofile.rb
Defined Under Namespace
Classes: Header, HeaderRev1, InvalidFormat
Constant Summary collapse
- MAGIC_BIG_ENDIAN =
"\x95\x04\x12\xde"
- MAGIC_LITTLE_ENDIAN =
"\xde\x12\x04\x95"
- HASHWORDBITS =
From gettext-0.12.1/gettext-runtime/intl/hash-string.h Defines the so called ‘hashpjw’ function by P.J. Weinberger [see Aho/Sethi/Ullman, COMPILERS: Principles, Techniques and Tools, 1986, 1987 Bell Telephone Laboratories, Inc.]
32
Instance Attribute Summary collapse
-
#charset ⇒ Object
readonly
Returns the value of attribute charset.
-
#filename ⇒ Object
readonly
Returns the value of attribute filename.
-
#last_modified ⇒ Object
Returns the value of attribute last_modified.
-
#little_endian ⇒ Object
Returns the value of attribute little_endian.
-
#nplurals ⇒ Object
readonly
Returns the value of attribute nplurals.
-
#path ⇒ Object
Returns the value of attribute path.
-
#plural ⇒ Object
readonly
Returns the value of attribute plural.
Class Method Summary collapse
Instance Method Summary collapse
- #hash_string(str) ⇒ Object
-
#initialize(output_charset = nil) ⇒ MOFile
constructor
A new instance of MOFile.
- #load(arg) ⇒ Object
- #load_from_file(filename) ⇒ Object
- #load_from_stream(io) ⇒ Object
- #next_prime(seed) ⇒ Object
-
#prime?(number) ⇒ Boolean
Is this number a prime number ? apidock.com/ruby/Prime.
- #save_to_file(filename) ⇒ Object
- #save_to_stream(io) ⇒ Object
- #set_comment(msgid_or_sym, comment) ⇒ Object
- #update! ⇒ Object
Constructor Details
#initialize(output_charset = nil) ⇒ MOFile
Returns a new instance of MOFile.
57 58 59 60 61 62 63 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 57 def initialize(output_charset = nil) @filename = nil @last_modified = nil @little_endian = true @output_charset = output_charset super() end |
Instance Attribute Details
#charset ⇒ Object (readonly)
Returns the value of attribute charset.
293 294 295 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 293 def charset @charset end |
#filename ⇒ Object (readonly)
Returns the value of attribute filename.
29 30 31 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 29 def filename @filename end |
#last_modified ⇒ Object
Returns the value of attribute last_modified.
292 293 294 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 292 def last_modified @last_modified end |
#little_endian ⇒ Object
Returns the value of attribute little_endian.
292 293 294 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 292 def little_endian @little_endian end |
#nplurals ⇒ Object (readonly)
Returns the value of attribute nplurals.
293 294 295 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 293 def nplurals @nplurals end |
#path ⇒ Object
Returns the value of attribute path.
292 293 294 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 292 def path @path end |
#plural ⇒ Object (readonly)
Returns the value of attribute plural.
293 294 295 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 293 def plural @plural end |
Class Method Details
.open(arg = nil, output_charset = nil) ⇒ Object
52 53 54 55 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 52 def self.open(arg = nil, output_charset = nil) result = self.new(output_charset) result.load(arg) end |
Instance Method Details
#hash_string(str) ⇒ Object
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 190 def hash_string(str) hval = 0 i = 0 str.each_byte do |b| break if b == '\0' hval <<= 4 hval += b.to_i g = hval & (0xf << (HASHWORDBITS - 4)) if (g != 0) hval ^= g >> (HASHWORDBITS - 8) hval ^= g end end hval end |
#load(arg) ⇒ Object
76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 76 def load(arg) if arg.kind_of? String begin st = File.stat(arg) @last_modified = [st.ctime, st.mtime] rescue Exception end load_from_file(arg) else load_from_stream(arg) end @filename = arg self end |
#load_from_file(filename) ⇒ Object
273 274 275 276 277 278 279 280 281 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 273 def load_from_file(filename) @filename = filename begin File.open(filename, 'rb'){|f| load_from_stream(f)} rescue => e e.set_backtrace("File: #{@filename}") raise e end end |
#load_from_stream(io) ⇒ Object
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 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 91 def load_from_stream(io) magic = io.read(4) case magic when MAGIC_BIG_ENDIAN @little_endian = false when MAGIC_LITTLE_ENDIAN @little_endian = true else raise InvalidFormat.new(sprintf("Unknown signature %s", magic.dump)) end endian_type6 = @little_endian ? 'V6' : 'N6' endian_type_astr = @little_endian ? 'V*' : 'N*' header = HeaderRev1.new(magic, *(io.read(4 * 6).unpack(endian_type6))) if header.revision == 1 # FIXME: It doesn't support sysdep correctly. header.n_sysdep_segments = io.read(4).unpack(endian_type6) header.sysdep_segments_offset = io.read(4).unpack(endian_type6) header.n_sysdep_strings = io.read(4).unpack(endian_type6) header.orig_sysdep_tab_offset = io.read(4).unpack(endian_type6) header.trans_sysdep_tab_offset = io.read(4).unpack(endian_type6) elsif header.revision > 1 raise InvalidFormat.new(sprintf("file format revision %d isn't supported", header.revision)) end io.pos = header.orig_table_offset orig_table_data = io.read((4 * 2) * header.nstrings).unpack(endian_type_astr) io.pos = header.translated_table_offset trans_table_data = io.read((4 * 2) * header.nstrings).unpack(endian_type_astr) original_strings = Array.new(header.nstrings) for i in 0...header.nstrings io.pos = orig_table_data[i * 2 + 1] original_strings[i] = io.read(orig_table_data[i * 2 + 0]) end clear for i in 0...header.nstrings io.pos = trans_table_data[i * 2 + 1] str = io.read(trans_table_data[i * 2 + 0]) if (! original_strings[i]) || original_strings[i] == "" if str @charset = nil @nplurals = nil @plural = nil str.each_line{|line| if /^Content-Type:/i =~ line and /charset=((?:\w|-)+)/i =~ line @charset = $1 elsif /^Plural-Forms:\s*nplurals\s*\=\s*(\d*);\s*plural\s*\=\s*([^;]*)\n?/ =~ line @nplurals = $1 @plural = $2 end break if @charset and @nplurals } @nplurals = "1" unless @nplurals @plural = "0" unless @plural end else if @output_charset begin iconv = Iconv || FastGettext::Iconv str = iconv.conv(@output_charset, @charset, str) if @charset rescue iconv::Failure if $DEBUG warn "@charset = ", @charset warn"@output_charset = ", @output_charset warn "msgid = ", original_strings[i] warn "msgstr = ", str end end end end self[original_strings[i]] = str.freeze end self end |
#next_prime(seed) ⇒ Object
177 178 179 180 181 182 183 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 177 def next_prime(seed) require 'mathn' prime = Prime.new while current = prime.succ return current if current > seed end end |
#prime?(number) ⇒ Boolean
Is this number a prime number ? apidock.com/ruby/Prime
173 174 175 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 173 def prime?(number) ('1' * number) !~ /^1?$|^(11+?)\1+$/ end |
#save_to_file(filename) ⇒ Object
283 284 285 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 283 def save_to_file(filename) File.open(filename, 'wb'){|f| save_to_stream(f)} end |
#save_to_stream(io) ⇒ Object
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 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 206 def save_to_stream(io) #Save data as little endian format. header_size = 4 * 7 table_size = 4 * 2 * size hash_table_size = next_prime((size * 4) / 3) hash_table_size = 3 if hash_table_size <= 2 header = Header.new( MAGIC_LITTLE_ENDIAN, # magic 0, # revision size, # nstrings header_size, # orig_table_offset header_size + table_size, # translated_table_offset hash_table_size, # hash_table_size header_size + table_size * 2 # hash_table_offset ) io.write(header.to_a.pack('a4V*')) ary = to_a ary.sort!{|a, b| a[0] <=> b[0]} # sort by original string pos = header.hash_table_size * 4 + header.hash_table_offset orig_table_data = Array.new() ary.each{|item, _| orig_table_data.push(item.size) orig_table_data.push(pos) pos += item.size + 1 # +1 is <NUL> } io.write(orig_table_data.pack('V*')) trans_table_data = Array.new() ary.each{|_, item| trans_table_data.push(item.size) trans_table_data.push(pos) pos += item.size + 1 # +1 is <NUL> } io.write(trans_table_data.pack('V*')) hash_tab = Array.new(hash_table_size) j = 0 ary[0...size].each {|key, _| hash_val = hash_string(key) idx = hash_val % hash_table_size if hash_tab[idx] != nil incr = 1 + (hash_val % (hash_table_size - 2)) begin if (idx >= hash_table_size - incr) idx -= hash_table_size - incr else idx += incr end end until (hash_tab[idx] == nil) end hash_tab[idx] = j + 1 j += 1 } hash_tab.collect!{|i| i ? i : 0} io.write(hash_tab.pack('V*')) ary.each{|item, _| io.write(item); io.write("\0") } ary.each{|_, item| io.write(item); io.write("\0") } self end |
#set_comment(msgid_or_sym, comment) ⇒ Object
287 288 289 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 287 def set_comment(msgid_or_sym, comment) #Do nothing end |
#update! ⇒ Object
65 66 67 68 69 70 71 72 73 74 |
# File 'lib/fast_gettext/vendor/mofile.rb', line 65 def update! if FileTest.exist?(@filename) st = File.stat(@filename) load(@filename) unless (@last_modified == [st.ctime, st.mtime]) else warn "#{@filename} was lost." if $DEBUG clear end self end |