all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 294643d6f2cec83a0503a92d4568c863abbe13cc 8840 bytes (raw)
name: src/regex-emacs.h 	 # note: path name is non-authoritative(*)

  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
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
 
/* Emacs regular expression API

   Copyright (C) 1985, 1989-1993, 1995, 2000-2024 Free Software
   Foundation, Inc.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */

#ifndef EMACS_REGEX_H
#define EMACS_REGEX_H 1

#include <stddef.h>

#define RE_MATCH_EXP_UNSET (-1)

/* This is the structure we store register match data in.
   Declare this before including lisp.h, since lisp.h (via thread.h)
   uses struct re_registers.  */
struct re_registers
{
  ptrdiff_t num_regs;
  ptrdiff_t *start;
  ptrdiff_t *end;
};

\f
/* This data structure represents a compiled pattern.  Before calling
   the pattern compiler, the fields 'buffer', 'allocated', 'fastmap',
   and 'translate' can be set.  After the pattern has been
   compiled, the 're_nsub' field is available.  All other fields are
   private to the regex routines.  */
/* re_pattern_buffer is also used in lisp.h, and therefore needs to be
   fully declared before the include. */

struct re_pattern_buffer
{
	/* Space that holds the compiled pattern.  It is declared as
	  'unsigned char *' because its elements are
	   sometimes used as array indexes.  */
  unsigned char *buffer;

	/* Number of bytes to which 'buffer' points.  */
  ptrdiff_t allocated;

	/* Number of bytes actually used in 'buffer'.  */
  ptrdiff_t used;

	/* Charset of unibyte characters at compiling time.  */
  int charset_unibyte;

	/* Pointer to a fastmap, if any, otherwise zero.  re_search uses
	   the fastmap, if there is one, to skip over impossible
	   starting points for matches.  */
  char *fastmap;

	/* Either a translate table to apply to all characters before
	   comparing them, or zero for no translation.  The translation
	   applies to a pattern when it is compiled and to a string
	   when it is matched.  */
	/* In order to use this struct in Lisp_Regexp in lisp.h, we
	   need to pretend it's a void pointer instead of
	   a Lisp_Object. */
  void *translate;

	/* Number of subexpressions found by the compiler.  */
  ptrdiff_t re_nsub;

	/* True if and only if this pattern can match the empty string.
	   Well, in truth it's used only in 're_search_2', to see
	   whether or not we should use the fastmap, so we don't set
	   this absolutely perfectly; see 're_compile_fastmap'.  */
  bool_bf can_be_null : 1;

	/* If REGS_UNALLOCATED, allocate space in the 'regs' structure
	     for at least (re_nsub + 1) groups.
	   If REGS_REALLOCATE, reallocate space if necessary.
	   If REGS_FIXED, use what's there.  */
  unsigned regs_allocated : 2;

	/* Set to false when 'regex_compile' compiles a pattern; set to true
	   by 're_compile_fastmap' if it updates the fastmap.  */
  bool_bf fastmap_accurate : 1;

  /* If true, the compilation of the pattern had to look up the syntax table,
     so the compiled pattern is valid for the current syntax table only.  */
  bool_bf used_syntax : 1;

  /* If true, multi-byte form in the regexp pattern should be
     recognized as a multibyte character.  */
  bool_bf multibyte : 1;

  /* If true, multi-byte form in the target of match should be
     recognized as a multibyte character.  */
  bool_bf target_multibyte : 1;
};

#include "lisp.h"

struct regexp_match_info
{
  struct re_registers *regs;
  struct Lisp_Match *match;
};

INLINE_HEADER_BEGIN
INLINE struct regexp_match_info
empty_regexp_match_info (void)
{
  struct regexp_match_info ret = { .regs = NULL, .match = NULL };
  return ret;
}

INLINE struct regexp_match_info
make_regs_only_match_info (struct re_registers *regs)
{
  /* Ensure we're not using NULL to mean an optional value. */
  eassert (regs != NULL);
  struct regexp_match_info ret = { .regs = regs, .match = NULL };
  return ret;
}
INLINE_HEADER_END

/* There's some ridiculous error "invalid use of undefined type
   ‘struct Lisp_Match’" even though we just included lisp.h above here
   where `struct Lisp_Match' is defined, sigh. Defined in
   regex-emacs.c, luckily it doesn't matter for performance whether
   this is inlined. */
struct regexp_match_info make_full_match_info (struct Lisp_Match *match);

/* Defined in search.c. */
extern EMACS_INT search_buffer (Lisp_Object, ptrdiff_t, ptrdiff_t,
				ptrdiff_t, ptrdiff_t, EMACS_INT,
				bool, bool, struct regexp_match_info*);

