Giter Club home page Giter Club logo

Comments (12)

wdavidw avatar wdavidw commented on June 2, 2024 2

I didn't have the time yet. The solution needs to deal with the streaming nature of the parser. The solution would be to extract a limited amount of bytes from the stream, apply a detection algorythm such as the one proposed above, then replay the bytes stored on the side with the detected delimiter. I need some time to do it correctly.

from node-csv.

wdavidw avatar wdavidw commented on June 2, 2024 1

I would tend to discover the character, like in the second methods, after filtering any already used character in options (eg quotes, row delimiters, ...) and general ascii characters ([a-zA-z0-9]) (including accented characters).

from node-csv.

wdavidw avatar wdavidw commented on June 2, 2024 1

A few notes for now:

  1. delimiter_auto and not auto_delimiter, __discoverDelimiterAuto and not __autoDiscoverDelimiter
  2. Disabled by default, default value is false
  3. When normalizing the option, add consistency check, for exemple it cannot equal the values of record_delimiter (all those rules require tests)
  4. Dont convert to string, you shall compare values directly inside the buffer
  5. Write more unit tests but in particular one which write data one byte at a time (see https://github.com/adaltas/node-csv/blob/master/packages/csv-parse/test/api.stream.events.coffee#L53 as an example)
  6. My strategy would be to discover delimiter before any parsing is done, here is how I will start my experiment
    1. Work around the __needMoreData, if delimiter_auto is activated, and only in the first line, you shall allocated a safe buffer size dedicated to discovery
    2. Start discovery (your __autoDiscoverDelimiter function) just after bom handling and before actual parsing (https://github.com/adaltas/node-csv/blob/master/packages/csv-parse/lib/api/index.js#L109)

from node-csv.

hadyrashwan avatar hadyrashwan commented on June 2, 2024

Hey @cawoodm,
Anyone is working on this one ? I take work on it.

from node-csv.

wdavidw avatar wdavidw commented on June 2, 2024

While I am not against the idea, I can't say that I fully support the idea. However, if you come up with a clean delimiter_auto option, I'll probably merge it.

from node-csv.

hadyrashwan avatar hadyrashwan commented on June 2, 2024

@wdavidw I looked on GitHub to see what other people were doing.

node-csv-string detect function, which basically looks for the first occurrence of one of the delimiters, I guess is fine for most cases.

Another more advanced implementation was the detect-csv determineMost function , which looks at a sample and returns the delimiter with the highest occurancy count.

What do you think ?

from node-csv.

hadyrashwan avatar hadyrashwan commented on June 2, 2024

@wdavidw
I created a small proof of concept for the auto_delimiter option.

master...hadyrashwan:node-csv:patch-1

When running tests, the below happens, not sure why:

  • All tests pass when I run the test script. Except the encoding with BOM option.
  • When I run the encoding tests (packages/csv-parse/test/option.encoding.coffee) on its own, it works.
  • I added a small test for \t based on the delimiter tests to see how the logic runs it did detect the delimiter successfully, however it did not pass the test.

Question:

  • We are committing the dist files, is this expected ?

Missing parts:

  • Handling of characters coming from escape, quote, and record delimiter options.
  • Add more tests.
  • Add a references in TS definition.
  • Add a new page about the auto_delimiter in the docs.

Appreciate your feedback :)

from node-csv.

wdavidw avatar wdavidw commented on June 2, 2024

I'll take some time to review later. In the mean time, what do you mean by "We are committing the dist files".

from node-csv.

hadyrashwan avatar hadyrashwan commented on June 2, 2024

I'll take some time to review later. In the mean time, what do you mean by "We are committing the dist files".

When I'm working I always see the build files in the dist folders added to git and not ignored.

Some projects add those build files in the git ignore file.

Just want to make sure that I'm not adding those files by mistake.

from node-csv.

NoahCzelusta avatar NoahCzelusta commented on June 2, 2024

A couple of comments on the method of detecting delimiters:

  • We cannot safely assume that the most common character is THE CSV delimiter. The CSV delimiter is the character that consistently split the row into the same number of columns on each row.
  • CSVs can safely store strings that can contain the delimiter, so parsing has to be a little more intelligent (either considering quotes or allowing for a small degree of inconsistency in column count per row.

Python has a great example of handling these in their implementation. The pandas library uses this implementation but only reads from the first line of the file (here).

from node-csv.

carlbleick avatar carlbleick commented on June 2, 2024

Are there any plans to open a PR for that? As far as I can see the current changes are only present on a branch.

I would definitely love to see that feature.

from node-csv.

vincerubinetti avatar vincerubinetti commented on June 2, 2024

Here's another algorithm for detecting the delimiter that seems like a good idea:
https://stackoverflow.com/a/19070276/2180570

from node-csv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.