summaryrefslogtreecommitdiffstats
path: root/src/shared/pcre2-util.h
blob: 27e2b02f7dd33b2c2e6ed6591254706dbf5244bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once

#include "hash-funcs.h"
#include "macro.h"

#if HAVE_PCRE2

#include "dlfcn-util.h"

#define PCRE2_CODE_UNIT_WIDTH 8
#include <pcre2.h>

DLSYM_PROTOTYPE(pcre2_match_data_create);
DLSYM_PROTOTYPE(pcre2_match_data_free);
DLSYM_PROTOTYPE(pcre2_code_free);
DLSYM_PROTOTYPE(pcre2_compile);
DLSYM_PROTOTYPE(pcre2_get_error_message);
DLSYM_PROTOTYPE(pcre2_match);
DLSYM_PROTOTYPE(pcre2_get_ovector_pointer);

DEFINE_TRIVIAL_CLEANUP_FUNC_FULL(pcre2_match_data*, sym_pcre2_match_data_free, NULL);
DEFINE_TRIVIAL_CLEANUP_FUNC_FULL(pcre2_code*, sym_pcre2_code_free, NULL);
#else

typedef struct {} pcre2_code;

#endif

extern const struct hash_ops pcre2_code_hash_ops_free;

typedef enum {
        PATTERN_COMPILE_CASE_AUTO,
        PATTERN_COMPILE_CASE_SENSITIVE,
        PATTERN_COMPILE_CASE_INSENSITIVE,
        _PATTERN_COMPILE_CASE_MAX,
        _PATTERN_COMPILE_CASE_INVALID = -EINVAL,
} PatternCompileCase;

int pattern_compile_and_log(const char *pattern, PatternCompileCase case_, pcre2_code **ret);
int pattern_matches_and_log(pcre2_code *compiled_pattern, const char *message, size_t size, size_t *ret_ovec);
void *pattern_free(pcre2_code *p);

DEFINE_TRIVIAL_CLEANUP_FUNC(pcre2_code*, pattern_free);

int dlopen_pcre2(void);