/* The string or buffer being matched.
   It is used for looking up syntax properties.

   If the value is a Lisp string object, match text in that string; if
   it's nil, match text in the current buffer; if it's t, match text
   in a C string.

   This value is effectively another parameter to re_search_2 and
   re_match_2.  No calls into Lisp or thread switches are allowed
   before setting re_match_object and calling into the regex search
   and match functions.  These functions capture the current value of
   re_match_object into gl_state on entry.

   TODO: turn into an actual function parameter.  */
extern Lisp_Object re_match_object;

/* Roughly the maximum number of failure points on the stack.  */
extern ptrdiff_t emacs_re_max_failures;

/* The size of an allocation for a fastmap. */
#define FASTMAP_SIZE 0400

/* Amount of memory that we can safely stack allocate.  */
extern ptrdiff_t emacs_re_safe_alloca;
\f
/* Declarations for routines.  */

/* Compile the regular expression PATTERN, with length LENGTH
   and syntax given by the global 're_syntax_options', into the buffer
   BUFFER.  Return NULL if successful, and an error string if not.  */
extern const char *re_compile_pattern (const char *pattern, ptrdiff_t length,
				       bool posix_backtracking,
				       const char *whitespace_regexp,
				       struct re_pattern_buffer *buffer);


/* Search in the string STRING (with length LENGTH) for the pattern
   compiled into BUFFER.  Start searching at position START, for RANGE
   characters.  Return the starting position of the match, -1 for no
   match, or -2 for an internal error.  Also return register
   information in REGS (if REGS is non-null).  */
extern ptrdiff_t re_search (struct re_pattern_buffer *buffer,
			   const char *string, ptrdiff_t length,
			   ptrdiff_t start, ptrdiff_t range,
			   struct regexp_match_info* info);


/* Like 're_search', but search in the concatenation of STRING1 and
   STRING2.  Also, stop searching at index START + STOP.  */
extern ptrdiff_t re_search_2 (struct re_pattern_buffer *buffer,
			     const char *string1, ptrdiff_t length1,
			     const char *string2, ptrdiff_t length2,
			     ptrdiff_t start, ptrdiff_t range,
			     struct regexp_match_info* info,
			     ptrdiff_t stop);


/* Like 're_search_2', but return how many characters in STRING the regexp
   in BUFFER matched, starting at position START.  */
extern ptrdiff_t re_match_2 (struct re_pattern_buffer *buffer,
			    const char *string1, ptrdiff_t length1,
			    const char *string2, ptrdiff_t length2,
			    ptrdiff_t start, struct regexp_match_info* info,
			    ptrdiff_t stop);


/* Set REGS to hold NUM_REGS registers, storing them in STARTS and
   ENDS.  Subsequent matches using BUFFER and REGS will use this memory
   for recording register information.  STARTS and ENDS must be
   allocated with malloc, and must each be at least 'NUM_REGS * sizeof
   (ptrdiff_t)' bytes long.

   If NUM_REGS == 0, then subsequent matches should allocate their own
   register data.

   Unless this function is called, the first search or match using
   PATTERN_BUFFER will allocate its own register data, without
   freeing the old data.  */
extern void re_set_registers (struct re_pattern_buffer *buffer,
			      struct re_registers *regs,
			      ptrdiff_t num_regs,
			      ptrdiff_t *starts, ptrdiff_t *ends);

/* Character classes.  */
typedef enum { RECC_ERROR = 0,
	       RECC_ALNUM, RECC_ALPHA, RECC_WORD,
	       RECC_GRAPH, RECC_PRINT,
	       RECC_LOWER, RECC_UPPER,
	       RECC_PUNCT, RECC_CNTRL,
	       RECC_DIGIT, RECC_XDIGIT,
	       RECC_BLANK, RECC_SPACE,
	       RECC_MULTIBYTE, RECC_NONASCII,
	       RECC_ASCII, RECC_UNIBYTE,
	       RECC_NUM_CLASSES = RECC_UNIBYTE
} re_wctype_t;

extern bool re_iswctype (int ch, re_wctype_t cc);
extern re_wctype_t re_wctype_parse (const unsigned char **strp,
				    ptrdiff_t limit);

#if ENABLE_CHECKING
extern void print_compiled_pattern (FILE *dest, struct re_pattern_buffer *bufp);
#endif

#endif /* EMACS_REGEX_H */

debug log:

