File: xml_escape.rb

package info (click to toggle)
ruby-escape-utils 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 372 kB
  • sloc: ansic: 1,742; ruby: 1,079; sh: 7; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 590 bytes parent folder | download | duplicates (4)
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
# encoding: utf-8

require 'rubygems'
require 'bundler/setup'
require 'benchmark/ips'

require 'fast_xs'
require 'escape_utils'

url = "http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml"
xml = `curl -s #{url}`
xml = xml.force_encoding('binary') if xml.respond_to?(:force_encoding)
puts "Escaping #{xml.bytesize} bytes of xml, from #{url}"

Benchmark.ips do |x|
  x.report "fast_xs" do |times|
    times.times do
      xml.fast_xs
    end
  end

  x.report "EscapeUtils.escape_xml" do |times|
    times.times do
      EscapeUtils.escape_xml(xml)
    end
  end

  x.compare!
end