forked from binaryage/totalfinder-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rakefile
482 lines (388 loc) · 14 KB
/
rakefile
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
require 'rake'
################################################################################################
# constants
ROOT_DIR = File.expand_path('.')
FINDER_DIR = '/System/Library/CoreServices/Finder.app'
FINDER_RESOURCES_DIR = File.join(FINDER_DIR, 'Contents/Resources')
PLUGIN_RESOURCES_DIR = File.join(ROOT_DIR, 'plugin', 'Resources')
INSTALLER_RESOURCES_DIR = File.join(ROOT_DIR, 'installer')
ENGLISH_LPROJ = File.join(PLUGIN_RESOURCES_DIR, 'English.lproj')
TOTALFINDER_PLUGIN_SOURCES = File.join(ROOT_DIR, '..', '..', 'totalfinder-plugin', 'plugin')
TOTALFINDER_FEATURES_SOURCES = File.join(ROOT_DIR, '..', '..', 'totalfinder-features')
################################################################################################
# dependencies
begin
require 'colored'
rescue LoadError
raise 'You must "gem install colored" to use terminal colors'
end
################################################################################################
# helpers
def die(msg, status=1)
puts "Error[#{status||$?}]: #{msg}".red
exit status||$?
end
def sys(cmd)
puts "> #{cmd}".yellow
system(cmd)
end
################################################################################################
# routines
def get_list_of_features(filter=nil)
filter = "*" unless filter
features = []
Dir.glob(File.join(TOTALFINDER_FEATURES_SOURCES, filter)) do |file|
if File.directory?(file) and File.exists? File.join(file, File.basename(file)+".xcodeproj") then
features << File.basename(file)
end
end
features.uniq.reject{|x| x=="FeaturesFramework"}
end
def extract_code_strings(folder)
strings = ""
Dir.chdir(folder) do
strings << `ack -oh '\\$\\(@".*?"\\)'` # `ack -oh '\$\(@".*?"\)'`
strings << `ack -oh '\\$\\$\\(@".*?"\\)'` # `ack -oh '\$\$\(@".*?"\)'`
end
strings = strings.split("\n").map do |s|
s =~ /(\".*\")/
$1
end
strings.uniq
end
def extract_ui_strings(folder, xib_mask)
strings = ""
Dir.chdir(folder) do
strings << `ack -o -G #{xib_mask} '\\^.*?\\<'` # search only xibs for ^SOME STRING
end
strings = strings.split("\n").map do |s|
s =~ /\^(.*)\</
'"'+$1+'"'
end
strings.uniq
end
def parse_strings_file(filename)
lines = []
if File.exists? filename then
File.open(filename, "r") do |f|
f.each do |line|
lines << line
end
end
end
lines
end
def update_english_strings(project, src_folder)
removed_count = 0
added_count = 0
target = File.join(ENGLISH_LPROJ, "#{project}.strings")
code_strings = extract_code_strings(src_folder)
strings = parse_strings_file(target)
# comment out all existing strings as REMOVED
strings.map! do |line|
if (line[0...1]=='"') then
line = "/* REMOVED "+line.strip+" */\n" # ***
removed_count += 1
end
line
end
# go through code strings and try to unmark them in the file
epilogue_emmited = false
code_strings.each do |code|
found = false
strings.map! do |line|
if line =~ /^\/\* REMOVED/
if line.index code then
line.gsub!("REMOVED", "DUPLICIT") if found
line = line[11..-5] + "\n" unless found # see ***
found = true
removed_count -= 1
end
end
line
end
unless found then
# put new strings at the end of the file
unless epilogue_emmited then
strings << "\n"
strings << "/* NEW STRINGS - TODO: SORT THEM IN OR CREATE A NEW SECTION */\n"
epilogue_emmited = true
end
strings << code + " = " + code + ";\n"
added_count += 1
end
end
strings << "/* no strings */" if strings.size==0
File.open(target, "w") do |f|
f << strings.join
end
puts " #{"+#{added_count}".blue} #{"-#{removed_count}".red} of #{strings.size} in #{target}"
end
def update_english_localizable_strings(project, xib_mask)
removed_count = 0
added_count = 0
target = File.join(ENGLISH_LPROJ, "#{project}UI.strings")
ui_strings = extract_ui_strings(PLUGIN_RESOURCES_DIR, xib_mask)
localizable_strings = parse_strings_file(target)
# comment out all existing strings as REMOVED
localizable_strings.map! do |line|
if (line[0...1]=='"') then
line = "/* REMOVED "+line.strip+" */\n" # ***
removed_count += 1
end
line
end
# go through code strings and try to unmark them in the file
epilogue_emmited = false
ui_strings.each do |code|
found = false
localizable_strings.map! do |line|
if line =~ /^\/\* REMOVED/
if line.index code then
line.gsub!("REMOVED", "DUPLICIT") if found
line = line[11..-5] + "\n" unless found # see ***
found = true
removed_count -= 1
end
end
line
end
unless found then
# put new strings at the end of the file
unless epilogue_emmited then
localizable_strings << "\n"
localizable_strings << "/* NEW STRINGS - TODO: SORT THEM IN OR CREATE A NEW SECTION */\n"
epilogue_emmited = true
end
localizable_strings << code + " = " + code + ";\n"
added_count += 1
end
end
localizable_strings << "/* no strings */" if localizable_strings.size==0
File.open(target, "w") do |f|
f << localizable_strings.join
end
puts " #{"+#{added_count}".blue} #{"-#{removed_count}".red} of #{localizable_strings.size} in #{target}"
end
def inprint_strings(source, dest)
strings = parse_strings_file(source)
originals = parse_strings_file(dest)
# transform lang back to english
index = 0
strings.map! do |line|
index+=1
next line unless (line.strip[0...1]=='"')
line =~ /^\s*?(".*")\s*?=\s*?(".*")\s*?;\s*?/
die "syntax error in " + source.blue+":"+index.to_s unless $1
line = $1 + " = " + $1 + ";\n";
line
end
# replace translations we already know from previsous version
index = 0
originals.each do |original|
index+=1
next unless (original.strip[0...1]=='"')
original =~ /^\s*?(".*")\s*?=\s*?(".*")\s*?;(.*)$/
needle = $1
haystack = $2
rest = $3
die "syntax error in " + dest.blue+":"+index.to_s unless $1 and $2
found = false
strings.map! do |line|
if (line.index needle) == 0 then
line = needle + " = " + haystack + ";" + rest + "\n";
found = true
end
line
end
end
File.open(dest, "w") do |f|
f << strings.join
end
strings
end
def propagate_english_to_cwd
puts Dir.pwd.blue
total = 0
Dir.glob(File.join(ENGLISH_LPROJ, "*.strings")) do |file|
puts " #{File.basename(file)}".yellow
total += inprint_strings(file, File.join(Dir.pwd, File.basename(file))).size
end
puts " -> "+total.to_s.green+" strings processed"
end
def propagate_from_english_to_other_lprojs
glob = ENV["to"] || "*.lproj"
Dir.glob(File.join(PLUGIN_RESOURCES_DIR, glob)) do |dir|
Dir.chdir dir do
propagate_english_to_cwd
end
end
end
def create_localizations_for_project
glob = ENV["to"] || "*.lproj"
project = ENV["project"] || die("Project name not defined")
Dir.glob(File.join(PLUGIN_RESOURCES_DIR, glob)) do |dir|
Dir.chdir dir do
File.open(File.join(dir, project + ".strings"), "w") do |f|
f << "/* no strings */"
end
File.open(File.join(dir, project + "UI.strings"), "w") do |f|
f << "/* no strings */"
end
end
end
end
def exec_cmd_in_lprojs(cmd)
glob = ENV["to"] || "*.lproj"
Dir.glob(File.join(PLUGIN_RESOURCES_DIR, glob)) do |dir|
puts dir.blue
Dir.chdir dir do
sys(cmd)
end
end
end
def validate_strings_file path
lines = parse_strings_file(path)
in_multi_line_comment = false
counter = 0
count = lines.size
lines.each do |line|
counter += 1
if in_multi_line_comment and line =~ /.*\*\/\w*$/
in_multi_line_comment = false
next
end
next if in_multi_line_comment
next if line =~ /^".*?"\s*=\s*".*?";\s*$/
next if line =~ /^".*?"\s*=\s*".*?";\s*\/\*.*?\*\/$/
next if line =~ /^".*?"\s*=\s*".*?";\s*\/\/.*?$/
next if line =~ /^\/\*.*?\*\/$/
next if line =~ /^$/
# last line may be without new-line character
next if counter==count and line =~ /^".*?"\s*=\s*".*?";\s*/
next if counter==count and line =~ /^".*?"\s*=\s*".*?";\s*\/\*.*?\*\//
next if counter==count and line =~ /^".*?"\s*=\s*".*?";\s*\/\/.*?$/
if line =~ /^\/\*[^\*]*/ then
in_multi_line_comment = true
next
end
puts "line ##{counter}: unrecognized pattern".red+" (fix rakefile if this is a valid pattern)"
puts line
puts "mate -l #{counter} \"#{path}\"".yellow
return false
end
true
end
def validate_strings_files
begin
require 'cmess/guess_encoding'
rescue
raise 'You must "gem install cmess" to use character encoding detection'
end
glob = ENV["to"] || "*.lproj"
counter = 0
failed = 0
Dir.glob(File.join(PLUGIN_RESOURCES_DIR, glob, "*.strings")) do |path|
counter += 1
input = File.read path
charset = CMess::GuessEncoding::Automatic.guess(input)
ok = ((validate_strings_file path) and (charset=="ASCII" or charset=="UTF-8"))
puts charset.magenta+" "+path.blue+" "+"ok".yellow if ok
puts charset.magenta+" "+path.blue+" "+"failed".red unless ok
failed +=1 unless ok
end
puts "-----------------------------------"
puts "checked "+"#{counter} files".magenta+" and "+(failed>0 ? ("#{failed} failed".red) : ("all is ok".yellow))
end
def stub_installer_lprojs
glob = "*.lproj"
english_source = File.join(INSTALLER_RESOURCES_DIR, "English.lproj")
die("need #{english_source}!") unless File.exists?(english_source)
Dir.glob(File.join(PLUGIN_RESOURCES_DIR, glob)) do |dir|
name = File.basename(dir)
next if name == "English.lproj"
full_path = File.join(INSTALLER_RESOURCES_DIR, name)
next if File.exists?(full_path) # already have it
puts "Creating stub " + full_path.blue
sys("cp -r \"#{english_source}\" \"#{full_path}\"")
end
end
################################################################################################
# tasks
desc "switch /Applications/TotalFinder.app into dev mode"
task :dev do
sys("./dev.sh")
end
desc "switch /Applications/TotalFinder.app into non-dev mode"
task :undev do
sys("./undev.sh")
end
desc "compile XIBs to NIBs (you need this only when you modify UI in the InterfaceBuilder)"
task :compile do
sys("./compile.sh")
end
desc "restart Finder.app"
task :restart do
sys("./restart.sh")
end
desc "normalize Finder.app so it contains all our language folders (run with sudo)"
task :normalize do
lprojs = File.join(ROOT_DIR, 'plugin', 'Resources', '*.lproj')
Dir.glob(lprojs) do |folder|
dir = File.join(FINDER_RESOURCES_DIR, File.basename(folder))
if File.exists? dir then
puts dir.blue + " exists".yellow
else
if !sys("mkdir -p \"#{dir}\"") then
die("Unable to create a folder. Hint: you should run this as sudo rake normalize")
end
puts dir.blue + " created".green
end
end
end
desc "cherrypicks strings from sources and applies missing strings to English.lproj"
task :cherrypick do
die "install ack 1.92+ | for example via homebrew:> brew install ack" if `which ack`==""
features = get_list_of_features()
totalfinder_xibs = []
Dir.glob(File.join(PLUGIN_RESOURCES_DIR, "*.xib")) do |file|
name = File.basename(file, ".xib")
totalfinder_xibs << name unless features.include? name
end
totalfinder_filter = "'(#{totalfinder_xibs.join("|")})\\.xib'"
if File.exists? TOTALFINDER_PLUGIN_SOURCES then
puts "Processing TotalFinder...".yellow
update_english_strings("TotalFinder", TOTALFINDER_PLUGIN_SOURCES)
update_english_localizable_strings("TotalFinder", totalfinder_filter) # process just TotalFinder's xibs
end
features.each do |feature|
feature_dir = File.join(TOTALFINDER_FEATURES_SOURCES, feature)
if File.exists? feature_dir then
puts "Processing #{feature}...".yellow
update_english_strings(feature, feature_dir)
feature_filter = "'(#{feature})\\.xib'"
update_english_localizable_strings(feature, feature_filter) # process just feature's xibs
end
end
end
desc "propagates structure of English.lproj to all other language folders while keeping already translated strings"
task :propagate do
propagate_from_english_to_other_lprojs
end
desc "make stub lproj folders for installer, creates all which exist in plugin/Resources"
task :stub do
stub_installer_lprojs
end
desc "exec command in all lproj folders"
task :exec do
exec_cmd_in_lprojs(ENV["cmd"] || "ls")
end
desc "validates all strings files and checks them for syntax errors"
task :validate do
validate_strings_files
end
desc "validates all strings files and checks them for syntax errors"
task :create_localization do
create_localizations_for_project
end
task :default => :restart