Commit Graph

37 Commits

Author SHA1 Message Date
c234c92eeb Remove printf.h dependency 2025-03-03 15:50:59 -05:00
da067957c8 Rename match_t -> bp_match_t 2024-05-29 13:14:35 -04:00
f271863601 Rename 'pat_t' -> 'bp_pat_t' 2024-05-29 13:12:34 -04:00
1597b34a95 Move more non-public macros out of header 2024-05-28 02:06:38 -04:00
2ec9f76b72 Rename 'Match' macro to avoid confusion 2024-05-28 02:05:57 -04:00
5f49677d76 Bugfix for string literals and add support for printing patterns with
--verbose
2024-02-11 16:46:07 -05:00
6f5bb02b92 Use tagged union style for extra safety and concision 2023-05-06 13:43:32 -04:00
3ed2c19594 Use #pragma once 2022-11-07 22:54:59 -05:00
9e07e08a48 Microoptimizations 2022-10-26 13:38:38 -04:00
d62fd1eb96 Lib install stuff 2022-05-14 14:31:34 -04:00
56da250d69 Split backref/named captures into separate concepts for performance
reasons.
2022-05-12 12:11:28 -04:00
af668004e8 Updated Make rules so default is bp 2022-05-02 17:25:18 -04:00
206e1fa68f Added tagged definitions: foo:: blah 2022-04-30 15:23:02 -04:00
24ed834317 Simplified things by passing a def argument to next_match instead of
chaining defs together. Also simplified `..` by just using a lookahead
instead of retconning it. Immutability invariants are now enforced
better.
2022-04-30 14:19:08 -04:00
ef07c8a22e Made NULL end values default to strlen() 2022-04-21 12:54:09 -04:00
486fe98a9c Fix for left recursion error due to wrong context 2021-10-02 12:38:42 -07:00
911827fac3 Removed definitions as a separate type and instead encode that value in
the patterns themselves. This simplifies memory management a lot and
speeds up performance.
2021-09-27 20:36:10 -07:00
77d9007a88 Refactor of pat_t memory management to use doubly linked lists, and
moving the recursive freeing code from Lua/lbp.c into pattern.c
2021-09-26 13:12:02 -07:00
c81601729e Patterns no longer need files.h 2021-09-23 15:42:50 -07:00
ce915a5433 Patterns don't need to reference a separate start value anymore 2021-09-23 15:40:45 -07:00
fac3fd9772 Moving pattern lifetime tracking off of files and onto its own list of
allocated pats.
2021-09-23 15:24:08 -07:00
8e1e6572fe Moved type defs into their own files instead of types.h 2021-09-23 15:15:48 -07:00
d20afd10b6 API update: made new_pat() internal and added public bp_backref() to
cover that use case
2021-09-23 14:55:30 -07:00
89c5888dd6 Switched to using an optional type 2021-09-23 14:38:46 -07:00
90c3c13a02 Moving cache logic into match, cleaner next_match() API, and slightly
less tightly coupled UTF8 API
2021-09-21 18:45:43 -07:00
f8860c385e Style change: added cino=:0 (i.e. case statements on same indentation as
switch). Also fixed issue where $$ would fail to match with trailing
newline on file
2021-08-28 16:05:30 -07:00
994c9c973e Changed how definitions work 2021-08-01 12:40:27 -07:00
655ed12128 Mostly working version 2021-05-20 15:27:24 -07:00
b09bd4c746 Code cleanup: adding len parameter to new_pat() 2021-05-11 00:19:52 -07:00
17dbe5d9e8 Added {word} feature and cleaned up the code some. 2021-05-10 23:46:46 -07:00
c46a8227d0 Added --skip flag for skipping over patterns 2021-01-20 16:12:46 -08:00
16c401fbbb Simplified code by disallowing escapes in strings and splitting
stringpatterns into chunks (so unescaped versions don't need to be
created)
2021-01-19 21:35:34 -08:00
eece8c8556 More static analyzer cleanup, including switching to use bools where
appropriate and EXIT_SUCESS/EXIT_FAILURE
2021-01-18 10:30:17 -08:00
3ededef53d Static analysis part 1 2021-01-18 09:15:25 -08:00
3cc645f2d0 Improved argument parsing and added support for prompting user for a
pattern if none is provided
2021-01-17 13:33:10 -08:00
3d3a73e18c Moved pattern code into the right file 2021-01-15 19:39:28 -08:00
44573fc224 Rename compiler -> pattern 2021-01-15 19:32:37 -08:00