Class: Rarity::Runner
- Inherits:
-
Object
- Object
- Rarity::Runner
- Defined in:
- lib/rarity/runner.rb
Instance Method Summary collapse
-
#initialize(options) ⇒ Runner
constructor
Initialises a new runner.
-
#recursively_optimise(path, depth = 0) ⇒ Object
Recursively optimises a given path.
-
#run ⇒ Object
Runs optimisations recursively.
Constructor Details
Instance Method Details
#recursively_optimise(path, depth = 0) ⇒ Object
Recursively optimises a given path
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 |
# File 'lib/rarity/runner.rb', line 13 def recursively_optimise(path,depth=0) raise ArgumentError, "Argument must be a directory" unless File.directory?(path) puts "Called with #{path}" total_before = 0 total_after = 0 total_before_types = {} total_after_types = {} total_time_types = {} begin # Call ourself on any directories in this path Dir.foreach(path) do |entry| next if entry == "." next if entry == ".." fullpath = File.join(path, entry) if File.directory?(fullpath) res = self.recursively_optimise(fullpath, (depth+1)) total_before += res[:before] total_after += res[:after] #if res[:before_types] and res[:after_types] res[:before_types].each_pair do |k,v| total_before_types[k] = 0 unless total_before_types[k] total_before_types[k] += v end res[:after_types].each_pair do |k,v| total_after_types[k] = 0 unless total_after_types[k] total_after_types[k] += v end res[:time_types].each_pair do |k,v| total_time_types[k] = 0 unless total_time_types[k] total_time_types[k] += v end #end else res = @optimiser.optimise_image(fullpath) total_before += res[:before] total_after += res[:after] total_before_types[res[:type]] = 0 unless total_before_types[res[:type]] total_before_types[res[:type]] += res[:before] total_after_types[res[:type]] = 0 unless total_after_types[res[:type]] total_after_types[res[:type]] += res[:after] total_time_types[res[:type]] = 0 unless total_time_types[res[:type]] total_time_types[res[:type]] += res[:time] end end rescue Exception => e puts "Got exception #{e.inspect} while processing!" puts e.backtrace end if depth == 0 puts "\n\nDone optimising everything!" puts "I started with a total size of #{Rarity::to_human total_before}" puts "I finished with a total size of #{Rarity::to_human total_after}, a reduction of #{Rarity::to_human (total_before-total_after).abs}" puts"\nType breakdowns:" total_before_types.each_pair do |k,v| a = total_after_types[k] t = total_time_types[k] puts "#{k.to_s.upcase}: #{Rarity::to_human v} before, #{Rarity::to_human a} after, reduction of #{Rarity::to_human (v-a).abs} or #{Rarity::to_human (((v-a).abs)/t.abs)} per second saved" end end return {:before => total_before, :after => total_after, :before_types => total_before_types, :after_types => total_after_types, :time_types => total_time_types} end |
#run ⇒ Object
Runs optimisations recursively.
9 10 11 |
# File 'lib/rarity/runner.rb', line 9 def run recursively_optimise(@directory) end |