Go to file
Nathan McRae a80206767e Change column type management
The column types were tracked just as a Type. This changes them to be an instance
so they can track additional information (such as the specific units of a physical
units type). Because of this, the column type attribute need to be passed as strings
(see CS0181).
2024-03-10 22:28:05 -07:00
SaneTsv Change column type management 2024-03-10 22:28:05 -07:00
readme.md Add roadmap 2024-02-15 20:26:56 -08:00

Sane TSV

Roadmap

  • Improve error reporting by including line/column information in exceptions
  • Come up with a static-typing interface Something that doesn't require an array of objects
  • Check numeric formatting matches spec
  • Do parallel parsing / serializing implementation
    • Next task: Refactor parsing so that it will start and end at arbitrary indices and return an array of SaneTsvRecords. The refactor should ignore the current record (unless at the start of the buffer) and continue parsing the record the end index is in.
  • More optimization and making parsing modular:
    • Have callbacks for header parsing and field parsing
    • That way other formats (like ExtraTSV) don't have to iterate through the entire set of data again.
  • Finish ExtraTSV implementation
  • Do zig implementation
  • Make a c interface from that