155 Commits

Author SHA1 Message Date
Andrew Gallant
db67087198
regex-syntax-0.6.16 2020-03-02 20:16:20 -05:00
Andrew Gallant
c187cbf04a
syntax: add ClassUnicode::is_all_ascii
This mirrors the same routine on ClassBytes. This is useful when
translating an HIR to an NFA and one wants to write a fast path for the
common all ASCII case.
2020-03-02 20:15:33 -05:00
Andrew Gallant
17304c5a55
regex-syntax-0.6.15 2020-03-01 08:22:29 -05:00
Andrew Gallant
49b9a348ac
syntax/doc: fix docs for try_case_fold_simple
Its whole purpose is to not panic and instead return an error, which
matches the implementation. This fixes the docs to properly reflect
that.
2020-03-01 08:21:46 -05:00
Andrew Gallant
e6a0c55afa
syntax: add Utf8Sequence::reverse method
This is very convenient when compiling reverse UTF-8 automata.
2020-03-01 08:18:42 -05:00
Andrew Gallant
25d7c7433c
regex-syntax-0.6.14 2020-01-30 18:31:08 -05:00
Andrew Gallant
ea4009a22d syntax: fix flag scoping issue
This fixes a rather nasty bug where flags set inside a group were being
applies to expressions outside the group. e.g., In the simplest case,
`((?i)a)b)` would match `aB`, even though the case insensitive flag
_shouldn't_ be applied to `b`.

The issue here was that we were actually going out of our way to reset
the flags when a group is popped only _some_ of the time. Namely, when
flags were set via `(?i:a)b` syntax. Instead, flags should be reset to
their previous state _every_ time a group is popped in the translator.

The fix here is pretty simple. When we open a group, if the group itself
does not have any flags, then we simply record the current state of the
flags instead of trying to replace the current flags. Then, when we pop
the group, we are guaranteed to obtain the old flags, at which point, we
reset them.

Fixes #640
2020-01-30 18:28:45 -05:00
Andrew Gallant
94a58860e3
syntax: release 0.6.13 2020-01-09 14:29:15 -05:00
Jeremy Stucki
98bc9041c2 style: remove needless lifetime 2020-01-09 14:26:57 -05:00
Daniele D'Orazio
eff5348aa5 syntax: add explicit error for \p\
Fixes #594, Closes #622
2020-01-09 14:26:57 -05:00
Andrew Gallant
9ac0f5e82e deprecated: allow use of deprecated description methods
PR #633 removed these methods, but we can't do that without making a
breaking change release. Removing deprecated methods isn't worth doing a
breaking change release, so we instead simply allow them for now by
squashing the warnings.

Closes #633
2020-01-09 14:26:57 -05:00
Andrew Gallant
27c0d6d944 style: rust updated rustfmt 2020-01-09 14:26:57 -05:00
Andrew Gallant
25ae00460e
syntax: release 0.6.12 2019-09-03 12:52:18 -04:00
Andrew Gallant
8465302996 syntax: forcefully un-inline some methods
This seems to save about 12KB on the final binary size. Benchmarks
suggest that there is no meaningful runtime performance difference.
2019-09-03 12:35:17 -04:00
Andrew Gallant
7f2d2c65ca syntax: add forbid(unsafe_code)
We have a good thing going, so let's formalize it a bit.
2019-09-03 12:35:17 -04:00
Andrew Gallant
c09d9e0edc syntax: make Unicode completely optional
This commit refactors the way this library handles Unicode data by
making it completely optional. Several features are introduced which
permit callers to select only the Unicode data they need (up to a point
of granularity).

An important property of these changes is that presence of absence of
crate features will never change the match semantics of a regular
expression. Instead, the presence or absence of a crate feature can only
add or subtract from the set of all possible valid regular expressions.

So for example, if the `unicode-case` feature is disabled, then
attempting to produce `Hir` for the regex `(?i)a` will fail. Instead,
callers must use `(?i-u)a` (or enable the `unicode-case` feature).

