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
|
# -- encoding: utf-8 --
require 'mini_exiftool'
require 'open3'
unless ARGV.size == 1
puts "usage: ruby #{__FILE__} URI"
puts " i.e.: ruby #{__FILE__} http://farm6.staticflickr.com/5015/5458914734_8fd3f33278_o.jpg"
exit -1
end
arg = ARGV.shift
####################################
# Helper methods
####################################
def time
a = Time.now
yield
b = Time.now
b - a
end
def print_statistics name, without_fast, fast, fast2
puts '-' * 40
puts name, "\n"
puts format 'without fast: %0.2fs', without_fast
puts format 'fast : %0.2fs', fast
puts format 'fast2 : %0.2fs', fast2
puts
puts format 'speedup fast : %0.2f', without_fast / fast
puts format 'speedup fast2: %0.2f', without_fast / fast2
puts '-' * 40
puts
end
####################################
# Plain Ruby with standard library
####################################
require 'net/http'
uri = URI(arg)
def read_from_http uri, io
Thread.new(uri, io) do |uri, io|
Net::HTTP.start(uri.host, uri.port) do |http|
request = Net::HTTP::Get.new uri
http.request request do |response|
response.read_body do |chunk|
io.write chunk
end
end
end
io.close
end
end
without_fast = time do
output, input = IO.pipe
read_from_http uri, input
MiniExiftool.new output
end
fast = time do
output, input = IO.pipe
read_from_http uri, input
MiniExiftool.new output, fast: true
end
fast2 = time do
output, input = IO.pipe
read_from_http uri, input
MiniExiftool.new output, fast2: true
end
print_statistics 'net/http', without_fast, fast, fast2
####################################
# curl
####################################
without_fast = time do
input, output = Open3.popen3("curl -s #{arg}")
input.close
MiniExiftool.new output
end
fast = time do
input, output = Open3.popen3("curl -s #{arg}")
input.close
MiniExiftool.new output, fast: true
end
fast2 = time do
input, output = Open3.popen3("curl -s #{arg}")
input.close
MiniExiftool.new output, fast2: true
end
print_statistics 'curl', without_fast, fast, fast2
####################################
# wget
####################################
without_fast = time do
input, output = Open3.popen3("wget -q -O - #{arg}")
input.close
MiniExiftool.new output
end
fast = time do
input, output = Open3.popen3("wget -q -O - #{arg}")
input.close
MiniExiftool.new output, fast: true
end
fast2 = time do
input, output = Open3.popen3("wget -q -O - #{arg}")
input.close
MiniExiftool.new output, fast2: true
end
print_statistics 'wget', without_fast, fast, fast2
|