summaryrefslogtreecommitdiff
path: root/Libraries/LibRegex
AgeCommit message (Collapse)Author
2020-12-31Everywhere: Fix more typosLuke
2020-12-28LibRegex: Fail early if eof seen after '(?'AnotherTest
Fixes #4583.
2020-12-27AK: Use direct-list-initialization for Vector::empend() (#4564)Nathan Lanza
clang trunk with -std=c++20 doesn't seem to properly look for an aggregate initializer here when the type being constructed is a simple aggregate (e.g. `struct Thing { int a; int b; };`). This template fails to compile in a usage added 12/16/2020 in `AK/Trie.h`. Both forms of initialization are supposed to call the aggregate-initializers but direct-list-initialization delegating to aggregate initializers is a new addition in c++20 that might not be implemented yet.
2020-12-08LibRegex: Add a basic Regex<...>::replace()AnotherTest
2020-12-06LibRegex: Add basic support for unicode escapes in ECMA262ParserAnotherTest
This parses unicode escapes (and matches them only for utf8 strings).
2020-12-06LibRegex: Remove Lexer::slice_back() and just use StringViewsAnotherTest
2020-12-06LibRegex: Store 'String' matches inside the bytecodeAnotherTest
Also removes an unnecessary 'length' argument (StringView has a length!)
2020-12-03LibRegex: Fix assertion when parsing '(?'AnotherTest
Found by oss-fuzz: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=28186&q=label%3AProj-serenity
2020-11-30LibRegex: Don't try to consume the escaped character if at EOFAnotherTest
Fixes assert on e.g. `new RegExp("\\")`
2020-11-30LibRegex: Give the bytecode a chance to run when there's no inputAnotherTest
Fixes #4246 Also adds a test case.
2020-11-30LibRegex: Fix OOB access in Regex debug printAnotherTest
2020-11-30LibRegex: Add bounds check to Lexer::back()Linus Groh
If the offset is zero and we're already at the end of the lexer's input an out of bounds read (m_source[m_position]) would occur. Also check that the offset is not more than m_position (which should never be the case, and would result in m_position underflowing). Fixes #4253.
2020-11-29LibRegex: Use match_ordinary_characters() in ECMA262Parser::parse_atom()Linus Groh
Otherwise we would only match TokenType::Char, making all of these invalid: - /foo,bar/ - /foo\/bar/ - /foo=bar/ - /foo-bar/ - /foo:bar/ Fixes #4243.
2020-11-29LibRegex: Allow syntax characters (except ']') without escapes in classesAnotherTest
e.g. `[:]`
2020-11-29LibRegex: Fix clang build errorsLinus Groh
2020-11-28LibRegex: Remove trailing newline from error_string()Linus Groh
2020-11-28LibRegex: Don't print error message in Regex constructorLinus Groh
It should be up to the caller to decide what to do when parsing of the pattern fails.
2020-11-28LibRegex: Allow '-' as the last element of a charclassAnotherTest
Fixes #4189.
2020-11-28LibRegex: Allow unknown escapes in non-unicode mode (for ECMA262)AnotherTest
This makes regexps like `/\x/` to work as normal. Partially deals with #4189.
2020-11-28LibRegex: Fix parsing identity escape sequencesAnotherTest
Also fixes the propagation of default options (the previous implementation reset them to zero before parsing...). Partially deals with #4189.
2020-11-28LibRegex: Stop trying to read a character class when no tokens remainAnotherTest
e.g. in "[". Fixes #4186.
2020-11-27LibJS: Hook up Regex<ECMA262> to RegExpObject and implement `test()'AnotherTest
This makes RegExpObject compile and store a Regex<ECMA262>, adds all flag-related properties, and implements `RegExpPrototype.test()` (complete with 'lastIndex' support) :^) It should be noted that this only implements `test()' using the builtin `exec()'.
2020-11-27LibRegex: Fix reported compare-against value in debugAnotherTest
2020-11-27LibRegex: Implement an ECMA262-compatible parserAnotherTest
This also adds support for lookarounds and individually-negated comparisons. The only unimplemented part of the parser spec is the unicode stuff.
2020-11-27LibRegex: Change bytecode value type to a 64-bit valueAnotherTest
To allow storing unicode ranges compactly; this is not utilised at the moment, but changing this later would've been significantly more difficult. Also fixes a few debug logs.
2020-11-27LibRegex: Fix greedy/reluctant modifiers in PosixExtendedParserAnotherTest
Also fixes the issue with assertions causing early termination when they fail.
2020-11-27LibRegex: Remove backup file, remove BOM in RegexParser.cpp, run clang-formatEmanuel Sprung
2020-11-27LibRegex: Add RegexStringView wrapper to support utf8 and utf32 viewsEmanuel Sprung
2020-11-27LibRegex: Add a regular expression libraryEmanuel Sprung
This commit is a mix of several commits, squashed into one because the commits before 'Move regex to own Library and fix all the broken stuff' were not fixable in any elegant way. The commits are listed below for "historical" purposes: - AK: Add options/flags and Errors for regular expressions Flags can be provided for any possible flavour by adding a new scoped enum. Handling of flags is done by templated Options class and the overloaded '|' and '&' operators. - AK: Add Lexer for regular expressions The lexer parses the input and extracts tokens needed to parse a regular expression. - AK: Add regex Parser and PosixExtendedParser This patchset adds a abstract parser class that can be derived to implement different parsers. A parser produces bytecode to be executed within the regex matcher. - AK: Add regex matcher This patchset adds an regex matcher based on the principles of the T-REX VM. The bytecode pruduced by the respective Parser is put into the matcher and the VM will recursively execute the bytecode according to the available OpCodes. Possible improvement: the recursion could be replaced by multi threading capabilities. To match a Regular expression, e.g. for the Posix standard regular expression matcher use the following API: ``` Pattern<PosixExtendedParser> pattern("^.*$"); auto result = pattern.match("Well, hello friends!\nHello World!"); // Match whole needle EXPECT(result.count == 1); EXPECT(result.matches.at(0).view.starts_with("Well")); EXPECT(result.matches.at(0).view.end() == "!"); result = pattern.match("Well, hello friends!\nHello World!", PosixFlags::Multiline); // Match line by line EXPECT(result.count == 2); EXPECT(result.matches.at(0).view == "Well, hello friends!"); EXPECT(result.matches.at(1).view == "Hello World!"); EXPECT(pattern.has_match("Well,....")); // Just check if match without a result, which saves some resources. ``` - AK: Rework regex to work with opcodes objects This patchsets reworks the matcher to work on a more structured base. For that an abstract OpCode class and derived classes for the specific OpCodes have been added. The respective opcode logic is contained in each respective execute() method. - AK: Add benchmark for regex - AK: Some optimization in regex for runtime and memory - LibRegex: Move regex to own Library and fix all the broken stuff Now regex works again and grep utility is also in place for testing. This commit also fixes the use of regex.h in C by making `regex_t` an opaque (-ish) type, which makes its behaviour consistent between C and C++ compilers. Previously, <regex.h> would've blown C compilers up, and even if it didn't, would've caused a leak in C code, and not in C++ code (due to the existence of `OwnPtr` inside the struct). To make this whole ordeal easier to deal with (for now), this pulls the definitions of `reg*()` into LibRegex. pros: - The circular dependency between LibC and LibRegex is broken - Eaiser to test (without accidentally pulling in the host's libc!) cons: - Using any of the regex.h functions will require the user to link -lregex - The symbols will be missing from libc, which will be a big surprise down the line (especially with shared libs). Co-Authored-By: Ali Mohammad Pur <ali.mpfard@gmail.com>