Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4624760
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T03:10:29+00:00 2026-05-22T03:10:29+00:00

I’m using FasterCSV on a Ruby on Rails application and currently it throws an

  • 0

I’m using FasterCSV on a Ruby on Rails application and currently it throws an Exception if the file is invalid.

I’ve looked over the FasterCSV doc, and it seems that if I use FasterCSV::parse with a block, it’ll read the file one line at a time, without allocating too much memory. It’ll throw a FasterCSV::MalformedCSV exception if there is any kind of error on the file.

I’ve implemented a custom solution, but I’m not sure it’s the best possible one (see my answer below). I’d be interested in knowing alternatives

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T03:10:30+00:00Added an answer on May 22, 2026 at 3:10 am

    I made some tests yesterday and it turns out that my solution didn’t quite work; I kept getting empty arrays on valid CSVs after implementing the first is_valid . I’m not sure whether it’s a FasterCSV caching issue or something in my code, and I don’t know if it’s related with my test setup, but I decided to go implement a safe_parse instead:

    #/lib/faster_csv_safe_parse.rb
    class FasterCSV
    
      def self.safe_parse(file, options = {})
        begin
          FasterCSV.parse(file, options)
        rescue FasterCSV::MalformedCSVError
          nil
        end
      end
    
    end
    

    This will return a parsed array if the file is valid, or nil otherwise. I could then implement my validations as follows:

    # /models/csv_importer.rb
    
    class CsvImporter
      include ActiveRecord::Validations
    
      validates_presence_of :file
      validate check_file_format
      attr_accessor csv_data
    
      def csv_data
        @csv_data ||= FasterCSV.safe_parse(file)
      end
    
    ...
    
      private
    
      def check_file_format
        errors.add :file, "Malformed CSV! Please check syntax" if csv_data.nil?
      end
    end
    

    I guess it would be possible to implement a safe_parse that accepts a block and parses the file line by line, but for my purposes this simple implementation was enough, and it works in all cases.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want use html5's new tag to play a wav file (currently only supported
We're building an app, our first using Rails 3, and we're having to build
We are using XSLT to translate a RIXML file to XML. Our RIXML contains
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
That's pretty much it. I'm using Nokogiri to scrape a web page what has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I'm making a simple page using Google Maps API 3. My first. One marker
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
i want to parse a xhtml file and display in UITableView. what is the
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.