1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/csv.rb: Optimize header hashes by freezing string keys.

[ruby-core:58510]



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43825 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
jeg2 2013-11-24 00:44:41 +00:00
parent 34176b023e
commit 895e9b0acd
4 changed files with 32 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Sun Nov 24 09:37:20 2013 Andrew Vit <andrew@avit.ca>
* lib/csv.rb: Optimize header hashes by freezing string keys.
[ruby-core:58510]
Sun Nov 24 09:18:06 2013 Aman Gupta <ruby@tmm1.net> Sun Nov 24 09:18:06 2013 Aman Gupta <ruby@tmm1.net>
* ext/objspace/objspace_dump.c (dump_object): Use PRIuSIZE to print * ext/objspace/objspace_dump.c (dump_object): Use PRIuSIZE to print

View file

@ -235,6 +235,7 @@ class CSV
# #
def initialize(headers, fields, header_row = false) def initialize(headers, fields, header_row = false)
@header_row = header_row @header_row = header_row
headers.each { |h| h.freeze if h.is_a? String }
# handle extra headers or fields # handle extra headers or fields
@row = if headers.size > fields.size @row = if headers.size > fields.size
@ -2208,6 +2209,7 @@ class CSV
# prepare converted and unconverted copies # prepare converted and unconverted copies
row = @headers if row.nil? row = @headers if row.nil?
@headers = convert_fields(@headers, true) @headers = convert_fields(@headers, true)
@headers.each { |h| h.freeze if h.is_a? String }
if @return_headers # return headers if @return_headers # return headers
return self.class::Row.new(@headers, row, true) return self.class::Row.new(@headers, row, true)

View file

@ -198,6 +198,25 @@ class TestCSV::Interface < TestCSV
end end
end end
def test_write_hash_with_string_keys
File.unlink(@path)
lines = [{a: 1, b: 2, c: 3}, {a: 4, b: 5, c: 6}]
CSV.open( @path, "wb", headers: true ) do |csv|
csv << lines.first.keys
lines.each { |line| csv << line }
end
CSV.open( @path, "rb", headers: true ) do |csv|
csv.each do |line|
csv.headers.each_with_index do |header, h|
keys = line.to_hash.keys
assert_instance_of(String, keys[h])
assert_same(header, keys[h])
end
end
end
end
def test_write_hash_with_headers_array def test_write_hash_with_headers_array
File.unlink(@path) File.unlink(@path)

View file

@ -297,7 +297,12 @@ class TestCSV::Row < TestCSV
end end
def test_to_hash def test_to_hash
assert_equal({"A" => nil, "B" => 2, "C" => 3}, @row.to_hash) hash = @row.to_hash
assert_equal({"A" => nil, "B" => 2, "C" => 3}, hash)
hash.keys.each_with_index do |string_key, h|
assert_predicate(string_key, :frozen?)
assert_same(string_key, @row.headers[h])
end
end end
def test_to_csv def test_to_csv