This partially addresses #583 since it permits callers to decrease
binary size.
2019-09-03 12:35:17 -04:00
Andrew Gallant
98a7337d62 syntax/unicode: lightly refactor Perl Unicode class handling
This nominally moves the logic for acquiring Unicode-aware Perl character
classes into the `unicode` module, and also makes the calling code
robust with respect to failures.

This commit is prep work for making the availability of Unicode-aware
Perl classes optional.
2019-09-03 12:35:17 -04:00
Andrew Gallant
5204ee424f script: tweak generate-unicode-tables
This makes sure the generated tables are rustfmt'd.
2019-09-03 12:35:17 -04:00
Andrew Gallant
29f39b8721
syntax: add PartialOrd/Ord to UTF-8 types 2019-08-22 18:05:19 -04:00
Andrew Gallant
169783c1d6
syntax: release 0.6.11 2019-08-03 16:10:47 -04:00
Andrew Gallant
b4c67cb80c syntax: drop ucd_util dependency
This one was a bit hard to swallow because it involved copying a
fairly short but not terribly simple function for normalizing property
names/values. But the code is so small, changes rarely, and is easily
tested, that it's just not worth bringing in a whole dependency for it
given how big regex-syntax already is.
2019-08-03 16:09:49 -04:00
Andrew Gallant
caa075f653 syntax: absorb utf8-ranges crate
This commit brings the utf8-ranges crate into regex-syntax as a utf8
sub-module.

This was done because it was observed that utf8-ranges is effectively
unused outside the context of regex-syntax. It is a very small amount of
code, and fits alongside the rest of regex-syntax. In particular, anyone
building a regex engine using regex-syntax will likely need this code
anyway.
2019-08-03 16:09:49 -04:00
Andrew Gallant
fc3e6aa19a
license: remove license headers from files
The Rust project determined these were unnecessary a while back[1,2,3]
and we follow suite.

[1] - 0565653eec
[2] - https://github.com/rust-lang/rust/pull/43498
[3] - https://github.com/rust-lang/rust/pull/57108
2019-08-03 14:47:45 -04:00
Andrew Gallant
0e96af4166
style: start using rustfmt 2019-08-03 14:20:22 -04:00
Andrew Gallant
341f207c10
regex-syntax-0.6.10 2019-07-20 23:01:44 -04:00
Andrew Gallant
dc111a5f19
syntax: update Unicode ages lookup
This was a missed fix for the Unicode 12.1 update.
2019-07-20 23:01:23 -04:00
Andrew Gallant
0c57ea14ea
syntax: release 0.6.9 2019-07-20 22:46:46 -04:00
Andrew Gallant
3124a3b2ca
syntax: update to Unicode 12.1 2019-07-20 22:45:39 -04:00
Andrew Gallant
918350a59b
msrv: bump to Rust 1.28
Rust 1.28 is almost a year old by this point, and there were a number of
nice stabilizations between 1.24 and 1.28. Notably, vendor intrinsics were
stabilized in Rust 1.26, so we no longer need a build script.
2019-07-20 22:35:18 -04:00
Gurwinder Singh
dfe0dc6493 syntax/doc: fix typo 2019-07-14 08:04:21 -04:00
Andrew Gallant
62b7b508fa
regex-syntax-0.6.8 2019-07-06 09:16:20 -04:00
Andrew Gallant
886a7e7185
syntax: move error test to syntax crate
The problem with putting it in the regex crate proper is that it
requires the regex crate to bump its minimal regex-syntax crate version.
While this isn't necessarily an issue, since we can't enable Cargo's
minimal version check because of the `rand` dependency, this winds up
being a hazard. Plus, having it in the regex crate doesn't buy us too
much. It's just as well to have the tests in regex-syntax.

Fixes #593
2019-07-06 09:15:11 -04:00
Christian Rondeau
172898a4fd syntax: better errors missing repetition quantifier
This change causes a better error message to surface when
a repetition quantifier is used with a missing number.

