2021-01-12 21:04:43 -08:00
|
|
|
//
|
2021-01-15 19:30:21 -08:00
|
|
|
// match.h - Header file for BP virtual machine.
|
2021-01-12 21:04:43 -08:00
|
|
|
//
|
2022-11-07 19:54:59 -08:00
|
|
|
#pragma once
|
2020-09-11 01:28:06 -07:00
|
|
|
|
2021-01-18 10:30:17 -08:00
|
|
|
#include <stdbool.h>
|
2020-12-27 19:48:52 -08:00
|
|
|
#include <stdio.h>
|
2022-05-14 11:31:34 -07:00
|
|
|
#include <sys/types.h>
|
2020-12-27 19:48:52 -08:00
|
|
|
|
2021-09-23 15:15:48 -07:00
|
|
|
#include "pattern.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// Pattern matching result object
|
|
|
|
//
|
2024-05-29 10:14:35 -07:00
|
|
|
typedef struct bp_match_s bp_match_t;
|
|
|
|
struct bp_match_s {
|
2021-09-23 15:15:48 -07:00
|
|
|
// Where the match starts and ends (end is after the last character)
|
|
|
|
const char *start, *end;
|
2024-05-29 10:12:34 -07:00
|
|
|
bp_pat_t *pat;
|
2021-10-01 16:20:34 -07:00
|
|
|
// Intrusive linked list node for garbage collection:
|
|
|
|
struct {
|
2024-05-29 10:14:35 -07:00
|
|
|
bp_match_t **home, *next;
|
2021-10-01 16:20:34 -07:00
|
|
|
} gc;
|
2024-05-29 10:14:35 -07:00
|
|
|
bp_match_t **children;
|
|
|
|
bp_match_t *_children[3];
|
|
|
|
};
|
2020-09-11 01:28:06 -07:00
|
|
|
|
2022-10-27 10:24:35 -07:00
|
|
|
typedef void (*bp_errhand_t)(char **err_msg);
|
2022-05-14 13:01:37 -07:00
|
|
|
|
2022-10-27 09:49:31 -07:00
|
|
|
__attribute__((nonnull))
|
2024-05-29 10:14:35 -07:00
|
|
|
void recycle_match(bp_match_t **at_m);
|
2022-10-27 09:49:31 -07:00
|
|
|
size_t free_all_matches(void);
|
|
|
|
size_t recycle_all_matches(void);
|
2024-05-29 10:14:35 -07:00
|
|
|
bool next_match(bp_match_t **m, const char *start, const char *end, bp_pat_t *pat, bp_pat_t *defs, bp_pat_t *skip, bool ignorecase);
|
2022-10-27 09:49:31 -07:00
|
|
|
#define stop_matching(m) next_match(m, NULL, NULL, NULL, NULL, NULL, 0)
|
2022-10-27 10:17:23 -07:00
|
|
|
bp_errhand_t bp_set_error_handler(bp_errhand_t handler);
|
2021-09-22 20:44:01 -07:00
|
|
|
__attribute__((nonnull))
|
2024-05-29 10:14:35 -07:00
|
|
|
bp_match_t *get_numbered_capture(bp_match_t *m, int n);
|
2021-09-22 20:44:01 -07:00
|
|
|
__attribute__((nonnull, pure))
|
2024-05-29 10:14:35 -07:00
|
|
|
bp_match_t *get_named_capture(bp_match_t *m, const char *name, ssize_t namelen);
|
2021-09-21 18:45:43 -07:00
|
|
|
|
2021-08-28 16:05:30 -07:00
|
|
|
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0
|