]>
Commit | Line | Data |
---|---|---|
83b5d2f5 JH |
1 | #ifndef GREP_H |
2 | #define GREP_H | |
7e8f59d5 | 3 | #include "color.h" |
3485bea1 | 4 | #ifdef USE_LIBPCRE1 |
63e7e9d8 | 5 | #include <pcre.h> |
ad7c543e CMAB |
6 | #ifndef PCRE_NO_UTF8_CHECK |
7 | #define PCRE_NO_UTF8_CHECK 0 | |
8 | #endif | |
63e7e9d8 MK |
9 | #else |
10 | typedef int pcre; | |
11 | typedef int pcre_extra; | |
12 | #endif | |
94da9193 ÆAB |
13 | #ifdef USE_LIBPCRE2 |
14 | #define PCRE2_CODE_UNIT_WIDTH 8 | |
15 | #include <pcre2.h> | |
16 | #else | |
17 | typedef int pcre2_code; | |
18 | typedef int pcre2_match_data; | |
19 | typedef int pcre2_compile_context; | |
94da9193 | 20 | #endif |
0579f91d | 21 | #include "thread-utils.h" |
94ad9d9e | 22 | #include "userdiff.h" |
83b5d2f5 | 23 | |
38bbc2ea NTND |
24 | struct repository; |
25 | ||
83b5d2f5 JH |
26 | enum grep_pat_token { |
27 | GREP_PATTERN, | |
480c1ca6 JH |
28 | GREP_PATTERN_HEAD, |
29 | GREP_PATTERN_BODY, | |
83b5d2f5 JH |
30 | GREP_AND, |
31 | GREP_OPEN_PAREN, | |
32 | GREP_CLOSE_PAREN, | |
33 | GREP_NOT, | |
4b05548f | 34 | GREP_OR |
83b5d2f5 JH |
35 | }; |
36 | ||
480c1ca6 JH |
37 | enum grep_context { |
38 | GREP_CONTEXT_HEAD, | |
4b05548f | 39 | GREP_CONTEXT_BODY |
480c1ca6 JH |
40 | }; |
41 | ||
a4d7d2c6 | 42 | enum grep_header_field { |
3ce3ffb8 AP |
43 | GREP_HEADER_FIELD_MIN = 0, |
44 | GREP_HEADER_AUTHOR = GREP_HEADER_FIELD_MIN, | |
ad4813b3 | 45 | GREP_HEADER_COMMITTER, |
72fd13f7 | 46 | GREP_HEADER_REFLOG, |
ad4813b3 NTND |
47 | |
48 | /* Must be at the end of the enum */ | |
49 | GREP_HEADER_FIELD_MAX | |
a4d7d2c6 JH |
50 | }; |
51 | ||
fa151dc5 NTND |
52 | enum grep_color { |
53 | GREP_COLOR_CONTEXT, | |
54 | GREP_COLOR_FILENAME, | |
55 | GREP_COLOR_FUNCTION, | |
56 | GREP_COLOR_LINENO, | |
d036d667 | 57 | GREP_COLOR_COLUMNNO, |
fa151dc5 NTND |
58 | GREP_COLOR_MATCH_CONTEXT, |
59 | GREP_COLOR_MATCH_SELECTED, | |
60 | GREP_COLOR_SELECTED, | |
61 | GREP_COLOR_SEP, | |
62 | NR_GREP_COLORS | |
63 | }; | |
64 | ||
83b5d2f5 JH |
65 | struct grep_pat { |
66 | struct grep_pat *next; | |
67 | const char *origin; | |
68 | int no; | |
69 | enum grep_pat_token token; | |
526a858a | 70 | char *pattern; |
ed40a095 | 71 | size_t patternlen; |
a4d7d2c6 | 72 | enum grep_header_field field; |
83b5d2f5 | 73 | regex_t regexp; |
6d4b5747 ÆAB |
74 | pcre *pcre1_regexp; |
75 | pcre_extra *pcre1_extra_info; | |
76 | const unsigned char *pcre1_tables; | |
fbaceaac | 77 | int pcre1_jit_on; |
94da9193 ÆAB |
78 | pcre2_code *pcre2_pattern; |
79 | pcre2_match_data *pcre2_match_data; | |
80 | pcre2_compile_context *pcre2_compile_context; | |
10da030a | 81 | const uint8_t *pcre2_tables; |
94da9193 | 82 | uint32_t pcre2_jit_on; |
c822255c | 83 | unsigned fixed:1; |
09872f64 | 84 | unsigned is_fixed:1; |
5183bf67 | 85 | unsigned ignore_case:1; |
d7eb527d | 86 | unsigned word_regexp:1; |
83b5d2f5 JH |
87 | }; |
88 | ||
89 | enum grep_expr_node { | |
90 | GREP_NODE_ATOM, | |
91 | GREP_NODE_NOT, | |
92 | GREP_NODE_AND, | |
5aaeb733 | 93 | GREP_NODE_TRUE, |
4b05548f | 94 | GREP_NODE_OR |
83b5d2f5 JH |
95 | }; |
96 | ||
84befcd0 S |
97 | enum grep_pattern_type { |
98 | GREP_PATTERN_TYPE_UNSPECIFIED = 0, | |
99 | GREP_PATTERN_TYPE_BRE, | |
100 | GREP_PATTERN_TYPE_ERE, | |
101 | GREP_PATTERN_TYPE_FIXED, | |
102 | GREP_PATTERN_TYPE_PCRE | |
103 | }; | |
104 | ||
83b5d2f5 JH |
105 | struct grep_expr { |
106 | enum grep_expr_node node; | |
0ab7befa | 107 | unsigned hit; |
83b5d2f5 JH |
108 | union { |
109 | struct grep_pat *atom; | |
110 | struct grep_expr *unary; | |
111 | struct { | |
112 | struct grep_expr *left; | |
113 | struct grep_expr *right; | |
114 | } binary; | |
115 | } u; | |
116 | }; | |
117 | ||
118 | struct grep_opt { | |
119 | struct grep_pat *pattern_list; | |
120 | struct grep_pat **pattern_tail; | |
80235ba7 JH |
121 | struct grep_pat *header_list; |
122 | struct grep_pat **header_tail; | |
83b5d2f5 | 123 | struct grep_expr *pattern_expression; |
38bbc2ea | 124 | struct repository *repo; |
493b7a08 | 125 | const char *prefix; |
83b5d2f5 JH |
126 | int prefix_length; |
127 | regex_t regexp; | |
3e230fa1 | 128 | int linenum; |
017c0fcf | 129 | int columnnum; |
3e230fa1 | 130 | int invert; |
5183bf67 | 131 | int ignore_case; |
3e230fa1 RS |
132 | int status_only; |
133 | int name_only; | |
134 | int unmatch_name_only; | |
135 | int count; | |
136 | int word_regexp; | |
137 | int fixed; | |
138 | int all_match; | |
17bf35a3 | 139 | int debug; |
83b5d2f5 JH |
140 | #define GREP_BINARY_DEFAULT 0 |
141 | #define GREP_BINARY_NOMATCH 1 | |
142 | #define GREP_BINARY_TEXT 2 | |
3e230fa1 | 143 | int binary; |
335ec3bf | 144 | int allow_textconv; |
3e230fa1 | 145 | int extended; |
baa6378f | 146 | int use_reflog_filter; |
6d4b5747 | 147 | int pcre1; |
94da9193 | 148 | int pcre2; |
3e230fa1 RS |
149 | int relative; |
150 | int pathname; | |
151 | int null_following_name; | |
9d8db06e | 152 | int only_matching; |
7e8f59d5 | 153 | int color; |
a91f453f | 154 | int max_depth; |
2944e4e6 | 155 | int funcname; |
ba8ea749 | 156 | int funcbody; |
84befcd0 S |
157 | int extended_regexp_option; |
158 | int pattern_type_option; | |
44570188 | 159 | int ignore_locale; |
fa151dc5 | 160 | char colors[NR_GREP_COLORS][COLOR_MAXLEN]; |
83b5d2f5 JH |
161 | unsigned pre_context; |
162 | unsigned post_context; | |
5dd06d38 | 163 | unsigned last_shown; |
046802d0 | 164 | int show_hunk_mark; |
a8f0e764 | 165 | int file_break; |
1d84f72e | 166 | int heading; |
60ecac98 | 167 | void *priv; |
5b594f45 FK |
168 | |
169 | void (*output)(struct grep_opt *opt, const void *data, size_t size); | |
170 | void *output_priv; | |
83b5d2f5 JH |
171 | }; |
172 | ||
55454427 DL |
173 | void init_grep_defaults(struct repository *); |
174 | int grep_config(const char *var, const char *value, void *); | |
175 | void grep_init(struct grep_opt *, struct repository *repo, const char *prefix); | |
513f2b0b | 176 | void grep_destroy(void); |
c5c31d33 | 177 | void grep_commit_pattern_type(enum grep_pattern_type, struct grep_opt *opt); |
7687a054 | 178 | |
55454427 DL |
179 | void append_grep_pat(struct grep_opt *opt, const char *pat, size_t patlen, const char *origin, int no, enum grep_pat_token t); |
180 | void append_grep_pattern(struct grep_opt *opt, const char *pat, const char *origin, int no, enum grep_pat_token t); | |
181 | void append_header_grep_pattern(struct grep_opt *, enum grep_header_field, const char *); | |
182 | void compile_grep_patterns(struct grep_opt *opt); | |
183 | void free_grep_patterns(struct grep_opt *opt); | |
184 | int grep_buffer(struct grep_opt *opt, char *buf, unsigned long size); | |
83b5d2f5 | 185 | |
e1327023 JK |
186 | struct grep_source { |
187 | char *name; | |
188 | ||
189 | enum grep_source_type { | |
1c41c82b | 190 | GREP_SOURCE_OID, |
e1327023 JK |
191 | GREP_SOURCE_FILE, |
192 | GREP_SOURCE_BUF, | |
193 | } type; | |
194 | void *identifier; | |
195 | ||
196 | char *buf; | |
197 | unsigned long size; | |
94ad9d9e | 198 | |
55c61688 | 199 | char *path; /* for attribute lookups */ |
94ad9d9e | 200 | struct userdiff_driver *driver; |
e1327023 JK |
201 | }; |
202 | ||
203 | void grep_source_init(struct grep_source *gs, enum grep_source_type type, | |
55c61688 NTND |
204 | const char *name, const char *path, |
205 | const void *identifier); | |
e1327023 JK |
206 | void grep_source_clear_data(struct grep_source *gs); |
207 | void grep_source_clear(struct grep_source *gs); | |
acd00ea0 NTND |
208 | void grep_source_load_driver(struct grep_source *gs, |
209 | struct index_state *istate); | |
07a7d656 | 210 | |
e1327023 JK |
211 | |
212 | int grep_source(struct grep_opt *opt, struct grep_source *gs); | |
213 | ||
55454427 DL |
214 | struct grep_opt *grep_opt_dup(const struct grep_opt *opt); |
215 | int grep_threads_ok(const struct grep_opt *opt); | |
5b594f45 | 216 | |
0579f91d TR |
217 | /* |
218 | * Mutex used around access to the attributes machinery if | |
219 | * opt->use_threads. Must be initialized/destroyed by callers! | |
220 | */ | |
78db6ea9 | 221 | extern int grep_use_locks; |
0579f91d | 222 | extern pthread_mutex_t grep_attr_mutex; |
b3aeb285 | 223 | |
83b5d2f5 | 224 | #endif |