Closes #545
2019-06-11 07:45:27 -04:00
Andrew Gallant
3ffe9a20b8
regex-syntax-0.6.7 2019-06-09 08:57:15 -04:00
Andrew Gallant
53270d8232
syntax: fix warnings
The language team is getting deprecation-happy with old syntax. But Rust
1.24.1 doesn't support inclusive range syntax, so we forcefully allow
it.
2019-06-09 08:49:06 -04:00
Andrew Gallant
89074f87d0
1.1.3 2019-03-30 10:53:01 -04:00
Andrew Gallant
231643248b syntax: fix bug when parsing ((?x))
This fixes yet another bug with our handling of (?flags) directives in
the regex. This time, we try to be a bit more principled and
specifically treat a (?flags) directive as a valid empty sub-expression.
While this means we could remove errors reported from previous fixes for
things like `(?i)+`, we retain those for now since they are a bit weird.
Although `((?i))+` is now allowed, which is equivalent. We should
probably allow `(?i)+` in the future for consistency sake.

Fixes #527
2019-03-30 10:47:45 -04:00
Andrew Gallant
7b1599f2f6 syntax: fix counted repetition bug
This fixes a bug where the HIR translator would panic on regexes such as
`(?i){1}` since it assumes that every repetition operator has a valid
sub-expression, and `(?i)` is not actually a sub-expression (but is more
like a directive instead).

Previously, we fixed this same bug for *uncounted* repetitions in commit
17764ffe (for bug #465), but we did not fix it for counted repetitions.
We apply the same fix here.

Fixes #555
2019-03-30 10:47:45 -04:00
Andrew Gallant
bd5f2b4be5 syntax: add is_literal and is_alternation_literal
This adds a couple new methods on HIR expressions for determining whether
they are literals or not. This is useful for determining whether to apply
optimizations such as Aho-Corasick without re-analyzing the syntax.
2019-03-30 08:18:19 -04:00
Andrew Gallant
60d087a230
regex-syntax-0.6.5 2019-01-26 11:14:37 -05:00
Andrew Gallant
0fc24d275a
syntax: add is_line_anchored_{start,end}
This commit adds two new predicates to `Hir` values that permit querying
whether an expression is *line* anchored at the start or end.

This was motivated by a desire to tweak the offsets of a match when
enabling --crlf mode in ripgrep.
2019-01-26 11:14:27 -05:00
Andrew Gallant
b77e3fca8a
regex-syntax-0.6.4 2018-11-30 22:05:18 -05:00
Daniel Holbert
e214d8cd88 doc: Fix typo in comment ("ocassionally")
PR #515
2018-11-30 20:02:29 -05:00
Andrew Gallant
ecc1a5a70d syntax: add emoji and break properties
This commit adds several emoji properties such as Emoji and
Extended_Pictographic. We also add support for the Grapheme_Cluster_Break,
Word_Break and Sentence_Break enumeration properties.
2018-11-30 20:00:49 -05:00
Andrew Gallant
770edd59b2
regex-syntax-0.6.3 2018-11-07 17:20:08 -05:00
Derek Gonyeo
ce4154365f syntax/license: add the unicode license for unicode-tables
Add the Unicode license to the unicode-tables directory, as the data
there comes from the Unicode Consortium.

Fixes #530
2018-11-07 17:19:51 -05:00
kennytm
5241919f48 syntax: fix [[:blank:]] character class
Ensure `[[:blank:]]` only matches `[ \t]`. It appears that there was
a transcription error when `regex-syntax` was rewritten such that
`[[:blank:]]` ended up matching more than it was supposed to.

Fixes #533
2018-10-29 08:24:15 -04:00
Andrew Gallant
8421c9ae85
regex-syntax 0.6.2 2018-07-18 09:24:25 -04:00
Andrew Gallant
24c7770b80
syntax: fix printing bug for HIR
This commit fixes a bug in the HIR printer where it would not correctly
escape meta characters in character classes.
2018-07-18 09:15:27 -04:00
Andrew Gallant
7ebe4ae02d
syntax: update docs to reflect behavior
This updates the documentation on `allow_invalid_utf8` to reflect the
current behavior of the translator. The old documentation was describing
the behavior of regex-syntax 0.5, but it was changed in regex-syntax
0.6.
2018-07-18 09:14:26 -04:00