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
|
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
require File.dirname(__FILE__) + "/../spec/spec_helper.rb"
require "benchmark"
# require "ruby-prof"
obj = Fixtures::COMPACT_PROTOCOL_TEST_STRUCT
HOW_MANY = 1_000
binser = Thrift::Serializer.new
bin_data = binser.serialize(obj)
bindeser = Thrift::Deserializer.new
accel_bin_ser = Thrift::Serializer.new(Thrift::BinaryProtocolAcceleratedFactory.new)
accel_bin_deser = Thrift::Deserializer.new(Thrift::BinaryProtocolAcceleratedFactory.new)
compact_ser = Thrift::Serializer.new(Thrift::CompactProtocolFactory.new)
compact_data = compact_ser.serialize(obj)
compact_deser = Thrift::Deserializer.new(Thrift::CompactProtocolFactory.new)
Benchmark.bm(60) do |reporter|
reporter.report("binary protocol, write") do
HOW_MANY.times do
binser.serialize(obj)
end
end
reporter.report("accelerated binary protocol, write") do
HOW_MANY.times do
accel_bin_ser.serialize(obj)
end
end
reporter.report("compact protocol, write") do
# RubyProf.start
HOW_MANY.times do
compact_ser.serialize(obj)
end
# result = RubyProf.stop
# printer = RubyProf::GraphHtmlPrinter.new(result)
# file = File.open("profile.html", "w+")
# printer.print(file, 0)
# file.close
end
reporter.report("binary protocol, read") do
HOW_MANY.times do
bindeser.deserialize(obj, bin_data)
end
end
reporter.report("accelerated binary protocol, read") do
HOW_MANY.times do
accel_bin_deser.deserialize(obj, bin_data)
end
end
reporter.report("compact protocol, read") do
HOW_MANY.times do
compact_deser.deserialize(obj, compact_data)
end
end
# f = File.new("/tmp/testfile", "w")
# proto = Thrift::BinaryProtocolAccelerated.new(Thrift::IOStreamTransport.new(Thrift::MemoryBufferTransport.new, f))
# reporter.report("accelerated binary protocol, write (to disk)") do
# HOW_MANY.times do
# obj.write(proto)
# end
# f.flush
# end
# f.close
#
# f = File.new("/tmp/testfile", "r")
# proto = Thrift::BinaryProtocolAccelerated.new(Thrift::IOStreamTransport.new(f, Thrift::MemoryBufferTransport.new))
# reporter.report("accelerated binary protocol, read (from disk)") do
# HOW_MANY.times do
# obj.read(proto)
# end
# end
# f.close
#
# f = File.new("/tmp/testfile", "w")
# reporter.report("compact protocol, write (to disk)") do
# proto = Thrift::CompactProtocol.new(Thrift::IOStreamTransport.new(Thrift::MemoryBufferTransport.new, f))
# HOW_MANY.times do
# obj.write(proto)
# end
# f.flush
# end
# f.close
#
# f = File.new("/tmp/testfile", "r")
# reporter.report("compact protocol, read (from disk)") do
# proto = Thrift::CompactProtocol.new(Thrift::IOStreamTransport.new(f, Thrift::MemoryBufferTransport.new))
# HOW_MANY.times do
# obj.read(proto)
# end
# end
# f.close
end
|