solving 294643d6f2c ...
found 294643d6f2c in https://yhetil.org/emacs/obyPxjc1-gUH7aZNNaGIIzybT6m7sLarevWp3z6KXBhb4rCC9G_FzTOuPtDs2saC3vQOVoMNPO6Bn3UQFa5KvbgtbNUjefNA3ArTasTnDy4=@hypnicjerk.ai/ ||
	https://yhetil.org/emacs/2LOLmIp1X8w4CGbqq3qDrzmKVA0KzYNL1N9lBtWdB-MtEv9oCuYgJMYprG170wMPjYxeQImAmWOPatGTTl4KxZMlptNo9A9hnHt84vdN9EA=@hypnicjerk.ai/
found 00beeaf1867 in https://yhetil.org/emacs/1VzhyYQmzkY8ZudqyPNciqngpUIHE7bpzCHQJQJhmJUvyq0OSOCMOKiAOS3s7FVO67oKaW-67ZrLQhvT_4Pth1TlHl8Z9XfGEvV8WD16m0c=@pm.me/ ||
	https://yhetil.org/emacs/N0O-eiIpxKNtUY2ZEohzUF--05o8uBc2wHsLVw7KrVJbG_Lt6kzkiKaN_ZTRdPv8jIxc_yAj-2-DVrzFi6MyYHwrgxHl11h6MYvHeqz1p9E=@hypnicjerk.ai/ ||
	https://yhetil.org/emacs/obyPxjc1-gUH7aZNNaGIIzybT6m7sLarevWp3z6KXBhb4rCC9G_FzTOuPtDs2saC3vQOVoMNPO6Bn3UQFa5KvbgtbNUjefNA3ArTasTnDy4=@hypnicjerk.ai/ ||
	https://yhetil.org/emacs/2LOLmIp1X8w4CGbqq3qDrzmKVA0KzYNL1N9lBtWdB-MtEv9oCuYgJMYprG170wMPjYxeQImAmWOPatGTTl4KxZMlptNo9A9hnHt84vdN9EA=@hypnicjerk.ai/
found 2402e539e64 in https://git.savannah.gnu.org/cgit/emacs.git
preparing index
index prepared:
100644 2402e539e64ff9a81ef3313a4a7acb1c4f358703	src/regex-emacs.h

applying [1/2] https://yhetil.org/emacs/1VzhyYQmzkY8ZudqyPNciqngpUIHE7bpzCHQJQJhmJUvyq0OSOCMOKiAOS3s7FVO67oKaW-67ZrLQhvT_4Pth1TlHl8Z9XfGEvV8WD16m0c=@pm.me/
diff --git a/src/regex-emacs.h b/src/regex-emacs.h
index 2402e539e64..00beeaf1867 100644

Checking patch src/regex-emacs.h...
Applied patch src/regex-emacs.h cleanly.

skipping https://yhetil.org/emacs/N0O-eiIpxKNtUY2ZEohzUF--05o8uBc2wHsLVw7KrVJbG_Lt6kzkiKaN_ZTRdPv8jIxc_yAj-2-DVrzFi6MyYHwrgxHl11h6MYvHeqz1p9E=@hypnicjerk.ai/ for 00beeaf1867
skipping https://yhetil.org/emacs/obyPxjc1-gUH7aZNNaGIIzybT6m7sLarevWp3z6KXBhb4rCC9G_FzTOuPtDs2saC3vQOVoMNPO6Bn3UQFa5KvbgtbNUjefNA3ArTasTnDy4=@hypnicjerk.ai/ for 00beeaf1867
skipping https://yhetil.org/emacs/2LOLmIp1X8w4CGbqq3qDrzmKVA0KzYNL1N9lBtWdB-MtEv9oCuYgJMYprG170wMPjYxeQImAmWOPatGTTl4KxZMlptNo9A9hnHt84vdN9EA=@hypnicjerk.ai/ for 00beeaf1867
index at:
100644 00beeaf1867fcd2b8b8c8fc543c681f4e0496bbc	src/regex-emacs.h

applying [2/2] https://yhetil.org/emacs/obyPxjc1-gUH7aZNNaGIIzybT6m7sLarevWp3z6KXBhb4rCC9G_FzTOuPtDs2saC3vQOVoMNPO6Bn3UQFa5KvbgtbNUjefNA3ArTasTnDy4=@hypnicjerk.ai/
diff --git a/src/regex-emacs.h b/src/regex-emacs.h
index 00beeaf1867..294643d6f2c 100644

Checking patch src/regex-emacs.h...
Applied patch src/regex-emacs.h cleanly.

skipping https://yhetil.org/emacs/2LOLmIp1X8w4CGbqq3qDrzmKVA0KzYNL1N9lBtWdB-MtEv9oCuYgJMYprG170wMPjYxeQImAmWOPatGTTl4KxZMlptNo9A9hnHt84vdN9EA=@hypnicjerk.ai/ for 294643d6f2c
index at:
100644 294643d6f2cec83a0503a92d4568c863abbe13cc	src/regex-emacs.h

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.