#parsing — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #parsing, aggregated by home.social.
-
Sigh... I guess I need to ask this now
So #rust programmers, how does one do errors in lossless parsing?
Context
I'm working on the new nu parser for nushell. The current strategy is to have a giant vector of so called
NodeIds which in turn refer other indices within that vector, and ultimately build a parse "tree" using thoseNodeId(variants in theAstNodemay contain other metadata too)Now, we just created a dummy
NodeIdfor errors and pushed them and continued to parse on our way. We want to have error-resilient parsing, so that we can cover more errors at other locations. If something's badly borked, well, we just barf.So this worked well for us devs, because it kept things simple easy, but this is not how I'd really like to build the parse tree. There are multiple problems.
Right off the bat, we lose all the type information in one big ball of
AstNodeenum vector. So even though there are some places where you know that anAstNodewould be of a particular kind, you simply cannot do anything about it except explicitly match and check (we want to avoid unsafe memory reinterprets).As an aside, most of the enum is empty, but due to some variants, the entire enum becomes 48 bytes, so we waste a lot of memory on basically nothing.
My solution to this was to use bumpalo to do allocations and store references, and let go of the vector altogether and build an actual parse tree (like, a node with children, which have further children, and so on)
This is basically doing the vector, but not wasting space on the emptiness of the enums, not lose the types at runtime to the enum, and not have to do hacky index-chasing (which effectively act like pointers now). Instead, we use actual references, which we know will be valid till the end of the arena lifetime (three cheers for bumpalo!)
The Problem
As mentioned before, we had
NodeIdfor errors as well, and those had a dummy span. Now, with the existence of a concrete parse tree, we have... no such thing. So we lose out on the ease of creating an error and attaching it wherever we want. In order to do things the earlier way, we have to make everything into anResult<insert_type_here, Error>which is very, very bad, because with that comes the indirect habit of using?to bubble upwards, which is a problem because we want to find as big of a parsed expression with as small of an error context (we basically want to minimize how much we weren't able to parse, because that's what any good parser should do)Right now, I don't really have any concrete ideas to attach errors to the nodes in the parse tree. So finally
Questions
- How does one do it? I'm looking for suggestions, although I don't really have anything concrete in my mind
- Would this actually lead to better performance? I expect it to be both faster and cheaper resource-wise. I'd argue yes, but I have no idea since it's a massive rewrite and doesn't even compile yet (:
Code snippets
// NOTE(bumpalo_rewrite): This becomes the root of the AST // TODO(bumpalo_rewrite): Change to the generic enum that block may contain #[derive(Debug, Clone)] pub struct Block<'a> { pub span_start: usize, pub span_end: usize, pub nodes: Vec<BlockEntities<'a>>, } // TODO(bumpalo_rewrite): Fill with all the possible BlockEntities // NOTE(bumpalo_rewrite): See Parser::block() for the entity types #[derive(Debug, Clone)] pub enum BlockEntities<'a> { Def(&'a Def<'a>), Let(&'a Let<'a>), While(&'a While<'a>), For(&'a For<'a>), Loop(&'a Loop<'a>), Return(&'a Return<'a>), Continue(&'a Continue), Break(&'a Break), Alias(&'a Alias), Extern(&'a Extern), PipelineOrExprOrAssign(PipelineOrExprOrAssign<'a>), Statement(PipelineOrExprOrAssign<'a>), }This is kind of what it is like right now. The function that parses a block:
else if self.is_keyword(b"while") { match self.while_statement(arena) { Some(while_) => { code_body.push(BlockEntities::While(while_)); } None => {} }; }has cases like these, where the error context is lost (ignore using
Optioninstead ofResult, I'm prototyping nullSo really, how do I preserve the error contexts?
Git Repo
Here. You'd want to mostly look through the diff between this commit and the previous one in
src/parser.rsAny help is appreciated because I'm close to losing my mind lol XD
#programming #parsing #rust #errortolerance #compilers #parsers
-
Sigh... I guess I need to ask this now
So #rust programmers, how does one do errors in lossless parsing?
Context
I'm working on the new nu parser for nushell. The current strategy is to have a giant vector of so called
NodeIds which in turn refer other indices within that vector, and ultimately build a parse "tree" using thoseNodeId(variants in theAstNodemay contain other metadata too)Now, we just created a dummy
NodeIdfor errors and pushed them and continued to parse on our way. We want to have error-resilient parsing, so that we can cover more errors at other locations. If something's badly borked, well, we just barf.So this worked well for us devs, because it kept things simple easy, but this is not how I'd really like to build the parse tree. There are multiple problems.
Right off the bat, we lose all the type information in one big ball of
AstNodeenum vector. So even though there are some places where you know that anAstNodewould be of a particular kind, you simply cannot do anything about it except explicitly match and check (we want to avoid unsafe memory reinterprets).As an aside, most of the enum is empty, but due to some variants, the entire enum becomes 48 bytes, so we waste a lot of memory on basically nothing.
My solution to this was to use bumpalo to do allocations and store references, and let go of the vector altogether and build an actual parse tree (like, a node with children, which have further children, and so on)
This is basically doing the vector, but not wasting space on the emptiness of the enums, not lose the types at runtime to the enum, and not have to do hacky index-chasing (which effectively act like pointers now). Instead, we use actual references, which we know will be valid till the end of the arena lifetime (three cheers for bumpalo!)
The Problem
As mentioned before, we had
NodeIdfor errors as well, and those had a dummy span. Now, with the existence of a concrete parse tree, we have... no such thing. So we lose out on the ease of creating an error and attaching it wherever we want. In order to do things the earlier way, we have to make everything into anResult<insert_type_here, Error>which is very, very bad, because with that comes the indirect habit of using?to bubble upwards, which is a problem because we want to find as big of a parsed expression with as small of an error context (we basically want to minimize how much we weren't able to parse, because that's what any good parser should do)Right now, I don't really have any concrete ideas to attach errors to the nodes in the parse tree. So finally
Questions
- How does one do it? I'm looking for suggestions, although I don't really have anything concrete in my mind
- Would this actually lead to better performance? I expect it to be both faster and cheaper resource-wise. I'd argue yes, but I have no idea since it's a massive rewrite and doesn't even compile yet (:
Code snippets
// NOTE(bumpalo_rewrite): This becomes the root of the AST // TODO(bumpalo_rewrite): Change to the generic enum that block may contain #[derive(Debug, Clone)] pub struct Block<'a> { pub span_start: usize, pub span_end: usize, pub nodes: Vec<BlockEntities<'a>>, } // TODO(bumpalo_rewrite): Fill with all the possible BlockEntities // NOTE(bumpalo_rewrite): See Parser::block() for the entity types #[derive(Debug, Clone)] pub enum BlockEntities<'a> { Def(&'a Def<'a>), Let(&'a Let<'a>), While(&'a While<'a>), For(&'a For<'a>), Loop(&'a Loop<'a>), Return(&'a Return<'a>), Continue(&'a Continue), Break(&'a Break), Alias(&'a Alias), Extern(&'a Extern), PipelineOrExprOrAssign(PipelineOrExprOrAssign<'a>), Statement(PipelineOrExprOrAssign<'a>), }This is kind of what it is like right now. The function that parses a block:
else if self.is_keyword(b"while") { match self.while_statement(arena) { Some(while_) => { code_body.push(BlockEntities::While(while_)); } None => {} }; }has cases like these, where the error context is lost (ignore using
Optioninstead ofResult, I'm prototyping nullSo really, how do I preserve the error contexts?
Git Repo
Here. You'd want to mostly look through the diff between this commit and the previous one in
src/parser.rsAny help is appreciated because I'm close to losing my mind lol XD
#programming #parsing #rust #errortolerance #compilers #parsers
-
PR pour rendre meilleure la prise en charge du kabyle sur ce « number parser » d'Open Voice OS.
Faut savoir que même `libnumbertext` ne prend pas en charge le système de numération en kabyle. J'ai une version localement qui le supporte.
En attendant :
-
PR pour rendre meilleure la prise en charge du kabyle sur ce « number parser » d'Open Voice OS.
Faut savoir que même `libnumbertext` ne prend pas en charge le système de numération en kabyle. J'ai une version localement qui le supporte.
En attendant :
-
Как я случайно написал что-то быстрое и декларативное (на Rust)
Писал парсер строго под свой проект, а получился быстрый декларативный движок для парсинга текстовых форматов. Как?
https://habr.com/ru/articles/1049432/
#rust #parsing #engine #declarative #fast #парсер #парсинг #работа_с_текстом #работа_с_текстовыми_данными
-
Okay, es ist mal wieder Psycholinguistik-Time, weil #Psycholinguistik geilste #Linguistik!
Lest mal den folgenden Satz:
"Dass Nagelsmann zugunsten von Sané nie etwas unternommen worden wäre, ist eine Lüge."
Ich gebe zu, der ist ein bisschen kompliziert, und vielleicht habt Ihr gedacht: "Müsste da statt 'worden wäre' nicht 'hat' stehen?" - Ja, kann es, aber es ist auch so ein auflösbarer ("richtiger") Satz.
Interessant ist aber, dass es in der Form oben ein #Holzweg-Satz (Engl. #gardenpath) ist. Die heißen deshalb so, weil sie einen bei der Satzinterpretation (Engl. #parsing) in die Irre führen: Die meisten Leute denken beim ersten Lesen, dass Nagelsmann die handelnde Person (Agens) beim "unternehmen" ist. In Wahrheit ist es aber Sané – und das wird klar, wenn man den Satz entsprechend betont. Liegt die Betonung auf Nagelsmann, wird die Interpretation einfacher.
-
Okay, es ist mal wieder Psycholinguistik-Time, weil #Psycholinguistik geilste #Linguistik!
Lest mal den folgenden Satz:
"Dass Nagelsmann zugunsten von Sané nie etwas unternommen worden wäre, ist eine Lüge."
Ich gebe zu, der ist ein bisschen kompliziert, und vielleicht habt Ihr gedacht: "Müsste da statt 'worden wäre' nicht 'hat' stehen?" - Ja, kann es, aber es ist auch so ein auflösbarer ("richtiger") Satz.
Interessant ist aber, dass es in der Form oben ein #Holzweg-Satz (Engl. #gardenpath) ist. Die heißen deshalb so, weil sie einen bei der Satzinterpretation (Engl. #parsing) in die Irre führen: Die meisten Leute denken beim ersten Lesen, dass Nagelsmann die handelnde Person (Agens) beim "unternehmen" ist. In Wahrheit ist es aber Sané – und das wird klar, wenn man den Satz entsprechend betont. Liegt die Betonung auf Nagelsmann, wird die Interpretation einfacher.
-
Шифрование на уровне протокола
Как организовать шифрование на уровне протокола? На самом деле тема непростая и пожалуй (имхо) это как раз та самая тема, где прийти к компромиссу почти никогда не получается. Разве что просто не передавать чувствительные данные вовсе. Я расскажу как шифрование можно организовать на уровне протокола brec и ни в коем случае не буду затрагивать те самые принципиальные решения, влияющие на безопасность (как передавать, куда передавать, отправлять ли, и хранить ли чувствительные данные вовсе). Иными словами нас интересует инструментальная сторона вопроса.
https://habr.com/ru/articles/1040298/
#rust #protocols #parsing #binary #communication #no_database #storage #binary_storage #filtering #crypt
-
🎉 Behold the ultimate #toolkit for #nerds who find #parsing MPEG-TS streams exhilarating! #TSDuck presents a dizzying array of standards and protocols, because nothing screams #fun like endless acronyms and a PDF bonanza 📚. Dive in, if you dare, and unleash your inner transport stream aficionado! 😂
https://tsduck.io/ #MPEGTS #TransportStream #HackerNews #ngated -
🎉 Behold the ultimate #toolkit for #nerds who find #parsing MPEG-TS streams exhilarating! #TSDuck presents a dizzying array of standards and protocols, because nothing screams #fun like endless acronyms and a PDF bonanza 📚. Dive in, if you dare, and unleash your inner transport stream aficionado! 😂
https://tsduck.io/ #MPEGTS #TransportStream #HackerNews #ngated -
💡 Docling + Ollama + Qdrant: costruisci una knowledge base privata con Qwen3.6 in locale
https://gomoot.com/docling-la-libreria-open-source-per-il-pdf-parsing-nelle-pipeline-rag-con-ollama-e-qdrant/ -
Parse, Don’t Validate—in a Language That Doesn’t Want You To, by (not on Mastodon or Bluesky):
https://cekrem.github.io/posts/parse-dont-validate-typescript/
-
Parse, Don’t Validate—in a Language That Doesn’t Want You To, by (not on Mastodon or Bluesky):
https://cekrem.github.io/posts/parse-dont-validate-typescript/
-
The fastest way to match characters on ARM processors?, https://lemire.me/blog/2026/04/19/the-fastest-way-to-match-characters-on-arm-processors/.
In this article, Lemir talks about two SIMD ARM SVE/SVE2 instructions: `match` and `nmatch`, which fit nicely in the _vectorized classification_ step of `simdjson`. These instructions improve the performance of `simdjson` from 11.4Gb/s to 14.4Gb/s.
-
The fastest way to match characters on ARM processors?, https://lemire.me/blog/2026/04/19/the-fastest-way-to-match-characters-on-arm-processors/.
In this article, Lemir talks about two SIMD ARM SVE/SVE2 instructions: `match` and `nmatch`, which fit nicely in the _vectorized classification_ step of `simdjson`. These instructions improve the performance of `simdjson` from 11.4Gb/s to 14.4Gb/s.
-
How do you build a complex parser without it becoming a mess? The swift-parsing library from Point-Free lets you compose smaller, focused parsers into powerful pipelines using the Parse block and map modifiers.
🔗: https://swiftdevjournal.com/posts/composing-parsers/ by Mark Szymczyk
-
I do not see why a recursive-descent parser cannot have numeric precedences like a Pratt parser. You just move the order of productions freely, and let any production call any other.
Am I missing something?
-
I do not see why a recursive-descent parser cannot have numeric precedences like a Pratt parser. You just move the order of productions freely, and let any production call any other.
Am I missing something?
-
Rewriting Our Rust Wasm Parser in TypeScript, by (not on Mastodon or Bluesky):
-
Rewriting Our Rust Wasm Parser in TypeScript, by (not on Mastodon or Bluesky):
-
🚀 Ohm's #PEG-to-WASM Compiler: because everyone needs a #parsing #tool that's 50x #faster to parse things nobody asked for! 😂 Forget about improving your life—just make #parsing 0.02 seconds quicker. Is it a bird? Is it a plane? No, it's an #unnecessary #compiler update! 🙄
https://ohmjs.org/blog/2026/03/12/peg-to-wasm #update #speed #improvement #tool #coding #humor #HackerNews #ngated -
🚀 Ohm's #PEG-to-WASM Compiler: because everyone needs a #parsing #tool that's 50x #faster to parse things nobody asked for! 😂 Forget about improving your life—just make #parsing 0.02 seconds quicker. Is it a bird? Is it a plane? No, it's an #unnecessary #compiler update! 🙄
https://ohmjs.org/blog/2026/03/12/peg-to-wasm #update #speed #improvement #tool #coding #humor #HackerNews #ngated -
Nobody Gets Fired for Picking JSON, but Maybe They Should?
Nobody Gets Fired for Picking JSON, but Maybe They Should?By Miguel Young de la Sota
Nobody Gets Fired for Picking JSON, but Maybe They Should?
JSON is extremely popular but deeply flawed. This article discusses the details of JSON’s design, how it’s used (and misused), and how
https://monodes.com/predaelli/2026/03/29/nobody-gets-fired-for-picking-json-but-maybe-they-should/
#Javascript #formats #JSON #parsing -
Nobody Gets Fired for Picking JSON, but Maybe They Should?
Nobody Gets Fired for Picking JSON, but Maybe They Should?By Miguel Young de la Sota
Nobody Gets Fired for Picking JSON, but Maybe They Should?
JSON is extremely popular but deeply flawed. This article discusses the details of JSON’s design, how it’s used (and misused), and how
https://monodes.com/predaelli/2026/03/29/nobody-gets-fired-for-picking-json-but-maybe-they-should/
#Javascript #formats #JSON #parsing -
A Faster Alternative to Jq
https://micahkepe.com/blog/jsongrep/
#HackerNews #A #Faster #Alternative #to #Jq #json #parsing #programming #speed #optimization
-
A Faster Alternative to Jq
https://micahkepe.com/blog/jsongrep/
#HackerNews #A #Faster #Alternative #to #Jq #json #parsing #programming #speed #optimization
-
A nice survey of #ProgrammingLanguages that allow you to omit semicolons:
“No Semicolons Needed”, Terts Diepraam (https://terts.dev/blog/no-semicolons-needed/).
Via HN: https://news.ycombinator.com/item?id=47470200
On Lobsters: https://lobste.rs/s/09wmcz/no_semicolons_needed
#Programming #PLDI #Parsing #Lexing #Syntax #Grammar #Compilers
-
A nice survey of #ProgrammingLanguages that allow you to omit semicolons:
“No Semicolons Needed”, Terts Diepraam (https://terts.dev/blog/no-semicolons-needed/).
Via HN: https://news.ycombinator.com/item?id=47470200
On Lobsters: https://lobste.rs/s/09wmcz/no_semicolons_needed
#Programming #PLDI #Parsing #Lexing #Syntax #Grammar #Compilers
-
Another excellent post 👌🏽 from Russ Cox 👇🏽🫡:
“Floating-Point Printing And Parsing Can Be Simple And Fast” (https://research.swtch.com/fp).
On HN: https://news.ycombinator.com/item?id=46685317
On Lobsters: https://lobste.rs/s/nbsclr/floating_point_printing_parsing_can_be
#Programming #Math #FloatingPoint #Numbers #PLDI #Parsing #Printing
-
Another excellent post 👌🏽 from Russ Cox 👇🏽🫡:
“Floating-Point Printing And Parsing Can Be Simple And Fast” (https://research.swtch.com/fp).
On HN: https://news.ycombinator.com/item?id=46685317
On Lobsters: https://lobste.rs/s/nbsclr/floating_point_printing_parsing_can_be
#Programming #Math #FloatingPoint #Numbers #PLDI #Parsing #Printing
-
A Percise Parser, by @remyporter.bsky.social:
-
A Percise Parser, by @remyporter.bsky.social:
-
How to Stop parseFloat From Accepting Garbage
parseFloat accepts partial input and hides bugs.
-
“Explainer: Tree-sitter Vs. LSP”, Ashton Wiersdorf (https://lambdaland.org/posts/2026-01-21_tree-sitter_vs_lsp/).
Via HN: https://news.ycombinator.com/item?id=46719899
On Lobsters: https://lobste.rs/s/qhickw/explainer_tree_sitter_vs_lsp
#LSP #TreeSitter #LanguageServerProtocol #Editors #SyntaxHighlighting #Parsers #Parsing