9 unstable releases

0.6.2 Aug 2, 2022
0.6.1 Apr 7, 2022
0.6.0 Dec 22, 2021
0.5.0 Apr 14, 2021
0.1.0 Jun 30, 2019

#525 in Command-line interface

Download history 9955/week @ 2024-01-03 15843/week @ 2024-01-10 15342/week @ 2024-01-17 10801/week @ 2024-01-24 8455/week @ 2024-01-31 9604/week @ 2024-02-07 8490/week @ 2024-02-14 8464/week @ 2024-02-21 9542/week @ 2024-02-28 9151/week @ 2024-03-06 10266/week @ 2024-03-13 12067/week @ 2024-03-20 10163/week @ 2024-03-27 9419/week @ 2024-04-03 9271/week @ 2024-04-10 8472/week @ 2024-04-17

39,300 downloads per month
Used in 28 crates (via termwiz)

MIT license

53KB
1K SLoC

vtparse

This is an implementation of a parser for escape and control sequences. It is based on the DEC ANSI Parser.

It has been modified slightly to support UTF-8 sequences.

vtparse is the lowest level parser; it categorizes the basic types of sequences but does not ascribe any semantic meaning to them.

You may wish to look at termwiz::escape::parser::Parser in the termwiz crate if you're looking for semantic parsing.

Comparison with the vte crate

vtparse has support for dynamically sized OSC buffers, which makes it suitable for processing large escape sequences, such as those used by the iTerm2 image protocol.


lib.rs:

An implementation of the state machine described by DEC ANSI Parser, modified to support UTF-8.

This is sufficient to broadly categorize ANSI/ECMA-48 escape sequences that are commonly used in terminal emulators. It does not ascribe semantic meaning to those escape sequences; for example, if you wish to parse the SGR sequence that makes text bold, you will need to know which codes correspond to bold in your implementation of VTActor.

You may wish to use termwiz::escape::parser::Parser in the termwiz crate if you don't want to have to research all those possible escape sequences for yourself.

Dependencies

~14KB