6 #ifndef PCRE_NO_UTF8_CHECK
7 #define PCRE_NO_UTF8_CHECK 0
11 typedef int pcre_extra
;
14 #define PCRE2_CODE_UNIT_WIDTH 8
17 typedef int pcre2_code
;
18 typedef int pcre2_match_data
;
19 typedef int pcre2_compile_context
;
21 #include "thread-utils.h"
42 enum grep_header_field
{
43 GREP_HEADER_FIELD_MIN
= 0,
44 GREP_HEADER_AUTHOR
= GREP_HEADER_FIELD_MIN
,
45 GREP_HEADER_COMMITTER
,
48 /* Must be at the end of the enum */
58 GREP_COLOR_MATCH_CONTEXT
,
59 GREP_COLOR_MATCH_SELECTED
,
66 struct grep_pat
*next
;
69 enum grep_pat_token token
;
72 enum grep_header_field field
;
75 pcre_extra
*pcre1_extra_info
;
76 const unsigned char *pcre1_tables
;
78 pcre2_code
*pcre2_pattern
;
79 pcre2_match_data
*pcre2_match_data
;
80 pcre2_compile_context
*pcre2_compile_context
;
81 uint32_t pcre2_jit_on
;
84 unsigned ignore_case
:1;
85 unsigned word_regexp
:1;
96 enum grep_pattern_type
{
97 GREP_PATTERN_TYPE_UNSPECIFIED
= 0,
98 GREP_PATTERN_TYPE_BRE
,
99 GREP_PATTERN_TYPE_ERE
,
100 GREP_PATTERN_TYPE_FIXED
,
101 GREP_PATTERN_TYPE_PCRE
105 enum grep_expr_node node
;
108 struct grep_pat
*atom
;
109 struct grep_expr
*unary
;
111 struct grep_expr
*left
;
112 struct grep_expr
*right
;
118 struct grep_pat
*pattern_list
;
119 struct grep_pat
**pattern_tail
;
120 struct grep_pat
*header_list
;
121 struct grep_pat
**header_tail
;
122 struct grep_expr
*pattern_expression
;
123 struct repository
*repo
;
133 int unmatch_name_only
;
139 #define GREP_BINARY_DEFAULT 0
140 #define GREP_BINARY_NOMATCH 1
141 #define GREP_BINARY_TEXT 2
145 int use_reflog_filter
;
150 int null_following_name
;
156 int extended_regexp_option
;
157 int pattern_type_option
;
159 char colors
[NR_GREP_COLORS
][COLOR_MAXLEN
];
160 unsigned pre_context
;
161 unsigned post_context
;
168 void (*output
)(struct grep_opt
*opt
, const void *data
, size_t size
);
172 void init_grep_defaults(struct repository
*);
173 int grep_config(const char *var
, const char *value
, void *);
174 void grep_init(struct grep_opt
*, struct repository
*repo
, const char *prefix
);
175 void grep_commit_pattern_type(enum grep_pattern_type
, struct grep_opt
*opt
);
177 void append_grep_pat(struct grep_opt
*opt
, const char *pat
, size_t patlen
, const char *origin
, int no
, enum grep_pat_token t
);
178 void append_grep_pattern(struct grep_opt
*opt
, const char *pat
, const char *origin
, int no
, enum grep_pat_token t
);
179 void append_header_grep_pattern(struct grep_opt
*, enum grep_header_field
, const char *);
180 void compile_grep_patterns(struct grep_opt
*opt
);
181 void free_grep_patterns(struct grep_opt
*opt
);
182 int grep_buffer(struct grep_opt
*opt
, char *buf
, unsigned long size
);
187 enum grep_source_type
{
197 char *path
; /* for attribute lookups */
198 struct userdiff_driver
*driver
;
201 void grep_source_init(struct grep_source
*gs
, enum grep_source_type type
,
202 const char *name
, const char *path
,
203 const void *identifier
);
204 void grep_source_clear_data(struct grep_source
*gs
);
205 void grep_source_clear(struct grep_source
*gs
);
206 void grep_source_load_driver(struct grep_source
*gs
,
207 struct index_state
*istate
);
210 int grep_source(struct grep_opt
*opt
, struct grep_source
*gs
);
212 struct grep_opt
*grep_opt_dup(const struct grep_opt
*opt
);
213 int grep_threads_ok(const struct grep_opt
*opt
);
216 * Mutex used around access to the attributes machinery if
217 * opt->use_threads. Must be initialized/destroyed by callers!
219 extern int grep_use_locks
;
220 extern pthread_mutex_t grep_attr_mutex
;
221 extern pthread_mutex_t grep_read_mutex
;
223 static inline void grep_read_lock(void)
226 pthread_mutex_lock(&grep_read_mutex
);
229 static inline void grep_read_unlock(void)
232 pthread_mutex_unlock(&grep_read_mutex
);