Releases: maciejhirsz/logos
0.11.0
New face, rehauled API
Logos has a new cute logo 🤓.
There is a number of breaking changes this release, aimed at reducing API surface and being more idiomatic, while adding some long awaited features, like the ability to put slices of the source or arbitrary values returned from callbacks directly into a token.
Most of the changes related to the #[derive]
macro will trigger a compile error message with an explanation to aid migration from 0.10. Those will be removed in the future.
API changes
- 🔨 [breaking] LOGOS NO LONGER HANDLES WHITESPACE BY DEFAULT. The
#[trivia]
attribute has been removed. Whitespace handling is easily added by defining#[regex(r"[ \n\t\f]+", logos::skip)]
on any token enum variant. Putting it along#[error]
is recommended. - 🔨 [breaking]
Lexer
no longer has theadvance
method, or publicly visibletoken
field. InsteadLexer
now implements theIterator
trait and has anext
method that returns anOption
of a token. - 🔨 [breaking]
#[end]
attribute was removed since it became obsolete. - 🔨 [breaking]
#[regex = "..."]
and#[token = "..."]
definitions are no longer valid syntax and will error when used in this way. Those need to be transformed to#[regex("...")]
or#[token("...")]
respectively. - 🔨 [breaking] Callbacks are now defined as a second parameter to either
#[regex]
or#[token]
. Those can be either paths to functions defined elsewhere (#[token("...", my_callback)]
), or inlined directly into the attribute using closure syntax (#[token("...", |lex| { ... })]
). - 🔨 [breaking]
Extras
trait has been removed. You can still associate a custom struct to theLexer
using#[logos(extras = MyExtras)]
with any type that implementsDefault
, and manipulate it using callbacks. - 🔨 [breaking]
#[callback]
attribute was removed since it was just polluting attribute namespace while offering no advantages over attaching callbacks to#[regex]
or#[token]
. - 🔨 [breaking]
Lexer::range
has been renamed tospan
.span
andslice
methods continue to return information for the most recently returned token. - ✨ [new]
Lexer
has a newspanned
method takes the ownership ofLexer
and returns an interator over(Token, Span)
tuples. - ✨ [new] Callbacks can return arbitrary values (or
Option
s/Result
s of values) that can be put into token enum variants. Currently only a single value in a tuple-like variants is supported (Token::Variant(T)
). - ✨ [new] Logos will automatically populate
Token::Variant(&str)
with a matchingstr
slice if no callback is provided. - ✨ [new] Callback return values can be used to skip matches using the
Skip
type. It's also possible to dynamically skip matches using theFilter
type.
Internals
- 🚀 Generated code is now more likely to produce optimized jump tables for complex branches.
- 🚀 Logos can now stack multiple boolean lookup tables into a single table, reducing the memory cost of using the tables by a factor of 8, and improving cache locality.
- 🚀 For narrow range boolean branches Logos can now produce a lookup table packed into a single
u64
.
0.10.0
Brand new #[derive]
The derive macro at heart of Logos has been rewritten virtually from scratch between 0.10.0-rc2 and now. The state machine is now built from a graph that permits arbitrary jumps between nodes, instead of a tree that needs to build up permutations of every possible path leading to a token match. This has fixed a whole number of old outstanding issues (#87, #81, #80, #79, #78, #70).
The new codebase is nearly 1k LOC shorter, compiles faster, outputs smaller code, is more cache friendly, and is already proving itself to be easier to debug and optimize. This new release also gets rid of a number of hacks that were previously introduced to manage token disambiguation and loops, which were a huge source of bugs. All nodes in the new state machine are indexed, and loops are described as circular state jumps. Jumps between states are realized by tail recursion calls in the generated code, which in most cases should have performance profile of goto
in C.
No more CPU melting
A case that was breaking the old Logos was using a simple \w+
regex. This is a particularly devious regex flag, since it expands to cover codepoints for every Unicode alphabet, which was then further expand into corresponding byte sequences.
Old logos produced staggering 228k lines of Rust code just for that single pattern, which then usually failed to compile after rustc consumed all available memory. That's because a single \w
produced a tree with 303 leaf nodes, which then had to be duplicated for every leaf to handle the loop, which in the end produced a monstrous tree with 91809 leaf nodes (not counting any branches leading to those).
By contrast, in the new version a single \w
produces a graph with 278 nodes total, while \w+
produces a graph with 279 nodes. That is to say, we went from n ** 2
, to n + 1
, which is a universe of a difference.
Token disambiguation
This release also improves the previously flaky token disambiguation, which is now properly defined and documented. It also leaves us with an option to provide different strategies in the future.
Future
I think the next minor/major release will do a clean-up of the API surface. Since Logos currently pollutes the attribute namespace quite a lot, using pretty generic labels like token
or callback
, it might be wise to wrap most if not all of them into #[logos(...)]
. This should help to make the crate more future-proof, and play nicer with other custom derives that you might want to put on your token enum
s.
I'm very excited to have this release out, and have a whiteboard full of ideas of what can bet tweaked to improve the performance, before even touching SIMD (which is on the horizon somewhere).
API changes:
- Derive macro now allows discriminant values to be set, as long as they are greater than 0, and smaller than the total number of variants in the enum.
- Removed
NulTermStr
support. In turn, a lot of effort has been put to increase the performance using regular&str
sources, which more than makes up for it. - Logos no longer considers nul byte (
0x00
) to terminate input. - It's now possible to define binary, non-Unicode token definitions (both as plain literals and regex). Doing so will force the lexer to use non-Unicode sources such as
&[u8]
, and will fail to compile with&str
. - It's now possible to change the default trivia (whitespace), including the option to completely disable it (more documentation will follow).
- Removed the
Split
trait. - Removed the
Lexicon
type alias.Logos::lexicon
has been replaced byLogos::lex
, which then implements all logic internally.
0.9.7
0.9.6
0.9.5
0.9.4
- Added a fixed-width multi-byte reading option that fixes some corner cases where otherwise backtracking would be needed. For example having
"."
and"..."
token definitions matching against".."
should produce two single-dot tokens.