2009-08-16 02:31:13 -04:00
|
|
|
# encoding: US-ASCII
|
2015-12-01 21:40:02 -05:00
|
|
|
# frozen_string_literal: true
|
2007-12-24 21:46:26 -05:00
|
|
|
# = csv.rb -- CSV Reading and Writing
|
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# Created by James Edward Gray II on 2005-10-31.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# See CSV for documentation.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# == Description
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# Welcome to the new and improved CSV.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# This version of the CSV library began its life as FasterCSV. FasterCSV was
|
|
|
|
# intended as a replacement to Ruby's then standard CSV library. It was
|
|
|
|
# designed to address concerns users of that library had and it had three
|
|
|
|
# primary goals:
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# 1. Be significantly faster than CSV while remaining a pure Ruby library.
|
|
|
|
# 2. Use a smaller and easier to maintain code base. (FasterCSV eventually
|
|
|
|
# grew larger, was also but considerably richer in features. The parsing
|
|
|
|
# core remains quite small.)
|
|
|
|
# 3. Improve on the CSV interface.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# Obviously, the last one is subjective. I did try to defer to the original
|
|
|
|
# interface whenever I didn't have a compelling reason to change it though, so
|
|
|
|
# hopefully this won't be too radically different.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# We must have met our goals because FasterCSV was renamed to CSV and replaced
|
2011-05-26 09:32:40 -04:00
|
|
|
# the original library as of Ruby 1.9. If you are migrating code from 1.8 or
|
|
|
|
# earlier, you may have to change your code to comply with the new interface.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# == What's Different From the Old CSV?
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# I'm sure I'll miss something, but I'll try to mention most of the major
|
|
|
|
# differences I am aware of, to help others quickly get up to speed:
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# === CSV Parsing
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# * This parser is m17n aware. See CSV for full details.
|
2007-12-24 21:46:26 -05:00
|
|
|
# * This library has a stricter parser and will throw MalformedCSVErrors on
|
|
|
|
# problematic data.
|
|
|
|
# * This library has a less liberal idea of a line ending than CSV. What you
|
|
|
|
# set as the <tt>:row_sep</tt> is law. It can auto-detect your line endings
|
|
|
|
# though.
|
|
|
|
# * The old library returned empty lines as <tt>[nil]</tt>. This library calls
|
|
|
|
# them <tt>[]</tt>.
|
|
|
|
# * This library has a much faster parser.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# === Interface
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# * CSV now uses Hash-style parameters to set options.
|
|
|
|
# * CSV no longer has generate_row() or parse_row().
|
|
|
|
# * The old CSV's Reader and Writer classes have been dropped.
|
|
|
|
# * CSV::open() is now more like Ruby's open().
|
|
|
|
# * CSV objects now support most standard IO methods.
|
|
|
|
# * CSV now has a new() method used to wrap objects like String and IO for
|
|
|
|
# reading and writing.
|
|
|
|
# * CSV::generate() is different from the old method.
|
|
|
|
# * CSV no longer supports partial reads. It works line-by-line.
|
|
|
|
# * CSV no longer allows the instance methods to override the separators for
|
|
|
|
# performance reasons. They must be set in the constructor.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# If you use this library and find yourself missing any functionality I have
|
|
|
|
# trimmed, please {let me know}[mailto:james@grayproductions.net].
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# == Documentation
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# See CSV for documentation.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# == What is CSV, really?
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# CSV maintains a pretty strict definition of CSV taken directly from
|
|
|
|
# {the RFC}[http://www.ietf.org/rfc/rfc4180.txt]. I relax the rules in only one
|
|
|
|
# place and that is to make using this library easier. CSV will parse all valid
|
|
|
|
# CSV.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# What you don't want to do is feed CSV invalid data. Because of the way the
|
|
|
|
# CSV format works, it's common for a parser to need to read until the end of
|
|
|
|
# the file to be sure a field is invalid. This eats a lot of time and memory.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# Luckily, when working with invalid CSV, Ruby's built-in methods will almost
|
|
|
|
# always be superior in every way. For example, parsing non-quoted fields is as
|
|
|
|
# easy as:
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# data.split(",")
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# == Questions and/or Comments
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# Feel free to email {James Edward Gray II}[mailto:james@grayproductions.net]
|
|
|
|
# with any questions.
|
|
|
|
|
|
|
|
require "forwardable"
|
|
|
|
require "English"
|
|
|
|
require "date"
|
|
|
|
require "stringio"
|
2018-05-09 00:39:16 -04:00
|
|
|
|
2018-12-23 02:00:35 -05:00
|
|
|
require_relative "csv/fields_converter"
|
|
|
|
require_relative "csv/match_p"
|
|
|
|
require_relative "csv/parser"
|
|
|
|
require_relative "csv/row"
|
|
|
|
require_relative "csv/table"
|
|
|
|
require_relative "csv/writer"
|
2018-05-09 00:39:16 -04:00
|
|
|
|
2018-12-23 02:00:35 -05:00
|
|
|
using CSV::MatchP if CSV.const_defined?(:MatchP)
|
2007-12-24 21:46:26 -05:00
|
|
|
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# This class provides a complete interface to CSV files and data. It offers
|
|
|
|
# tools to enable you to read and write to and from Strings or IO objects, as
|
|
|
|
# needed.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-12-23 02:00:35 -05:00
|
|
|
# The most generic interface of the library is:
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# csv = CSV.new(string_or_io, **options)
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# # Reading: IO object should be open for read
|
|
|
|
# csv.read # => array of rows
|
|
|
|
# # or
|
|
|
|
# csv.each do |row|
|
|
|
|
# # ...
|
|
|
|
# end
|
|
|
|
# # or
|
|
|
|
# row = csv.shift
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# # Writing: IO object should be open for write
|
|
|
|
# csv << row
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# There are several specialized class methods for one-statement reading or writing,
|
|
|
|
# described in the Specialized Methods section.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-09-05 09:33:21 -04:00
|
|
|
# If a String is passed into ::new, it is internally wrapped into a StringIO object.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# +options+ can be used for specifying the particular CSV flavor (column
|
|
|
|
# separators, row separators, value quoting and so on), and for data conversion,
|
|
|
|
# see Data Conversion section for the description of the latter.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# == Specialized Methods
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# === Reading
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# # From a file: all at once
|
|
|
|
# arr_of_rows = CSV.read("path/to/file.csv", **options)
|
|
|
|
# # iterator-style:
|
|
|
|
# CSV.foreach("path/to/file.csv", **options) do |row|
|
|
|
|
# # ...
|
|
|
|
# end
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# # From a string
|
|
|
|
# arr_of_rows = CSV.parse("CSV,data,String", **options)
|
|
|
|
# # or
|
|
|
|
# CSV.parse("CSV,data,String", **options) do |row|
|
|
|
|
# # ...
|
|
|
|
# end
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# === Writing
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# # To a file
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# CSV.open("path/to/file.csv", "wb") do |csv|
|
2007-12-24 21:46:26 -05:00
|
|
|
# csv << ["row", "of", "CSV", "data"]
|
|
|
|
# csv << ["another", "row"]
|
|
|
|
# # ...
|
|
|
|
# end
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# # To a String
|
2007-12-24 21:46:26 -05:00
|
|
|
# csv_string = CSV.generate do |csv|
|
|
|
|
# csv << ["row", "of", "CSV", "data"]
|
|
|
|
# csv << ["another", "row"]
|
|
|
|
# # ...
|
|
|
|
# end
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# === Shortcuts
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# # Core extensions for converting one line
|
2007-12-24 21:46:26 -05:00
|
|
|
# csv_string = ["CSV", "data"].to_csv # to CSV
|
|
|
|
# csv_array = "CSV,String".parse_csv # from CSV
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# # CSV() method
|
2007-12-24 21:46:26 -05:00
|
|
|
# CSV { |csv_out| csv_out << %w{my data here} } # to $stdout
|
|
|
|
# CSV(csv = "") { |csv_str| csv_str << %w{my data here} } # to a String
|
|
|
|
# CSV($stderr) { |csv_err| csv_err << %w{my data here} } # to $stderr
|
2010-07-01 10:11:02 -04:00
|
|
|
# CSV($stdin) { |csv_in| csv_in.each { |row| p row } } # from $stdin
|
2011-04-26 11:57:04 -04:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# == Data Conversion
|
|
|
|
#
|
|
|
|
# === CSV with headers
|
|
|
|
#
|
|
|
|
# CSV allows to specify column names of CSV file, whether they are in data, or
|
|
|
|
# provided separately. If headers specified, reading methods return an instance
|
|
|
|
# of CSV::Table, consisting of CSV::Row.
|
|
|
|
#
|
|
|
|
# # Headers are part of data
|
|
|
|
# data = CSV.parse(<<~ROWS, headers: true)
|
|
|
|
# Name,Department,Salary
|
2018-12-23 02:00:35 -05:00
|
|
|
# Bob,Engineering,1000
|
2018-05-09 00:39:16 -04:00
|
|
|
# Jane,Sales,2000
|
|
|
|
# John,Management,5000
|
|
|
|
# ROWS
|
2011-04-26 11:57:04 -04:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# data.class #=> CSV::Table
|
2018-12-23 02:00:35 -05:00
|
|
|
# data.first #=> #<CSV::Row "Name":"Bob" "Department":"Engineering" "Salary":"1000">
|
|
|
|
# data.first.to_h #=> {"Name"=>"Bob", "Department"=>"Engineering", "Salary"=>"1000"}
|
2011-04-26 11:57:04 -04:00
|
|
|
#
|
2018-05-09 00:39:16 -04:00
|
|
|
# # Headers provided by developer
|
2019-08-13 02:27:46 -04:00
|
|
|
# data = CSV.parse('Bob,Engineering,1000', headers: %i[name department salary])
|
2018-12-23 02:00:35 -05:00
|
|
|
# data.first #=> #<CSV::Row name:"Bob" department:"Engineering" salary:"1000">
|
2018-05-09 00:39:16 -04:00
|
|
|
#
|
|
|
|
# === Typed data reading
|
|
|
|
#
|
|
|
|
# CSV allows to provide a set of data _converters_ e.g. transformations to try on input
|
|
|
|
# data. Converter could be a symbol from CSV::Converters constant's keys, or lambda.
|
|
|
|
#
|
|
|
|
# # Without any converters:
|
|
|
|
# CSV.parse('Bob,2018-03-01,100')
|
|
|
|
# #=> [["Bob", "2018-03-01", "100"]]
|
|
|
|
#
|
|
|
|
# # With built-in converters:
|
|
|
|
# CSV.parse('Bob,2018-03-01,100', converters: %i[numeric date])
|
|
|
|
# #=> [["Bob", #<Date: 2018-03-01>, 100]]
|
|
|
|
#
|
|
|
|
# # With custom converters:
|
|
|
|
# CSV.parse('Bob,2018-03-01,100', converters: [->(v) { Time.parse(v) rescue v }])
|
|
|
|
# #=> [["Bob", 2018-03-01 00:00:00 +0200, "100"]]
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# == CSV and Character Encodings (M17n or Multilingualization)
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# This new CSV parser is m17n savvy. The parser works in the Encoding of the IO
|
|
|
|
# or String object being read from or written to. Your data is never transcoded
|
|
|
|
# (unless you ask Ruby to transcode it for you) and will literally be parsed in
|
|
|
|
# the Encoding it is in. Thus CSV will return Arrays or Rows of Strings in the
|
|
|
|
# Encoding of your data. This is accomplished by transcoding the parser itself
|
|
|
|
# into your Encoding.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# Some transcoding must take place, of course, to accomplish this multiencoding
|
|
|
|
# support. For example, <tt>:col_sep</tt>, <tt>:row_sep</tt>, and
|
|
|
|
# <tt>:quote_char</tt> must be transcoded to match your data. Hopefully this
|
|
|
|
# makes the entire process feel transparent, since CSV's defaults should just
|
2015-07-07 18:43:11 -04:00
|
|
|
# magically work for your data. However, you can set these values manually in
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# the target Encoding to avoid the translation.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# It's also important to note that while all of CSV's core parser is now
|
|
|
|
# Encoding agnostic, some features are not. For example, the built-in
|
|
|
|
# converters will try to transcode data to UTF-8 before making conversions.
|
|
|
|
# Again, you can provide custom converters that are aware of your Encodings to
|
|
|
|
# avoid this translation. It's just too hard for me to support native
|
|
|
|
# conversions in all of Ruby's Encodings.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# Anyway, the practical side of this is simple: make sure IO and String objects
|
|
|
|
# passed into CSV have the proper Encoding set and everything should just work.
|
|
|
|
# CSV methods that allow you to open IO objects (CSV::foreach(), CSV::open(),
|
|
|
|
# CSV::read(), and CSV::readlines()) do allow you to specify the Encoding.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# One minor exception comes when generating CSV into a String with an Encoding
|
|
|
|
# that is not ASCII compatible. There's no existing data for CSV to use to
|
|
|
|
# prepare itself and thus you will probably need to manually specify the desired
|
|
|
|
# Encoding for most of those cases. It will try to guess using the fields in a
|
|
|
|
# row of output though, when using CSV::generate_line() or Array#to_csv().
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# I try to point out any other Encoding issues in the documentation of methods
|
|
|
|
# as they come up.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# This has been tested to the best of my ability with all non-"dummy" Encodings
|
|
|
|
# Ruby ships with. However, it is brave new code and may have some bugs.
|
|
|
|
# Please feel free to {report}[mailto:james@grayproductions.net] any issues you
|
|
|
|
# find with it.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
class CSV
|
|
|
|
|
2018-05-09 00:39:16 -04:00
|
|
|
# The error thrown when the parser encounters illegal CSV formatting.
|
|
|
|
class MalformedCSVError < RuntimeError
|
|
|
|
attr_reader :line_number
|
|
|
|
alias_method :lineno, :line_number
|
|
|
|
def initialize(message, line_number)
|
|
|
|
@line_number = line_number
|
|
|
|
super("#{message} in line #{line_number}.")
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
end
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
|
|
|
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# A FieldInfo Struct contains details about a field's position in the data
|
|
|
|
# source it was read from. CSV will pass this Struct to some blocks that make
|
|
|
|
# decisions based on field structure. See CSV.convert_fields() for an
|
|
|
|
# example.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# <b><tt>index</tt></b>:: The zero-based index of the field in its row.
|
|
|
|
# <b><tt>line</tt></b>:: The line of the data source this row is from.
|
|
|
|
# <b><tt>header</tt></b>:: The header for the column, when available.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
FieldInfo = Struct.new(:index, :line, :header)
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2007-12-24 21:46:26 -05:00
|
|
|
# A Regexp used to find and convert some common Date formats.
|
|
|
|
DateMatcher = / \A(?: (\w+,?\s+)?\w+\s+\d{1,2},?\s+\d{2,4} |
|
|
|
|
\d{4}-\d{2}-\d{2} )\z /x
|
|
|
|
# A Regexp used to find and convert some common DateTime formats.
|
|
|
|
DateTimeMatcher =
|
|
|
|
/ \A(?: (\w+,?\s+)?\w+\s+\d{1,2}\s+\d{1,2}:\d{1,2}:\d{1,2},?\s+\d{2,4} |
|
2018-05-09 00:39:16 -04:00
|
|
|
\d{4}-\d{2}-\d{2}\s\d{2}:\d{2}:\d{2} |
|
|
|
|
# ISO-8601
|
|
|
|
\d{4}-\d{2}-\d{2}
|
|
|
|
(?:T\d{2}:\d{2}(?::\d{2}(?:\.\d+)?(?:[+-]\d{2}(?::\d{2})|Z)?)?)?
|
|
|
|
)\z /x
|
2009-03-05 22:56:38 -05:00
|
|
|
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# The encoding used by all converters.
|
|
|
|
ConverterEncoding = Encoding.find("UTF-8")
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# This Hash holds the built-in converters of CSV that can be accessed by name.
|
|
|
|
# You can select Converters with CSV.convert() or through the +options+ Hash
|
|
|
|
# passed to CSV::new().
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# <b><tt>:integer</tt></b>:: Converts any field Integer() accepts.
|
|
|
|
# <b><tt>:float</tt></b>:: Converts any field Float() accepts.
|
2009-03-05 22:56:38 -05:00
|
|
|
# <b><tt>:numeric</tt></b>:: A combination of <tt>:integer</tt>
|
2007-12-24 21:46:26 -05:00
|
|
|
# and <tt>:float</tt>.
|
|
|
|
# <b><tt>:date</tt></b>:: Converts any field Date::parse() accepts.
|
|
|
|
# <b><tt>:date_time</tt></b>:: Converts any field DateTime::parse() accepts.
|
2009-03-05 22:56:38 -05:00
|
|
|
# <b><tt>:all</tt></b>:: All built-in converters. A combination of
|
2007-12-24 21:46:26 -05:00
|
|
|
# <tt>:date_time</tt> and <tt>:numeric</tt>.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# All built-in converters transcode field data to UTF-8 before attempting a
|
|
|
|
# conversion. If your data cannot be transcoded to UTF-8 the conversion will
|
|
|
|
# fail and the field will remain unchanged.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2008-06-04 05:37:38 -04:00
|
|
|
# This Hash is intentionally left unfrozen and users should feel free to add
|
2007-12-24 21:46:26 -05:00
|
|
|
# values to it that can be accessed by all CSV objects.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# To add a combo field, the value should be an Array of names. Combo fields
|
|
|
|
# can be nested with other combo fields.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2015-12-17 22:55:29 -05:00
|
|
|
Converters = {
|
|
|
|
integer: lambda { |f|
|
|
|
|
Integer(f.encode(ConverterEncoding)) rescue f
|
|
|
|
},
|
|
|
|
float: lambda { |f|
|
|
|
|
Float(f.encode(ConverterEncoding)) rescue f
|
|
|
|
},
|
|
|
|
numeric: [:integer, :float],
|
|
|
|
date: lambda { |f|
|
|
|
|
begin
|
|
|
|
e = f.encode(ConverterEncoding)
|
Improve CSV performance
If it will not use special variables (like $1, $&, $`...),
it can improve the performance by using Regexp#match? or String#match? instead of Regexp#=~ or String#=~.
This patch is same idea as https://github.com/ruby/ruby/pull/1836
[Fix GH-1842]
## Environment
* OS : Ubuntu 17.10
* Compiler : gcc version 7.2.0
* CPU : Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz
* Memory : 16 GB
## TL;DR
Methods | Before | After | Speed up
----------- | ------ | ------ | --------
CSV.foreach | 44.825 | 48.201 | 7.5%
CSV#shift | 45.200 | 49.584 | 9.7%
CSV.read | 42.968 | 46.853 | 9.0%
CSV.table | 10.933 | 11.277 | 3.1%
## Before
```
Calculating -------------------------------------
CSV.foreach 44.825 (± 0.0%) i/s - 228.000 in 5.086576s
CSV#shift 45.200 (± 0.0%) i/s - 228.000 in 5.044297s
CSV.read 42.968 (± 0.0%) i/s - 216.000 in 5.027504s
CSV.table 10.933 (± 0.0%) i/s - 55.000 in 5.031098s
```
## After
```
Calculating -------------------------------------
CSV.foreach 48.201 (± 0.0%) i/s - 244.000 in 5.062256s
CSV#shift 49.584 (± 0.0%) i/s - 248.000 in 5.001652s
CSV.read 46.853 (± 0.0%) i/s - 236.000 in 5.037044s
CSV.table 11.277 (± 0.0%) i/s - 57.000 in 5.054694s
```
## Benchmark code
```ruby
require 'csv'
require 'benchmark/ips'
CSV.open("/tmp/file.csv", "w") do |csv|
csv << ["player", "gameA", "gameB"]
1000.times do
csv << ['"Alice"', "84.0", "79.5"]
csv << ['"Bob"', "20.0", "56.5"]
end
end
Benchmark.ips do |x|
x.report "CSV.foreach" do
CSV.foreach("/tmp/file.csv") do |row|
end
end
x.report "CSV#shift" do
CSV.open("/tmp/file.csv") do |csv|
while line = csv.shift
end
end
end
x.report "CSV.read" do
CSV.read("/tmp/file.csv")
end
x.report "CSV.table" do
CSV.table("/tmp/file.csv")
end
end
```
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62806 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2018-03-18 06:28:58 -04:00
|
|
|
e.match?(DateMatcher) ? Date.parse(e) : f
|
2015-12-17 22:55:29 -05:00
|
|
|
rescue # encoding conversion or date parse errors
|
|
|
|
f
|
|
|
|
end
|
|
|
|
},
|
|
|
|
date_time: lambda { |f|
|
|
|
|
begin
|
|
|
|
e = f.encode(ConverterEncoding)
|
Improve CSV performance
If it will not use special variables (like $1, $&, $`...),
it can improve the performance by using Regexp#match? or String#match? instead of Regexp#=~ or String#=~.
This patch is same idea as https://github.com/ruby/ruby/pull/1836
[Fix GH-1842]
## Environment
* OS : Ubuntu 17.10
* Compiler : gcc version 7.2.0
* CPU : Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz
* Memory : 16 GB
## TL;DR
Methods | Before | After | Speed up
----------- | ------ | ------ | --------
CSV.foreach | 44.825 | 48.201 | 7.5%
CSV#shift | 45.200 | 49.584 | 9.7%
CSV.read | 42.968 | 46.853 | 9.0%
CSV.table | 10.933 | 11.277 | 3.1%
## Before
```
Calculating -------------------------------------
CSV.foreach 44.825 (± 0.0%) i/s - 228.000 in 5.086576s
CSV#shift 45.200 (± 0.0%) i/s - 228.000 in 5.044297s
CSV.read 42.968 (± 0.0%) i/s - 216.000 in 5.027504s
CSV.table 10.933 (± 0.0%) i/s - 55.000 in 5.031098s
```
## After
```
Calculating -------------------------------------
CSV.foreach 48.201 (± 0.0%) i/s - 244.000 in 5.062256s
CSV#shift 49.584 (± 0.0%) i/s - 248.000 in 5.001652s
CSV.read 46.853 (± 0.0%) i/s - 236.000 in 5.037044s
CSV.table 11.277 (± 0.0%) i/s - 57.000 in 5.054694s
```
## Benchmark code
```ruby
require 'csv'
require 'benchmark/ips'
CSV.open("/tmp/file.csv", "w") do |csv|
csv << ["player", "gameA", "gameB"]
1000.times do
csv << ['"Alice"', "84.0", "79.5"]
csv << ['"Bob"', "20.0", "56.5"]
end
end
Benchmark.ips do |x|
x.report "CSV.foreach" do
CSV.foreach("/tmp/file.csv") do |row|
end
end
x.report "CSV#shift" do
CSV.open("/tmp/file.csv") do |csv|
while line = csv.shift
end
end
end
x.report "CSV.read" do
CSV.read("/tmp/file.csv")
end
x.report "CSV.table" do
CSV.table("/tmp/file.csv")
end
end
```
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62806 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2018-03-18 06:28:58 -04:00
|
|
|
e.match?(DateTimeMatcher) ? DateTime.parse(e) : f
|
2015-12-17 22:55:29 -05:00
|
|
|
rescue # encoding conversion or date parse errors
|
|
|
|
f
|
|
|
|
end
|
|
|
|
},
|
|
|
|
all: [:date_time, :numeric],
|
|
|
|
}
|
2007-12-24 21:46:26 -05:00
|
|
|
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# This Hash holds the built-in header converters of CSV that can be accessed
|
|
|
|
# by name. You can select HeaderConverters with CSV.header_convert() or
|
|
|
|
# through the +options+ Hash passed to CSV::new().
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# <b><tt>:downcase</tt></b>:: Calls downcase() on the header String.
|
2016-01-22 21:30:07 -05:00
|
|
|
# <b><tt>:symbol</tt></b>:: Leading/trailing spaces are dropped, string is
|
|
|
|
# downcased, remaining spaces are replaced with
|
|
|
|
# underscores, non-word characters are dropped,
|
|
|
|
# and finally to_sym() is called.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# All built-in header converters transcode header data to UTF-8 before
|
|
|
|
# attempting a conversion. If your data cannot be transcoded to UTF-8 the
|
|
|
|
# conversion will fail and the header will remain unchanged.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2013-12-02 00:36:00 -05:00
|
|
|
# This Hash is intentionally left unfrozen and users should feel free to add
|
2007-12-24 21:46:26 -05:00
|
|
|
# values to it that can be accessed by all CSV objects.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# To add a combo field, the value should be an Array of names. Combo fields
|
|
|
|
# can be nested with other combo fields.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
HeaderConverters = {
|
2008-10-10 11:09:34 -04:00
|
|
|
downcase: lambda { |h| h.encode(ConverterEncoding).downcase },
|
|
|
|
symbol: lambda { |h|
|
2017-05-20 21:01:10 -04:00
|
|
|
h.encode(ConverterEncoding).downcase.gsub(/[^\s\w]+/, "").strip.
|
2017-05-16 05:32:32 -04:00
|
|
|
gsub(/\s+/, "_").to_sym
|
2007-12-24 21:46:26 -05:00
|
|
|
}
|
|
|
|
}
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# The options used when no overrides are given by calling code. They are:
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# <b><tt>:col_sep</tt></b>:: <tt>","</tt>
|
|
|
|
# <b><tt>:row_sep</tt></b>:: <tt>:auto</tt>
|
|
|
|
# <b><tt>:quote_char</tt></b>:: <tt>'"'</tt>
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# <b><tt>:field_size_limit</tt></b>:: +nil+
|
2007-12-24 21:46:26 -05:00
|
|
|
# <b><tt>:converters</tt></b>:: +nil+
|
|
|
|
# <b><tt>:unconverted_fields</tt></b>:: +nil+
|
|
|
|
# <b><tt>:headers</tt></b>:: +false+
|
|
|
|
# <b><tt>:return_headers</tt></b>:: +false+
|
|
|
|
# <b><tt>:header_converters</tt></b>:: +nil+
|
|
|
|
# <b><tt>:skip_blanks</tt></b>:: +false+
|
|
|
|
# <b><tt>:force_quotes</tt></b>:: +false+
|
2012-08-20 16:52:36 -04:00
|
|
|
# <b><tt>:skip_lines</tt></b>:: +nil+
|
2015-12-31 21:44:48 -05:00
|
|
|
# <b><tt>:liberal_parsing</tt></b>:: +false+
|
2019-01-25 01:49:59 -05:00
|
|
|
# <b><tt>:quote_empty</tt></b>:: +true+
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2015-12-17 22:55:29 -05:00
|
|
|
DEFAULT_OPTIONS = {
|
|
|
|
col_sep: ",",
|
|
|
|
row_sep: :auto,
|
|
|
|
quote_char: '"',
|
|
|
|
field_size_limit: nil,
|
|
|
|
converters: nil,
|
|
|
|
unconverted_fields: nil,
|
|
|
|
headers: false,
|
|
|
|
return_headers: false,
|
|
|
|
header_converters: nil,
|
|
|
|
skip_blanks: false,
|
|
|
|
force_quotes: false,
|
|
|
|
skip_lines: nil,
|
2015-12-31 21:44:48 -05:00
|
|
|
liberal_parsing: false,
|
2019-01-25 01:49:59 -05:00
|
|
|
quote_empty: true,
|
2015-12-17 22:55:29 -05:00
|
|
|
}.freeze
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# This method will return a CSV instance, just like CSV::new(), but the
|
|
|
|
# instance will be cached and returned for all future calls to this method for
|
|
|
|
# the same +data+ object (tested by Object#object_id()) with the same
|
|
|
|
# +options+.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# If a block is given, the instance is passed to the block and the return
|
|
|
|
# value becomes the return value of the block.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2017-07-27 05:53:58 -04:00
|
|
|
def self.instance(data = $stdout, **options)
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# create a _signature_ for this method call, data object and options
|
|
|
|
sig = [data.object_id] +
|
|
|
|
options.values_at(*DEFAULT_OPTIONS.keys.sort_by { |sym| sym.to_s })
|
2009-03-05 22:56:38 -05:00
|
|
|
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# fetch or create the instance for this signature
|
|
|
|
@@instances ||= Hash.new
|
2019-04-07 19:44:49 -04:00
|
|
|
instance = (@@instances[sig] ||= new(data, **options))
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
|
|
|
|
if block_given?
|
|
|
|
yield instance # run block, if given, returning result
|
|
|
|
else
|
|
|
|
instance # or return the instance
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# :call-seq:
|
2017-07-27 05:53:58 -04:00
|
|
|
# filter( **options ) { |row| ... }
|
|
|
|
# filter( input, **options ) { |row| ... }
|
|
|
|
# filter( input, output, **options ) { |row| ... }
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# This method is a convenience for building Unix-like filters for CSV data.
|
2009-03-05 22:56:38 -05:00
|
|
|
# Each row is yielded to the provided block which can alter it as needed.
|
2007-12-24 21:46:26 -05:00
|
|
|
# After the block returns, the row is appended to +output+ altered or not.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# The +input+ and +output+ arguments can be anything CSV::new() accepts
|
2009-03-05 22:56:38 -05:00
|
|
|
# (generally String or IO objects). If not given, they default to
|
2007-12-24 21:46:26 -05:00
|
|
|
# <tt>ARGF</tt> and <tt>$stdout</tt>.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# The +options+ parameter is also filtered down to CSV::new() after some
|
2009-03-05 22:56:38 -05:00
|
|
|
# clever key parsing. Any key beginning with <tt>:in_</tt> or
|
2007-12-24 21:46:26 -05:00
|
|
|
# <tt>:input_</tt> will have that leading identifier stripped and will only
|
|
|
|
# be used in the +options+ Hash for the +input+ object. Keys starting with
|
2009-03-05 22:56:38 -05:00
|
|
|
# <tt>:out_</tt> or <tt>:output_</tt> affect only +output+. All other keys
|
2007-12-24 21:46:26 -05:00
|
|
|
# are assigned to both objects.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# The <tt>:output_row_sep</tt> +option+ defaults to
|
|
|
|
# <tt>$INPUT_RECORD_SEPARATOR</tt> (<tt>$/</tt>).
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2017-07-28 03:46:20 -04:00
|
|
|
def self.filter(input=nil, output=nil, **options)
|
2007-12-24 21:46:26 -05:00
|
|
|
# parse options for input, output, or both
|
2008-10-10 11:09:34 -04:00
|
|
|
in_options, out_options = Hash.new, {row_sep: $INPUT_RECORD_SEPARATOR}
|
2017-07-27 05:53:58 -04:00
|
|
|
options.each do |key, value|
|
|
|
|
case key.to_s
|
|
|
|
when /\Ain(?:put)?_(.+)\Z/
|
|
|
|
in_options[$1.to_sym] = value
|
|
|
|
when /\Aout(?:put)?_(.+)\Z/
|
|
|
|
out_options[$1.to_sym] = value
|
|
|
|
else
|
|
|
|
in_options[key] = value
|
|
|
|
out_options[key] = value
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
# build input and output wrappers
|
2019-04-07 19:44:49 -04:00
|
|
|
input = new(input || ARGF, **in_options)
|
|
|
|
output = new(output || $stdout, **out_options)
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2007-12-24 21:46:26 -05:00
|
|
|
# read, yield, write
|
|
|
|
input.each do |row|
|
|
|
|
yield row
|
|
|
|
output << row
|
|
|
|
end
|
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# This method is intended as the primary interface for reading CSV files. You
|
|
|
|
# pass a +path+ and any +options+ you wish to set for the read. Each row of
|
|
|
|
# file will be passed to the provided +block+ in turn.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# The +options+ parameter can be anything CSV::new() understands. This method
|
|
|
|
# also understands an additional <tt>:encoding</tt> parameter that you can use
|
|
|
|
# to specify the Encoding of the data in the file to be read. You must provide
|
|
|
|
# this unless your data is in Encoding::default_external(). CSV will use this
|
2010-10-07 11:25:23 -04:00
|
|
|
# to determine how to parse the data. You may provide a second Encoding to
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# have the data transcoded as it is read. For example,
|
2008-10-10 11:09:34 -04:00
|
|
|
# <tt>encoding: "UTF-32BE:UTF-8"</tt> would read UTF-32BE data from the file
|
|
|
|
# but transcode it to UTF-8 before CSV parses it.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2019-04-14 17:01:51 -04:00
|
|
|
def self.foreach(path, mode="r", **options, &block)
|
2019-04-07 19:44:49 -04:00
|
|
|
return to_enum(__method__, path, mode, **options) unless block_given?
|
|
|
|
open(path, mode, **options) do |csv|
|
2007-12-24 21:46:26 -05:00
|
|
|
csv.each(&block)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# :call-seq:
|
2017-07-27 05:53:58 -04:00
|
|
|
# generate( str, **options ) { |csv| ... }
|
|
|
|
# generate( **options ) { |csv| ... }
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
|
|
|
# This method wraps a String you provide, or an empty default String, in a
|
2007-12-24 21:46:26 -05:00
|
|
|
# CSV object which is passed to the provided block. You can use the block to
|
|
|
|
# append CSV rows to the String and when the block exits, the final String
|
|
|
|
# will be returned.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2013-12-02 00:36:00 -05:00
|
|
|
# Note that a passed String *is* modified by this method. Call dup() before
|
2007-12-24 21:46:26 -05:00
|
|
|
# passing if you need a new String.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2010-03-19 23:30:59 -04:00
|
|
|
# The +options+ parameter can be anything CSV::new() understands. This method
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# understands an additional <tt>:encoding</tt> parameter when not passed a
|
|
|
|
# String to set the base Encoding for the output. CSV needs this hint if you
|
|
|
|
# plan to output non-ASCII compatible data.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2017-07-27 05:53:58 -04:00
|
|
|
def self.generate(str=nil, **options)
|
2007-12-24 21:46:26 -05:00
|
|
|
# add a default empty String, if none was given
|
2017-07-27 05:53:58 -04:00
|
|
|
if str
|
2018-05-09 00:39:16 -04:00
|
|
|
str = StringIO.new(str)
|
|
|
|
str.seek(0, IO::SEEK_END)
|
2007-12-24 21:46:26 -05:00
|
|
|
else
|
2017-07-27 05:53:58 -04:00
|
|
|
encoding = options[:encoding]
|
2019-01-25 01:49:59 -05:00
|
|
|
str = +""
|
2014-06-09 21:57:10 -04:00
|
|
|
str.force_encoding(encoding) if encoding
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
2019-04-07 19:44:49 -04:00
|
|
|
csv = new(str, **options) # wrap
|
2007-12-24 21:46:26 -05:00
|
|
|
yield csv # yield for appending
|
|
|
|
csv.string # return final String
|
|
|
|
end
|
|
|
|
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
|
|
|
# This method is a shortcut for converting a single row (Array) into a CSV
|
2007-12-24 21:46:26 -05:00
|
|
|
# String.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2010-03-19 23:30:59 -04:00
|
|
|
# The +options+ parameter can be anything CSV::new() understands. This method
|
2009-03-05 22:56:38 -05:00
|
|
|
# understands an additional <tt>:encoding</tt> parameter to set the base
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# Encoding for the output. This method will try to guess your Encoding from
|
|
|
|
# the first non-+nil+ field in +row+, if possible, but you may need to use
|
|
|
|
# this parameter as a backup plan.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# The <tt>:row_sep</tt> +option+ defaults to <tt>$INPUT_RECORD_SEPARATOR</tt>
|
|
|
|
# (<tt>$/</tt>) when calling this method.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2017-08-28 03:54:00 -04:00
|
|
|
def self.generate_line(row, **options)
|
2017-07-28 03:46:20 -04:00
|
|
|
options = {row_sep: $INPUT_RECORD_SEPARATOR}.merge(options)
|
2019-01-25 01:49:59 -05:00
|
|
|
str = +""
|
2017-08-28 03:54:00 -04:00
|
|
|
if options[:encoding]
|
|
|
|
str.force_encoding(options[:encoding])
|
2019-01-25 01:49:59 -05:00
|
|
|
elsif field = row.find {|f| f.is_a?(String)}
|
|
|
|
str.force_encoding(field.encoding)
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
end
|
2019-04-07 19:44:49 -04:00
|
|
|
(new(str, **options) << row).string
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# :call-seq:
|
2017-07-27 05:53:58 -04:00
|
|
|
# open( filename, mode = "rb", **options ) { |faster_csv| ... }
|
|
|
|
# open( filename, **options ) { |faster_csv| ... }
|
|
|
|
# open( filename, mode = "rb", **options )
|
|
|
|
# open( filename, **options )
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# This method opens an IO object, and wraps that with CSV. This is intended
|
|
|
|
# as the primary interface for writing a CSV file.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# You must pass a +filename+ and may optionally add a +mode+ for Ruby's
|
|
|
|
# open(). You may also pass an optional Hash containing any +options+
|
|
|
|
# CSV::new() understands as the final argument.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# This method works like Ruby's open() call, in that it will pass a CSV object
|
2008-06-04 05:37:38 -04:00
|
|
|
# to a provided block and close it when the block terminates, or it will
|
2007-12-24 21:46:26 -05:00
|
|
|
# return the CSV object when no block is provided. (*Note*: This is different
|
|
|
|
# from the Ruby 1.8 CSV library which passed rows to the block. Use
|
|
|
|
# CSV::foreach() for that behavior.)
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# You must provide a +mode+ with an embedded Encoding designator unless your
|
|
|
|
# data is in Encoding::default_external(). CSV will check the Encoding of the
|
2010-10-07 11:25:23 -04:00
|
|
|
# underlying IO object (set by the +mode+ you pass) to determine how to parse
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# the data. You may provide a second Encoding to have the data transcoded as
|
|
|
|
# it is read just as you can with a normal call to IO::open(). For example,
|
|
|
|
# <tt>"rb:UTF-32BE:UTF-8"</tt> would read UTF-32BE data from the file but
|
|
|
|
# transcode it to UTF-8 before CSV parses it.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# An opened CSV object will delegate to many IO methods for convenience. You
|
2007-12-24 21:46:26 -05:00
|
|
|
# may call:
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# * binmode()
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# * binmode?()
|
2007-12-24 21:46:26 -05:00
|
|
|
# * close()
|
|
|
|
# * close_read()
|
|
|
|
# * close_write()
|
|
|
|
# * closed?()
|
|
|
|
# * eof()
|
|
|
|
# * eof?()
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# * external_encoding()
|
2007-12-24 21:46:26 -05:00
|
|
|
# * fcntl()
|
|
|
|
# * fileno()
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# * flock()
|
2007-12-24 21:46:26 -05:00
|
|
|
# * flush()
|
|
|
|
# * fsync()
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# * internal_encoding()
|
2007-12-24 21:46:26 -05:00
|
|
|
# * ioctl()
|
|
|
|
# * isatty()
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# * path()
|
2007-12-24 21:46:26 -05:00
|
|
|
# * pid()
|
|
|
|
# * pos()
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# * pos=()
|
2007-12-24 21:46:26 -05:00
|
|
|
# * reopen()
|
|
|
|
# * seek()
|
|
|
|
# * stat()
|
|
|
|
# * sync()
|
|
|
|
# * sync=()
|
|
|
|
# * tell()
|
|
|
|
# * to_i()
|
|
|
|
# * to_io()
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# * truncate()
|
2007-12-24 21:46:26 -05:00
|
|
|
# * tty?()
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2017-08-28 03:54:00 -04:00
|
|
|
def self.open(filename, mode="r", **options)
|
2011-04-27 17:07:09 -04:00
|
|
|
# wrap a File opened with the remaining +args+ with no newline
|
|
|
|
# decorator
|
2017-07-28 03:46:20 -04:00
|
|
|
file_opts = {universal_newline: false}.merge(options)
|
|
|
|
|
2011-04-27 17:07:09 -04:00
|
|
|
begin
|
Make rb_scan_args handle keywords more similar to Ruby methods (#2460)
Cfuncs that use rb_scan_args with the : entry suffer similar keyword
argument separation issues that Ruby methods suffer if the cfuncs
accept optional or variable arguments.
This makes the following changes to : handling.
* Treats as **kw, prompting keyword argument separation warnings
if called with a positional hash.
* Do not look for an option hash if empty keywords are provided.
For backwards compatibility, treat an empty keyword splat as a empty
mandatory positional hash argument, but emit a a warning, as this
behavior will be removed in Ruby 3. The argument number check
needs to be moved lower so it can correctly handle an empty
positional argument being added.
* If the last argument is nil and it is necessary to treat it as an option
hash in order to make sure all arguments are processed, continue to
treat the last argument as the option hash. Emit a warning in this case,
as this behavior will be removed in Ruby 3.
* If splitting the keyword hash into two hashes, issue a warning, as we
will not be splitting hashes in Ruby 3.
* If the keyword argument is required to fill a mandatory positional
argument, continue to do so, but emit a warning as this behavior will
be going away in Ruby 3.
* If keyword arguments are provided and the last argument is not a hash,
that indicates something wrong. This can happen if a cfunc is calling
rb_scan_args multiple times, and providing arguments that were not
passed to it from Ruby. Callers need to switch to the new
rb_scan_args_kw function, which allows passing of whether keywords
were provided.
This commit fixes all warnings caused by the changes above.
It switches some function calls to *_kw versions with appropriate
kw_splat flags. If delegating arguments, RB_PASS_CALLED_KEYWORDS
is used. If creating new arguments, RB_PASS_KEYWORDS is used if
the last argument is a hash to be treated as keywords.
In open_key_args in io.c, use rb_scan_args_kw.
In this case, the arguments provided come from another C
function, not Ruby. The last argument may or may not be a hash,
so we can't set keyword argument mode. However, if it is a
hash, we don't want to warn when treating it as keywords.
In Ruby files, make sure to appropriately use keyword splats
or literal keywords when calling Cfuncs that now issue keyword
argument separation warnings through rb_scan_args. Also, make
sure not to pass nil in place of an option hash.
Work around Kernel#warn warnings due to problems in the Rubygems
override of the method. There is an open pull request to fix
these issues in Rubygems, but part of the Rubygems tests for
their override fail on ruby-head due to rb_scan_args not
recognizing empty keyword splats, which this commit fixes.
Implementation wise, adding rb_scan_args_kw is kind of a pain,
because rb_scan_args takes a variable number of arguments.
In order to not duplicate all the code, the function internals need
to be split into two functions taking a va_list, and to avoid passing
in a ton of arguments, a single struct argument is used to handle
the variables previously local to the function.
2019-09-25 14:18:49 -04:00
|
|
|
f = File.open(filename, mode, **file_opts)
|
2011-04-27 17:07:09 -04:00
|
|
|
rescue ArgumentError => e
|
Improve CSV performance
If it will not use special variables (like $1, $&, $`...),
it can improve the performance by using Regexp#match? or String#match? instead of Regexp#=~ or String#=~.
This patch is same idea as https://github.com/ruby/ruby/pull/1836
[Fix GH-1842]
## Environment
* OS : Ubuntu 17.10
* Compiler : gcc version 7.2.0
* CPU : Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz
* Memory : 16 GB
## TL;DR
Methods | Before | After | Speed up
----------- | ------ | ------ | --------
CSV.foreach | 44.825 | 48.201 | 7.5%
CSV#shift | 45.200 | 49.584 | 9.7%
CSV.read | 42.968 | 46.853 | 9.0%
CSV.table | 10.933 | 11.277 | 3.1%
## Before
```
Calculating -------------------------------------
CSV.foreach 44.825 (± 0.0%) i/s - 228.000 in 5.086576s
CSV#shift 45.200 (± 0.0%) i/s - 228.000 in 5.044297s
CSV.read 42.968 (± 0.0%) i/s - 216.000 in 5.027504s
CSV.table 10.933 (± 0.0%) i/s - 55.000 in 5.031098s
```
## After
```
Calculating -------------------------------------
CSV.foreach 48.201 (± 0.0%) i/s - 244.000 in 5.062256s
CSV#shift 49.584 (± 0.0%) i/s - 248.000 in 5.001652s
CSV.read 46.853 (± 0.0%) i/s - 236.000 in 5.037044s
CSV.table 11.277 (± 0.0%) i/s - 57.000 in 5.054694s
```
## Benchmark code
```ruby
require 'csv'
require 'benchmark/ips'
CSV.open("/tmp/file.csv", "w") do |csv|
csv << ["player", "gameA", "gameB"]
1000.times do
csv << ['"Alice"', "84.0", "79.5"]
csv << ['"Bob"', "20.0", "56.5"]
end
end
Benchmark.ips do |x|
x.report "CSV.foreach" do
CSV.foreach("/tmp/file.csv") do |row|
end
end
x.report "CSV#shift" do
CSV.open("/tmp/file.csv") do |csv|
while line = csv.shift
end
end
end
x.report "CSV.read" do
CSV.read("/tmp/file.csv")
end
x.report "CSV.table" do
CSV.table("/tmp/file.csv")
end
end
```
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62806 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2018-03-18 06:28:58 -04:00
|
|
|
raise unless /needs binmode/.match?(e.message) and mode == "r"
|
2017-08-28 03:54:00 -04:00
|
|
|
mode = "rb"
|
2017-07-28 03:46:20 -04:00
|
|
|
file_opts = {encoding: Encoding.default_external}.merge(file_opts)
|
2011-04-27 17:07:09 -04:00
|
|
|
retry
|
|
|
|
end
|
2014-05-29 06:44:59 -04:00
|
|
|
begin
|
2019-04-07 19:44:49 -04:00
|
|
|
csv = new(f, **options)
|
2014-05-29 06:44:59 -04:00
|
|
|
rescue Exception
|
|
|
|
f.close
|
|
|
|
raise
|
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2007-12-24 21:46:26 -05:00
|
|
|
# handle blocks like Ruby's open(), not like the CSV library
|
|
|
|
if block_given?
|
|
|
|
begin
|
|
|
|
yield csv
|
|
|
|
ensure
|
2017-08-29 06:22:47 -04:00
|
|
|
csv.close
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
|
|
|
else
|
|
|
|
csv
|
|
|
|
end
|
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# :call-seq:
|
2017-07-27 05:53:58 -04:00
|
|
|
# parse( str, **options ) { |row| ... }
|
|
|
|
# parse( str, **options )
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# This method can be used to easily parse CSV out of a String. You may either
|
|
|
|
# provide a +block+ which will be called with each row of the String in turn,
|
|
|
|
# or just use the returned Array of Arrays (when no +block+ is given).
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2017-07-27 05:53:58 -04:00
|
|
|
# You pass your +str+ to read from, and an optional +options+ containing
|
2007-12-24 21:46:26 -05:00
|
|
|
# anything CSV::new() understands.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2019-04-07 19:44:49 -04:00
|
|
|
def self.parse(*args, **options, &block)
|
|
|
|
csv = new(*args, **options)
|
2018-05-09 00:39:16 -04:00
|
|
|
|
|
|
|
return csv.each(&block) if block_given?
|
|
|
|
|
|
|
|
# slurp contents, if no block is given
|
|
|
|
begin
|
|
|
|
csv.read
|
|
|
|
ensure
|
|
|
|
csv.close
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
|
|
|
# This method is a shortcut for converting a single line of a CSV String into
|
2013-11-07 12:10:34 -05:00
|
|
|
# an Array. Note that if +line+ contains multiple rows, anything beyond the
|
|
|
|
# first row is ignored.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2010-03-19 23:30:59 -04:00
|
|
|
# The +options+ parameter can be anything CSV::new() understands.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2017-07-27 05:53:58 -04:00
|
|
|
def self.parse_line(line, **options)
|
2019-04-07 19:44:49 -04:00
|
|
|
new(line, **options).shift
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
|
|
|
# Use to slurp a CSV file into an Array of Arrays. Pass the +path+ to the
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# file and any +options+ CSV::new() understands. This method also understands
|
|
|
|
# an additional <tt>:encoding</tt> parameter that you can use to specify the
|
|
|
|
# Encoding of the data in the file to be read. You must provide this unless
|
2010-10-07 11:25:23 -04:00
|
|
|
# your data is in Encoding::default_external(). CSV will use this to determine
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# how to parse the data. You may provide a second Encoding to have the data
|
|
|
|
# transcoded as it is read. For example,
|
2008-10-10 11:09:34 -04:00
|
|
|
# <tt>encoding: "UTF-32BE:UTF-8"</tt> would read UTF-32BE data from the file
|
|
|
|
# but transcode it to UTF-8 before CSV parses it.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2019-04-07 19:44:49 -04:00
|
|
|
def self.read(*args, **options)
|
|
|
|
open(*args, **options) { |csv| csv.read }
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2007-12-24 21:46:26 -05:00
|
|
|
# Alias for CSV::read().
|
2019-04-07 19:44:49 -04:00
|
|
|
def self.readlines(*args, **options)
|
|
|
|
read(*args, **options)
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# A shortcut for:
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2008-10-10 11:09:34 -04:00
|
|
|
# CSV.read( path, { headers: true,
|
|
|
|
# converters: :numeric,
|
|
|
|
# header_converters: :symbol }.merge(options) )
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2017-07-27 05:53:58 -04:00
|
|
|
def self.table(path, **options)
|
2019-04-07 19:44:49 -04:00
|
|
|
read( path, **{ headers: true,
|
|
|
|
converters: :numeric,
|
|
|
|
header_converters: :symbol }.merge(options) )
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# This constructor will wrap either a String or IO object passed in +data+ for
|
|
|
|
# reading and/or writing. In addition to the CSV instance methods, several IO
|
|
|
|
# methods are delegated. (See CSV::open() for a complete list.) If you pass
|
|
|
|
# a String for +data+, you can later retrieve it (after writing to it, for
|
|
|
|
# example) with CSV.string().
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2015-12-19 00:23:50 -05:00
|
|
|
# Note that a wrapped String will be positioned at the beginning (for
|
2007-12-24 21:46:26 -05:00
|
|
|
# reading). If you want it at the end (for writing), use CSV::generate().
|
|
|
|
# If you want any other positioning, pass a preset StringIO object instead.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
|
|
|
# You may set any reading and/or writing preferences in the +options+ Hash.
|
2007-12-24 21:46:26 -05:00
|
|
|
# Available options are:
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# <b><tt>:col_sep</tt></b>:: The String placed between each field.
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# This String will be transcoded into
|
|
|
|
# the data's Encoding before parsing.
|
2007-12-24 21:46:26 -05:00
|
|
|
# <b><tt>:row_sep</tt></b>:: The String appended to the end of each
|
|
|
|
# row. This can be set to the special
|
|
|
|
# <tt>:auto</tt> setting, which requests
|
|
|
|
# that CSV automatically discover this
|
|
|
|
# from the data. Auto-discovery reads
|
|
|
|
# ahead in the data looking for the next
|
|
|
|
# <tt>"\r\n"</tt>, <tt>"\n"</tt>, or
|
|
|
|
# <tt>"\r"</tt> sequence. A sequence
|
|
|
|
# will be selected even if it occurs in
|
|
|
|
# a quoted field, assuming that you
|
|
|
|
# would have the same line endings
|
|
|
|
# there. If none of those sequences is
|
|
|
|
# found, +data+ is <tt>ARGF</tt>,
|
|
|
|
# <tt>STDIN</tt>, <tt>STDOUT</tt>, or
|
|
|
|
# <tt>STDERR</tt>, or the stream is only
|
|
|
|
# available for output, the default
|
|
|
|
# <tt>$INPUT_RECORD_SEPARATOR</tt>
|
|
|
|
# (<tt>$/</tt>) is used. Obviously,
|
|
|
|
# discovery takes a little time. Set
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# manually if speed is important. Also
|
|
|
|
# note that IO objects should be opened
|
|
|
|
# in binary mode on Windows if this
|
|
|
|
# feature will be used as the
|
|
|
|
# line-ending translation can cause
|
|
|
|
# problems with resetting the document
|
|
|
|
# position to where it was before the
|
|
|
|
# read ahead. This String will be
|
|
|
|
# transcoded into the data's Encoding
|
|
|
|
# before parsing.
|
2007-12-24 21:46:26 -05:00
|
|
|
# <b><tt>:quote_char</tt></b>:: The character used to quote fields.
|
|
|
|
# This has to be a single character
|
|
|
|
# String. This is useful for
|
|
|
|
# application that incorrectly use
|
|
|
|
# <tt>'</tt> as the quote character
|
|
|
|
# instead of the correct <tt>"</tt>.
|
|
|
|
# CSV will always consider a double
|
2014-04-03 01:59:14 -04:00
|
|
|
# sequence of this character to be an
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# escaped quote. This String will be
|
|
|
|
# transcoded into the data's Encoding
|
|
|
|
# before parsing.
|
|
|
|
# <b><tt>:field_size_limit</tt></b>:: This is a maximum size CSV will read
|
|
|
|
# ahead looking for the closing quote
|
|
|
|
# for a field. (In truth, it reads to
|
|
|
|
# the first line ending beyond this
|
|
|
|
# size.) If a quote cannot be found
|
|
|
|
# within the limit CSV will raise a
|
|
|
|
# MalformedCSVError, assuming the data
|
|
|
|
# is faulty. You can use this limit to
|
|
|
|
# prevent what are effectively DoS
|
|
|
|
# attacks on the parser. However, this
|
|
|
|
# limit can cause a legitimate parse to
|
|
|
|
# fail and thus is set to +nil+, or off,
|
|
|
|
# by default.
|
2007-12-24 21:46:26 -05:00
|
|
|
# <b><tt>:converters</tt></b>:: An Array of names from the Converters
|
|
|
|
# Hash and/or lambdas that handle custom
|
|
|
|
# conversion. A single converter
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# doesn't have to be in an Array. All
|
|
|
|
# built-in converters try to transcode
|
|
|
|
# fields to UTF-8 before converting.
|
|
|
|
# The conversion will fail if the data
|
|
|
|
# cannot be transcoded, leaving the
|
|
|
|
# field unchanged.
|
2007-12-24 21:46:26 -05:00
|
|
|
# <b><tt>:unconverted_fields</tt></b>:: If set to +true+, an
|
|
|
|
# unconverted_fields() method will be
|
|
|
|
# added to all returned rows (Array or
|
|
|
|
# CSV::Row) that will return the fields
|
2008-06-04 05:37:38 -04:00
|
|
|
# as they were before conversion. Note
|
2007-12-24 21:46:26 -05:00
|
|
|
# that <tt>:headers</tt> supplied by
|
|
|
|
# Array or String were not fields of the
|
|
|
|
# document and thus will have an empty
|
|
|
|
# Array attached.
|
2009-03-05 22:56:38 -05:00
|
|
|
# <b><tt>:headers</tt></b>:: If set to <tt>:first_row</tt> or
|
2007-12-24 21:46:26 -05:00
|
|
|
# +true+, the initial row of the CSV
|
|
|
|
# file will be treated as a row of
|
|
|
|
# headers. If set to an Array, the
|
|
|
|
# contents will be used as the headers.
|
|
|
|
# If set to a String, the String is run
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# through a call of CSV::parse_line()
|
|
|
|
# with the same <tt>:col_sep</tt>,
|
|
|
|
# <tt>:row_sep</tt>, and
|
|
|
|
# <tt>:quote_char</tt> as this instance
|
|
|
|
# to produce an Array of headers. This
|
|
|
|
# setting causes CSV#shift() to return
|
2007-12-24 21:46:26 -05:00
|
|
|
# rows as CSV::Row objects instead of
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# Arrays and CSV#read() to return
|
2007-12-24 21:46:26 -05:00
|
|
|
# CSV::Table objects instead of an Array
|
|
|
|
# of Arrays.
|
|
|
|
# <b><tt>:return_headers</tt></b>:: When +false+, header rows are silently
|
|
|
|
# swallowed. If set to +true+, header
|
|
|
|
# rows are returned in a CSV::Row object
|
|
|
|
# with identical headers and
|
|
|
|
# fields (save that the fields do not go
|
|
|
|
# through the converters).
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# <b><tt>:write_headers</tt></b>:: When +true+ and <tt>:headers</tt> is
|
|
|
|
# set, a header row will be added to the
|
|
|
|
# output.
|
2007-12-24 21:46:26 -05:00
|
|
|
# <b><tt>:header_converters</tt></b>:: Identical in functionality to
|
|
|
|
# <tt>:converters</tt> save that the
|
|
|
|
# conversions are only made to header
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# rows. All built-in converters try to
|
|
|
|
# transcode headers to UTF-8 before
|
|
|
|
# converting. The conversion will fail
|
|
|
|
# if the data cannot be transcoded,
|
|
|
|
# leaving the header unchanged.
|
2007-12-24 21:46:26 -05:00
|
|
|
# <b><tt>:skip_blanks</tt></b>:: When set to a +true+ value, CSV will
|
2014-11-03 22:21:50 -05:00
|
|
|
# skip over any empty rows. Note that
|
|
|
|
# this setting will not skip rows that
|
|
|
|
# contain column separators, even if
|
|
|
|
# the rows contain no actual data. If
|
|
|
|
# you want to skip rows that contain
|
|
|
|
# separators but no content, consider
|
2014-11-03 22:21:53 -05:00
|
|
|
# using <tt>:skip_lines</tt>, or
|
2014-11-03 22:21:50 -05:00
|
|
|
# inspecting fields.compact.empty? on
|
|
|
|
# each row.
|
2007-12-24 21:46:26 -05:00
|
|
|
# <b><tt>:force_quotes</tt></b>:: When set to a +true+ value, CSV will
|
|
|
|
# quote all CSV fields it creates.
|
2012-08-20 16:52:36 -04:00
|
|
|
# <b><tt>:skip_lines</tt></b>:: When set to an object responding to
|
|
|
|
# <tt>match</tt>, every line matching
|
|
|
|
# it is considered a comment and ignored
|
2013-11-23 18:12:11 -05:00
|
|
|
# during parsing. When set to a String,
|
|
|
|
# it is first converted to a Regexp.
|
|
|
|
# When set to +nil+ no line is considered
|
|
|
|
# a comment. If the passed object does
|
|
|
|
# not respond to <tt>match</tt>,
|
|
|
|
# <tt>ArgumentError</tt> is thrown.
|
2015-12-31 21:44:48 -05:00
|
|
|
# <b><tt>:liberal_parsing</tt></b>:: When set to a +true+ value, CSV will
|
|
|
|
# attempt to parse input not conformant
|
|
|
|
# with RFC 4180, such as double quotes
|
|
|
|
# in unquoted fields.
|
2018-09-05 09:33:21 -04:00
|
|
|
# <b><tt>:nil_value</tt></b>:: When set an object, any values of an
|
|
|
|
# empty field are replaced by the set
|
|
|
|
# object, not nil.
|
|
|
|
# <b><tt>:empty_value</tt></b>:: When set an object, any values of a
|
|
|
|
# blank string field is replaced by
|
|
|
|
# the set object.
|
2019-04-20 03:37:52 -04:00
|
|
|
# <b><tt>:quote_empty</tt></b>:: When set to a +true+ value, CSV will
|
|
|
|
# quote empty values with double quotes.
|
|
|
|
# When +false+, CSV will emit an
|
|
|
|
# empty string for an empty field value.
|
2019-04-19 11:42:40 -04:00
|
|
|
# <b><tt>:write_converters</tt></b>:: Converts values on each line with the
|
|
|
|
# specified <tt>Proc</tt> object(s),
|
|
|
|
# which receive a <tt>String</tt> value
|
|
|
|
# and return a <tt>String</tt> or +nil+
|
|
|
|
# value.
|
|
|
|
# When an array is specified, each
|
|
|
|
# converter will be applied in order.
|
|
|
|
# <b><tt>:write_nil_value</tt></b>:: When a <tt>String</tt> value, +nil+
|
|
|
|
# value(s) on each line will be replaced
|
|
|
|
# with the specified value.
|
|
|
|
# <b><tt>:write_empty_value</tt></b>:: When a <tt>String</tt> or +nil+ value,
|
|
|
|
# empty value(s) on each line will be
|
|
|
|
# replaced with the specified value.
|
2019-04-19 07:59:38 -04:00
|
|
|
# <b><tt>:strip</tt></b>:: When set to a +true+ value, CSV will
|
|
|
|
# strip "\t\r\n\f\v" around the values.
|
|
|
|
# If you specify a string instead of
|
|
|
|
# +true+, CSV will strip string. The
|
|
|
|
# length of string must be 1.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# See CSV::DEFAULT_OPTIONS for the default settings.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2011-05-11 06:22:16 -04:00
|
|
|
# Options cannot be overridden in the instance methods for performance reasons,
|
2007-12-24 21:46:26 -05:00
|
|
|
# so be sure to set what you want here.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-12-23 02:00:35 -05:00
|
|
|
def initialize(data,
|
|
|
|
col_sep: ",",
|
|
|
|
row_sep: :auto,
|
|
|
|
quote_char: '"',
|
|
|
|
field_size_limit: nil,
|
|
|
|
converters: nil,
|
|
|
|
unconverted_fields: nil,
|
|
|
|
headers: false,
|
|
|
|
return_headers: false,
|
|
|
|
write_headers: nil,
|
|
|
|
header_converters: nil,
|
|
|
|
skip_blanks: false,
|
|
|
|
force_quotes: false,
|
|
|
|
skip_lines: nil,
|
|
|
|
liberal_parsing: false,
|
|
|
|
internal_encoding: nil,
|
|
|
|
external_encoding: nil,
|
|
|
|
encoding: nil,
|
2018-05-09 00:39:16 -04:00
|
|
|
nil_value: nil,
|
2019-01-25 01:49:59 -05:00
|
|
|
empty_value: "",
|
2019-04-14 17:01:51 -04:00
|
|
|
quote_empty: true,
|
|
|
|
write_converters: nil,
|
|
|
|
write_nil_value: nil,
|
|
|
|
write_empty_value: "",
|
|
|
|
strip: false)
|
2017-07-28 03:46:20 -04:00
|
|
|
raise ArgumentError.new("Cannot parse nil as CSV") if data.nil?
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2007-12-24 21:46:26 -05:00
|
|
|
# create the IO object we will read from
|
2017-07-28 03:46:20 -04:00
|
|
|
@io = data.is_a?(String) ? StringIO.new(data) : data
|
2018-05-09 00:39:16 -04:00
|
|
|
@encoding = determine_encoding(encoding, internal_encoding)
|
2018-12-23 02:00:35 -05:00
|
|
|
|
|
|
|
@base_fields_converter_options = {
|
|
|
|
nil_value: nil_value,
|
|
|
|
empty_value: empty_value,
|
|
|
|
}
|
2019-04-14 17:01:51 -04:00
|
|
|
@write_fields_converter_options = {
|
|
|
|
nil_value: write_nil_value,
|
|
|
|
empty_value: write_empty_value,
|
|
|
|
}
|
2018-12-23 02:00:35 -05:00
|
|
|
@initial_converters = converters
|
|
|
|
@initial_header_converters = header_converters
|
2019-04-14 17:01:51 -04:00
|
|
|
@initial_write_converters = write_converters
|
2018-12-23 02:00:35 -05:00
|
|
|
|
|
|
|
@parser_options = {
|
|
|
|
column_separator: col_sep,
|
|
|
|
row_separator: row_sep,
|
|
|
|
quote_character: quote_char,
|
|
|
|
field_size_limit: field_size_limit,
|
|
|
|
unconverted_fields: unconverted_fields,
|
|
|
|
headers: headers,
|
|
|
|
return_headers: return_headers,
|
|
|
|
skip_blanks: skip_blanks,
|
|
|
|
skip_lines: skip_lines,
|
|
|
|
liberal_parsing: liberal_parsing,
|
|
|
|
encoding: @encoding,
|
|
|
|
nil_value: nil_value,
|
|
|
|
empty_value: empty_value,
|
2019-04-14 17:01:51 -04:00
|
|
|
strip: strip,
|
2018-12-23 02:00:35 -05:00
|
|
|
}
|
|
|
|
@parser = nil
|
2019-04-17 09:02:40 -04:00
|
|
|
@parser_enumerator = nil
|
|
|
|
@eof_error = nil
|
2018-12-23 02:00:35 -05:00
|
|
|
|
|
|
|
@writer_options = {
|
|
|
|
encoding: @encoding,
|
|
|
|
force_encoding: (not encoding.nil?),
|
|
|
|
force_quotes: force_quotes,
|
|
|
|
headers: headers,
|
|
|
|
write_headers: write_headers,
|
|
|
|
column_separator: col_sep,
|
|
|
|
row_separator: row_sep,
|
|
|
|
quote_character: quote_char,
|
2019-01-25 01:49:59 -05:00
|
|
|
quote_empty: quote_empty,
|
2018-12-23 02:00:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@writer = nil
|
|
|
|
writer if @writer_options[:write_headers]
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# The encoded <tt>:col_sep</tt> used in parsing and writing. See CSV::new
|
|
|
|
# for details.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-12-23 02:00:35 -05:00
|
|
|
def col_sep
|
|
|
|
parser.column_separator
|
|
|
|
end
|
|
|
|
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# The encoded <tt>:row_sep</tt> used in parsing and writing. See CSV::new
|
|
|
|
# for details.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-12-23 02:00:35 -05:00
|
|
|
def row_sep
|
|
|
|
parser.row_separator
|
|
|
|
end
|
|
|
|
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# The encoded <tt>:quote_char</tt> used in parsing and writing. See CSV::new
|
|
|
|
# for details.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-12-23 02:00:35 -05:00
|
|
|
def quote_char
|
|
|
|
parser.quote_character
|
|
|
|
end
|
|
|
|
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# The limit for field size, if any. See CSV::new for details.
|
2018-12-23 02:00:35 -05:00
|
|
|
def field_size_limit
|
|
|
|
parser.field_size_limit
|
|
|
|
end
|
2012-08-20 16:52:36 -04:00
|
|
|
|
|
|
|
# The regex marking a line as a comment. See CSV::new for details
|
2018-12-23 02:00:35 -05:00
|
|
|
def skip_lines
|
|
|
|
parser.skip_lines
|
|
|
|
end
|
2012-08-20 16:52:36 -04:00
|
|
|
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# Returns the current list of converters in effect. See CSV::new for details.
|
|
|
|
# Built-in converters will be returned by name, while others will be returned
|
|
|
|
# as is.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
def converters
|
2019-04-14 17:01:51 -04:00
|
|
|
parser_fields_converter.map do |converter|
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
name = Converters.rassoc(converter)
|
|
|
|
name ? name.first : converter
|
|
|
|
end
|
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# Returns +true+ if unconverted_fields() to parsed results. See CSV::new
|
|
|
|
# for details.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-12-23 02:00:35 -05:00
|
|
|
def unconverted_fields?
|
|
|
|
parser.unconverted_fields?
|
|
|
|
end
|
|
|
|
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# Returns +nil+ if headers will not be used, +true+ if they will but have not
|
|
|
|
# yet been read, or the actual headers after they have been read. See
|
|
|
|
# CSV::new for details.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
def headers
|
2018-12-23 02:00:35 -05:00
|
|
|
if @writer
|
|
|
|
@writer.headers
|
|
|
|
else
|
|
|
|
parsed_headers = parser.headers
|
|
|
|
return parsed_headers if parsed_headers
|
|
|
|
raw_headers = @parser_options[:headers]
|
|
|
|
raw_headers = nil if raw_headers == false
|
|
|
|
raw_headers
|
|
|
|
end
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# Returns +true+ if headers will be returned as a row of results.
|
|
|
|
# See CSV::new for details.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-12-23 02:00:35 -05:00
|
|
|
def return_headers?
|
|
|
|
parser.return_headers?
|
|
|
|
end
|
|
|
|
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# Returns +true+ if headers are written in output. See CSV::new for details.
|
2018-12-23 02:00:35 -05:00
|
|
|
def write_headers?
|
|
|
|
@writer_options[:write_headers]
|
|
|
|
end
|
|
|
|
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# Returns the current list of converters in effect for headers. See CSV::new
|
|
|
|
# for details. Built-in converters will be returned by name, while others
|
|
|
|
# will be returned as is.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
def header_converters
|
2018-12-23 02:00:35 -05:00
|
|
|
header_fields_converter.map do |converter|
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
name = HeaderConverters.rassoc(converter)
|
|
|
|
name ? name.first : converter
|
|
|
|
end
|
|
|
|
end
|
2018-12-23 02:00:35 -05:00
|
|
|
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# Returns +true+ blank lines are skipped by the parser. See CSV::new
|
|
|
|
# for details.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-12-23 02:00:35 -05:00
|
|
|
def skip_blanks?
|
|
|
|
parser.skip_blanks?
|
|
|
|
end
|
|
|
|
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# Returns +true+ if all output fields are quoted. See CSV::new for details.
|
2018-12-23 02:00:35 -05:00
|
|
|
def force_quotes?
|
|
|
|
@writer_options[:force_quotes]
|
|
|
|
end
|
|
|
|
|
2015-12-31 21:44:48 -05:00
|
|
|
# Returns +true+ if illegal input is handled. See CSV::new for details.
|
2018-12-23 02:00:35 -05:00
|
|
|
def liberal_parsing?
|
|
|
|
parser.liberal_parsing?
|
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# The Encoding CSV is parsing or writing in. This will be the Encoding you
|
|
|
|
# receive parsed data in and/or the Encoding data will be written in.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
attr_reader :encoding
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
2018-12-23 02:00:35 -05:00
|
|
|
# The line number of the last row read from this file. Fields with nested
|
2007-12-24 21:46:26 -05:00
|
|
|
# line-end characters will not affect this count.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-12-23 02:00:35 -05:00
|
|
|
def lineno
|
|
|
|
if @writer
|
|
|
|
@writer.lineno
|
|
|
|
else
|
|
|
|
parser.lineno
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# The last row read from this file.
|
|
|
|
#
|
|
|
|
def line
|
|
|
|
parser.line
|
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2007-12-24 21:46:26 -05:00
|
|
|
### IO and StringIO Delegation ###
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2007-12-24 21:46:26 -05:00
|
|
|
extend Forwardable
|
2019-04-14 17:01:51 -04:00
|
|
|
def_delegators :@io, :binmode, :close, :close_read, :close_write,
|
|
|
|
:closed?, :external_encoding, :fcntl,
|
|
|
|
:fileno, :flush, :fsync, :internal_encoding,
|
|
|
|
:isatty, :pid, :pos, :pos=, :reopen,
|
|
|
|
:seek, :string, :sync, :sync=, :tell,
|
|
|
|
:truncate, :tty?
|
|
|
|
|
|
|
|
def binmode?
|
|
|
|
if @io.respond_to?(:binmode?)
|
|
|
|
@io.binmode?
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def flock(*args)
|
|
|
|
raise NotImplementedError unless @io.respond_to?(:flock)
|
|
|
|
@io.flock(*args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def ioctl(*args)
|
|
|
|
raise NotImplementedError unless @io.respond_to?(:ioctl)
|
|
|
|
@io.ioctl(*args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def path
|
|
|
|
@io.path if @io.respond_to?(:path)
|
|
|
|
end
|
|
|
|
|
|
|
|
def stat(*args)
|
|
|
|
raise NotImplementedError unless @io.respond_to?(:stat)
|
|
|
|
@io.stat(*args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_i
|
|
|
|
raise NotImplementedError unless @io.respond_to?(:to_i)
|
|
|
|
@io.to_i
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_io
|
|
|
|
@io.respond_to?(:to_io) ? @io.to_io : @io
|
|
|
|
end
|
|
|
|
|
|
|
|
def eof?
|
2019-04-17 09:02:40 -04:00
|
|
|
return false if @eof_error
|
2019-04-14 17:01:51 -04:00
|
|
|
begin
|
|
|
|
parser_enumerator.peek
|
|
|
|
false
|
2019-04-17 09:02:40 -04:00
|
|
|
rescue MalformedCSVError => error
|
|
|
|
@eof_error = error
|
|
|
|
false
|
2019-04-14 17:01:51 -04:00
|
|
|
rescue StopIteration
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
alias_method :eof, :eof?
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2007-12-24 21:46:26 -05:00
|
|
|
# Rewinds the underlying IO object and resets CSV's lineno() counter.
|
|
|
|
def rewind
|
2018-12-23 02:00:35 -05:00
|
|
|
@parser = nil
|
|
|
|
@parser_enumerator = nil
|
2019-04-17 09:02:40 -04:00
|
|
|
@eof_error = nil
|
2018-12-23 02:00:35 -05:00
|
|
|
@writer.rewind if @writer
|
2007-12-24 21:46:26 -05:00
|
|
|
@io.rewind
|
|
|
|
end
|
|
|
|
|
|
|
|
### End Delegation ###
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# The primary write method for wrapped Strings and IOs, +row+ (an Array or
|
|
|
|
# CSV::Row) is converted to CSV and appended to the data source. When a
|
|
|
|
# CSV::Row is passed, only the row's fields() are appended to the output.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# The data source must be open for writing.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
def <<(row)
|
2018-12-23 02:00:35 -05:00
|
|
|
writer << row
|
|
|
|
self
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
|
|
|
alias_method :add_row, :<<
|
|
|
|
alias_method :puts, :<<
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# :call-seq:
|
|
|
|
# convert( name )
|
|
|
|
# convert { |field| ... }
|
|
|
|
# convert { |field, field_info| ... }
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# You can use this method to install a CSV::Converters built-in, or provide a
|
|
|
|
# block that handles a custom conversion.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# If you provide a block that takes one argument, it will be passed the field
|
|
|
|
# and is expected to return the converted value or the field itself. If your
|
2009-03-05 22:56:38 -05:00
|
|
|
# block takes two arguments, it will also be passed a CSV::FieldInfo Struct,
|
|
|
|
# containing details about the field. Again, the block should return a
|
2007-12-24 21:46:26 -05:00
|
|
|
# converted field or the field itself.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
def convert(name = nil, &converter)
|
2019-04-14 17:01:51 -04:00
|
|
|
parser_fields_converter.add_converter(name, &converter)
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
|
|
|
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# :call-seq:
|
|
|
|
# header_convert( name )
|
|
|
|
# header_convert { |field| ... }
|
|
|
|
# header_convert { |field, field_info| ... }
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# Identical to CSV#convert(), but for header rows.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# Note that this method must be called before header rows are read to have any
|
|
|
|
# effect.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
def header_convert(name = nil, &converter)
|
2018-12-23 02:00:35 -05:00
|
|
|
header_fields_converter.add_converter(name, &converter)
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2007-12-24 21:46:26 -05:00
|
|
|
include Enumerable
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# Yields each row of the data source in turn.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# Support for Enumerable.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# The data source must be open for reading.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2018-12-23 02:00:35 -05:00
|
|
|
def each(&block)
|
2019-04-14 17:01:51 -04:00
|
|
|
parser_enumerator.each(&block)
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# Slurps the remaining rows and returns an Array of Arrays.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# The data source must be open for reading.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
def read
|
|
|
|
rows = to_a
|
2019-01-25 01:49:59 -05:00
|
|
|
if parser.use_headers?
|
|
|
|
Table.new(rows, headers: parser.headers)
|
2007-12-24 21:46:26 -05:00
|
|
|
else
|
|
|
|
rows
|
|
|
|
end
|
|
|
|
end
|
|
|
|
alias_method :readlines, :read
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2007-12-24 21:46:26 -05:00
|
|
|
# Returns +true+ if the next row read will be a header row.
|
|
|
|
def header_row?
|
2018-12-23 02:00:35 -05:00
|
|
|
parser.header_row?
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# The primary read method for wrapped Strings and IOs, a single row is pulled
|
|
|
|
# from the data source, parsed and returned as an Array of fields (if header
|
|
|
|
# rows are not used) or a CSV::Row (when header rows are used).
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# The data source must be open for reading.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
def shift
|
2019-04-17 09:02:40 -04:00
|
|
|
if @eof_error
|
|
|
|
eof_error, @eof_error = @eof_error, nil
|
|
|
|
raise eof_error
|
|
|
|
end
|
2018-12-23 02:00:35 -05:00
|
|
|
begin
|
2019-04-14 17:01:51 -04:00
|
|
|
parser_enumerator.next
|
2018-12-23 02:00:35 -05:00
|
|
|
rescue StopIteration
|
|
|
|
nil
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
alias_method :gets, :shift
|
|
|
|
alias_method :readline, :shift
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
2010-10-07 11:25:23 -04:00
|
|
|
# Returns a simplified description of the key CSV attributes in an
|
2008-12-26 11:53:13 -05:00
|
|
|
# ASCII compatible String.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
def inspect
|
2019-07-25 03:39:28 -04:00
|
|
|
str = ["#<", self.class.to_s, " io_type:"]
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
# show type of wrapped IO
|
|
|
|
if @io == $stdout then str << "$stdout"
|
|
|
|
elsif @io == $stdin then str << "$stdin"
|
|
|
|
elsif @io == $stderr then str << "$stderr"
|
|
|
|
else str << @io.class.to_s
|
|
|
|
end
|
|
|
|
# show IO.path(), if available
|
|
|
|
if @io.respond_to?(:path) and (p = @io.path)
|
|
|
|
str << " io_path:" << p.inspect
|
|
|
|
end
|
|
|
|
# show encoding
|
|
|
|
str << " encoding:" << @encoding.name
|
|
|
|
# show other attributes
|
2018-12-23 02:00:35 -05:00
|
|
|
["lineno", "col_sep", "row_sep", "quote_char"].each do |attr_name|
|
|
|
|
if a = __send__(attr_name)
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
str << " " << attr_name << ":" << a.inspect
|
|
|
|
end
|
|
|
|
end
|
2018-12-23 02:00:35 -05:00
|
|
|
["skip_blanks", "liberal_parsing"].each do |attr_name|
|
|
|
|
if a = __send__("#{attr_name}?")
|
|
|
|
str << " " << attr_name << ":" << a.inspect
|
|
|
|
end
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
end
|
2018-12-23 02:00:35 -05:00
|
|
|
_headers = headers
|
|
|
|
str << " headers:" << _headers.inspect if _headers
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
str << ">"
|
2008-12-26 11:53:13 -05:00
|
|
|
begin
|
2010-12-25 01:58:58 -05:00
|
|
|
str.join('')
|
2008-12-26 11:53:13 -05:00
|
|
|
rescue # any encoding error
|
|
|
|
str.map do |s|
|
|
|
|
e = Encoding::Converter.asciicompat_encoding(s.encoding)
|
|
|
|
e ? s.encode(e) : s.force_encoding("ASCII-8BIT")
|
2010-12-25 01:58:58 -05:00
|
|
|
end.join('')
|
2008-12-26 11:53:13 -05:00
|
|
|
end
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2007-12-24 21:46:26 -05:00
|
|
|
private
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2018-05-09 00:39:16 -04:00
|
|
|
def determine_encoding(encoding, internal_encoding)
|
|
|
|
# honor the IO encoding if we can, otherwise default to ASCII-8BIT
|
2018-12-23 02:00:35 -05:00
|
|
|
io_encoding = raw_encoding
|
2018-05-09 00:39:16 -04:00
|
|
|
return io_encoding if io_encoding
|
|
|
|
|
|
|
|
return Encoding.find(internal_encoding) if internal_encoding
|
|
|
|
|
|
|
|
if encoding
|
|
|
|
encoding, = encoding.split(":", 2) if encoding.is_a?(String)
|
|
|
|
return Encoding.find(encoding)
|
|
|
|
end
|
|
|
|
|
|
|
|
Encoding.default_internal || Encoding.default_external
|
|
|
|
end
|
|
|
|
|
2018-12-23 02:00:35 -05:00
|
|
|
def normalize_converters(converters)
|
|
|
|
converters ||= []
|
|
|
|
unless converters.is_a?(Array)
|
|
|
|
converters = [converters]
|
2012-08-20 16:52:36 -04:00
|
|
|
end
|
2018-12-23 02:00:35 -05:00
|
|
|
converters.collect do |converter|
|
|
|
|
case converter
|
|
|
|
when Proc # custom code block
|
|
|
|
[nil, converter]
|
|
|
|
else # by name
|
|
|
|
[converter, nil]
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
# Processes +fields+ with <tt>@converters</tt>, or <tt>@header_converters</tt>
|
|
|
|
# if +headers+ is passed as +true+, returning the converted field set. Any
|
|
|
|
# converter that changes the field into something other than a String halts
|
|
|
|
# the pipeline of conversion for that field. This is primarily an efficiency
|
|
|
|
# shortcut.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
def convert_fields(fields, headers = false)
|
2018-05-09 00:39:16 -04:00
|
|
|
if headers
|
2018-12-23 02:00:35 -05:00
|
|
|
header_fields_converter.convert(fields, nil, 0)
|
2018-05-09 00:39:16 -04:00
|
|
|
else
|
2019-04-14 17:01:51 -04:00
|
|
|
parser_fields_converter.convert(fields, @headers, lineno)
|
2018-05-09 00:39:16 -04:00
|
|
|
end
|
2018-12-23 02:00:35 -05:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2018-12-23 02:00:35 -05:00
|
|
|
#
|
|
|
|
# Returns the encoding of the internal IO object.
|
|
|
|
#
|
|
|
|
def raw_encoding
|
|
|
|
if @io.respond_to? :internal_encoding
|
|
|
|
@io.internal_encoding || @io.external_encoding
|
|
|
|
elsif @io.respond_to? :encoding
|
|
|
|
@io.encoding
|
|
|
|
else
|
|
|
|
nil
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2019-04-14 17:01:51 -04:00
|
|
|
def parser_fields_converter
|
|
|
|
@parser_fields_converter ||= build_parser_fields_converter
|
2018-12-23 02:00:35 -05:00
|
|
|
end
|
|
|
|
|
2019-04-14 17:01:51 -04:00
|
|
|
def build_parser_fields_converter
|
2018-12-23 02:00:35 -05:00
|
|
|
specific_options = {
|
|
|
|
builtin_converters: Converters,
|
|
|
|
}
|
|
|
|
options = @base_fields_converter_options.merge(specific_options)
|
2019-04-14 17:01:51 -04:00
|
|
|
build_fields_converter(@initial_converters, options)
|
2018-12-23 02:00:35 -05:00
|
|
|
end
|
2007-12-24 21:46:26 -05:00
|
|
|
|
2018-12-23 02:00:35 -05:00
|
|
|
def header_fields_converter
|
|
|
|
@header_fields_converter ||= build_header_fields_converter
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2018-12-23 02:00:35 -05:00
|
|
|
def build_header_fields_converter
|
|
|
|
specific_options = {
|
|
|
|
builtin_converters: HeaderConverters,
|
|
|
|
accept_nil: true,
|
|
|
|
}
|
|
|
|
options = @base_fields_converter_options.merge(specific_options)
|
2019-04-14 17:01:51 -04:00
|
|
|
build_fields_converter(@initial_header_converters, options)
|
|
|
|
end
|
|
|
|
|
|
|
|
def writer_fields_converter
|
|
|
|
@writer_fields_converter ||= build_writer_fields_converter
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_writer_fields_converter
|
|
|
|
build_fields_converter(@initial_write_converters,
|
|
|
|
@write_fields_converter_options)
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_fields_converter(initial_converters, options)
|
2018-12-23 02:00:35 -05:00
|
|
|
fields_converter = FieldsConverter.new(options)
|
2019-04-14 17:01:51 -04:00
|
|
|
normalize_converters(initial_converters).each do |name, converter|
|
2018-12-23 02:00:35 -05:00
|
|
|
fields_converter.add_converter(name, &converter)
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
2018-12-23 02:00:35 -05:00
|
|
|
fields_converter
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2018-12-23 02:00:35 -05:00
|
|
|
def parser
|
|
|
|
@parser ||= Parser.new(@io, parser_options)
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2018-12-23 02:00:35 -05:00
|
|
|
def parser_options
|
2019-04-14 17:01:51 -04:00
|
|
|
@parser_options.merge(header_fields_converter: header_fields_converter,
|
|
|
|
fields_converter: parser_fields_converter)
|
|
|
|
end
|
|
|
|
|
|
|
|
def parser_enumerator
|
|
|
|
@parser_enumerator ||= parser.parse
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2018-12-23 02:00:35 -05:00
|
|
|
def writer
|
|
|
|
@writer ||= Writer.new(@io, writer_options)
|
* lib/csv/csv.rb: Reworked CSV's parser and generator to be m17n. Data
is now parsed in the Encoding it is in without need for translation.
* lib/csv/csv.rb: Improved inspect() messages for better IRb support.
* lib/csv/csv.rb: Fixed header writing bug reported by Dov Murik.
* lib/csv/csv.rb: Use custom separators in parsing header Strings as
suggested by Shmulik Regev.
* lib/csv/csv.rb: Added a :write_headers option for outputting headers.
* lib/csv/csv.rb: Handle open() calls in binary mode whenever we can to
workaround a Windows issue where line-ending translation can cause an
off-by-one error in seeking back to a non-zero starting position after
auto-discovery for :row_sep as suggested by Robert Battle.
* lib/csv/csv.rb: Improved the parser to fail faster when fed some forms
of invalid CSV that can be detected without reading ahead.
* lib/csv/csv.rb: Added a :field_size_limit option to control CSV's
lookahead and prevent the parser from biting off more data than
it can chew.
* lib/csv/csv.rb: Added readers for CSV attributes: col_sep(), row_sep(),
quote_char(), field_size_limit(), converters(), unconverted_fields?(),
headers(), return_headers?(), write_headers?(), header_converters(),
skip_blanks?(), and force_quotes?().
* lib/csv/csv.rb: Cleaned up code syntax to be more inline with
Ruby 1.9 than 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-20 20:39:03 -04:00
|
|
|
end
|
|
|
|
|
2018-12-23 02:00:35 -05:00
|
|
|
def writer_options
|
2019-04-14 17:01:51 -04:00
|
|
|
@writer_options.merge(header_fields_converter: header_fields_converter,
|
|
|
|
fields_converter: writer_fields_converter)
|
2009-10-15 14:19:15 -04:00
|
|
|
end
|
2007-12-24 21:46:26 -05:00
|
|
|
end
|
|
|
|
|
2012-09-19 18:07:44 -04:00
|
|
|
# Passes +args+ to CSV::instance.
|
|
|
|
#
|
|
|
|
# CSV("CSV,data").read
|
|
|
|
# #=> [["CSV", "data"]]
|
|
|
|
#
|
|
|
|
# If a block is given, the instance is passed the block and the return value
|
|
|
|
# becomes the return value of the block.
|
|
|
|
#
|
|
|
|
# CSV("CSV,data") { |c|
|
|
|
|
# c.read.any? { |a| a.include?("data") }
|
|
|
|
# } #=> true
|
|
|
|
#
|
|
|
|
# CSV("CSV,data") { |c|
|
|
|
|
# c.read.any? { |a| a.include?("zombies") }
|
2012-09-20 03:06:06 -04:00
|
|
|
# } #=> false
|
2012-09-19 18:07:44 -04:00
|
|
|
#
|
2007-12-24 21:46:26 -05:00
|
|
|
def CSV(*args, &block)
|
|
|
|
CSV.instance(*args, &block)
|
|
|
|
end
|
|
|
|
|
2018-05-09 00:39:16 -04:00
|
|
|
require_relative "csv/version"
|
|
|
|
require_relative "csv/core_ext/array"
|
|
|
|
require_relative "csv/core_ext/string"
|