Open Geal opened 9 years ago
I'm writing a Thrift library for Rust that'll use Nom for both their IDL and the network protocol, so that can be another example (although in a different repo).
Nice idea, that will be useful! Please notify me when it is done, I will add a link in this list.
This looks interesting. Is anyone actively working on any of these parsers? I'd like to work on a few of these.
I have some code for a GIF one at https://github.com/Geal/gif.rs but it is hard to test, since the graphical tools in Piston change a lot.
You can pick any of them. Network packets may be the easiest, since they don't require a decompression phase.
I am using the gif example to see what kind of API can be built over nom. Most of the parsing example are done as one pass over the data, but often there is some logic on the side, and it is not easy to encode correctly.
I've started a fastq (http://en.wikipedia.org/wiki/FASTQ_format) parser https://github.com/elij/fastq.rs
@elij this is a great idea! Was it easy to do?
yup it's a great framework -- though I struggled a bit with eof so I borrowed some code from rust-config (https://github.com/elij/fastq.rs/blob/master/src/parser.rs#L69) -- is there a better solution?
yes, eof should be a parser provided by nom, I am just waiting for @filipegoncalves to send a PR :wink:
Hah, sorry for my silence. I've been busy lately. I just sent a PR (https://github.com/Geal/nom/pull/31).
I will be working on one of these example parsers as soon as I get some spare time. There are some great ideas in here!
I might give tar a try
Does this check off PCAP?
pcap-ng and pcap are two different formats, right? It seems the consensus now is to move everything to pcap-ng, though.
I will try a FLAC parser, need to add quite a few things for it though.
ISO8601 is done in https://github.com/badboy/iso8601 (I hope it's mostly correct.)
ok, it should be up to date. More to come :smile:
WARC file format released. https://crates.io/crates/warc_parser
@sbeckeriv great, thanks!
It might be informative to try parsing the rust grammar with nom, if nobody has yet. In any case, I'd like to see a few programming languages on that list, since that's my use case.
@porglezomp programming languages examples would definitely be useful, but the Rust grammar might be a bit too much for the first attempt. Which other languages would you like to handle?
Yeah, I'm aware of the scale problem of Rust. I don't want to write that one, but I think it's a good holy grail for any parser library written in Rust. I'd like to try parsing the Lua grammar first, I think.
I recommend adding to the list:
ok, I added them to the list :)
You have INI marked as done; do you have a link to it? (I'd love to use this for some tooling I'm hoping to build in 2016; need a good non-trivial example for it, though.)
@chriskrycho: https://github.com/Geal/nom/blob/master/tests/ini.rs
Thanks very much, @badboy!
I'll try to make the TOML parser very soon.
Actually, I think I should rewrite that INI parser, now that more convenient combinators are available. Also, I should really work on that combinator for space separated stuff
@fbernier great! Please keep me posted!
Maybe add a simple example for trailing commas in lists? Python has those, but is quite complex. Can't think of a simple example though.
That IRC example is no longer using nom. The parser was moved into its own repository: https://github.com/Detegr/RBot-parser
@l0calh05t to parse something like [a,b,c,]
or [a,b,c]
?
@johshoff fixed, thanks
@Geal yes, exactly
@l0calh05t for [a,b,c]
, you can parse with delimited!(char!('['), separated_list!( char!(','), alphabetic), char!(']'))
.
For [a,b,c,]
, you can have delimited!(char!('['), terminated!(alphabetic, char!(',')), char!(']'))
.
A parser that would handle both cases is much trickier.
Both is really the more interesting case. And what is needed for Python for example
Could there be something like maybe_char!(',') which would read a char, consume it if it's ',' or backtrack if it isn't?
EDIT: actually that's probably what opt!(char!(',')) would do, so you just have to take the one that parses [a,b,c] and stick that before the ']' or am I missing something?
Problem is that wont work unless a look ahead of more than one character is added automatically
In fact, it is easier than I thought, but requires some work:
preceded!(
char!('['),
terminated!(
separated_list!(
char!(','),
alphabetic
),
terminated!(
opt!(char!(',')),
char!(']')
)
)
)
opt!
will return an option of the result of its child parser (Some
if success, None
if failure), so it will accept the trailing comma.
I wrote a simplistic bencode parser: nom-bencode.
Not sure if it covers everything (yet).
I've started a TOML parser as a learning project: https://github.com/passcod/noml
At this point I'm ready to share my flac implementation as an example parser.
Hey sourrust. Nom looks great way to do this. I am interested in parsing different video formats with nom. If there is some existing rust kibs in this space that anyone knows then u could start porting some to nom. Worth a crack to see how it goes.
I am very curious about using the streaming capabilities of nom. For my use case I want to stream data between servers, manipulate frames, and then fan it back into the main stream. I would love to get some feedback on some potential gotchas. Doing this type of work should ultimately feedback into making nom better.
Correct me if I'm wrong, but the linked Redis project doesn't seem to use nom.
I agree, I checked the history of it's Cargo.toml and at no point was nom listed as a dependency. I'm not sure how it ended up on the list, but it looks like it should be taken off.
It does in another branch, which is still not merged because time.
@Geal you can remove my Thrift library as an example as I'm no longer using Nom in it.
I've released a TOML parser. It doesn't let you modify everything possible in the document or create documents from scratch, but does correctly parse TOML, report errors, allow some modification and then output the document with comments and whitespace intact.
I've started working on a parser for IP, TCP, UDP, and Ethernet headers. It is located at https://github.com/moosingin3space/pktparse-rs. Warning: there is little to no documentation right now!
Java class file parser! It is part of a larger class project.
The parser uses helper macros based on #160 to get more backtracking support.
Not sure if it's worth putting here or not, but I'm using nom
to parse strings for the tracery library I am writing for rust: https://github.com/pwoolcoc/tracery-rs
A subset of C, namely C literals and expressions: https://crates.io/crates/cexpr
FYI I used nom to parse the linux perf data format (https://github.com/gz/rust-perfcnt/blob/master/src/linux/parser.rs) in case you want to add it. In comparison to most examples listed here it parses binary data.
Also, it's roughly 25x faster than an equivalent parser written in python ;)
We currently have a few example parsers. In order to test the project and make it useful, other formats can be implemented. Here is a list, if anyone wants to try it: