1 /* Substring search in a NUL terminated string of UNIT elements,
2 using the Knuth-Morris-Pratt algorithm.
3 Copyright (C) 2005-2024 Free Software Foundation, Inc.
4 Written by Bruno Haible <bruno@clisp.org>, 2005.
6 This file is free software.
7 It is dual-licensed under "the GNU LGPLv3+ or the GNU GPLv2+".
8 You can redistribute it and/or modify it under either
9 - the terms of the GNU Lesser General Public License as published
10 by the Free Software Foundation, either version 3, or (at your
11 option) any later version, or
12 - the terms of the GNU General Public License as published by the
13 Free Software Foundation; either version 2, or (at your option)
15 - the same dual license "the GNU LGPLv3+ or the GNU GPLv2+".
17 This file is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 Lesser General Public License and the GNU General Public License
23 You should have received a copy of the GNU Lesser General Public
24 License and of the GNU General Public License along with this
25 program. If not, see <https://www.gnu.org/licenses/>. */
27 /* Before including this file, you need to define:
28 UNIT The element type of the needle and haystack.
29 CANON_ELEMENT(c) A macro that canonicalizes an element right after
30 it has been fetched from needle or haystack.
31 The argument is of type UNIT; the result must be
32 of type UNIT as well. */
34 /* Knuth-Morris-Pratt algorithm.
35 See https://en.wikipedia.org/wiki/Knuth-Morris-Pratt_algorithm
36 HAYSTACK is the NUL terminated string in which to search for.
37 NEEDLE is the string to search for in HAYSTACK, consisting of NEEDLE_LEN
39 Return a boolean indicating success:
40 Return true and set *RESULTP if the search was completed.
41 Return false if it was aborted because not enough memory was available. */
43 knuth_morris_pratt (const UNIT
*haystack
,
44 const UNIT
*needle
, size_t needle_len
,
47 size_t m
= needle_len
;
49 /* Allocate the table. */
50 size_t *table
= (size_t *) nmalloca (m
, sizeof (size_t));
55 0 < table[i] <= i is defined such that
56 forall 0 < x < table[i]: needle[x..i-1] != needle[0..i-1-x],
57 and table[i] is as large as possible with this property.
61 needle[table[i]..i-1] = needle[0..i-1-table[i]].
63 rhaystack[0..i-1] == needle[0..i-1]
64 and exists h, i <= h < m: rhaystack[h] != needle[h]
66 forall 0 <= x < table[i]: rhaystack[x..x+m-1] != needle[0..m-1].
67 table[0] remains uninitialized. */
71 /* i = 1: Nothing to verify for x = 0. */
75 for (i
= 2; i
< m
; i
++)
77 /* Here: j = i-1 - table[i-1].
78 The inequality needle[x..i-1] != needle[0..i-1-x] is known to hold
79 for x < table[i-1], by induction.
80 Furthermore, if j>0: needle[i-1-j..i-2] = needle[0..j-1]. */
81 UNIT b
= CANON_ELEMENT (needle
[i
- 1]);
85 /* Invariants: The inequality needle[x..i-1] != needle[0..i-1-x]
86 is known to hold for x < i-1-j.
87 Furthermore, if j>0: needle[i-1-j..i-2] = needle[0..j-1]. */
88 if (b
== CANON_ELEMENT (needle
[j
]))
90 /* Set table[i] := i-1-j. */
94 /* The inequality needle[x..i-1] != needle[0..i-1-x] also holds
95 for x = i-1-j, because
96 needle[i-1] != needle[j] = needle[i-1-x]. */
99 /* The inequality holds for all possible x. */
103 /* The inequality needle[x..i-1] != needle[0..i-1-x] also holds
104 for i-1-j < x < i-1-j+table[j], because for these x:
106 = needle[x-(i-1-j)..j-1]
107 != needle[0..j-1-(x-(i-1-j))] (by definition of table[j])
109 hence needle[x..i-1] != needle[0..i-1-x].
111 needle[i-1-j+table[j]..i-2]
112 = needle[table[j]..j-1]
113 = needle[0..j-1-table[j]] (by definition of table[j]). */
116 /* Here: j = i - table[i]. */
120 /* Search, using the table to accelerate the processing. */
123 const UNIT
*rhaystack
;
124 const UNIT
*phaystack
;
128 rhaystack
= haystack
;
129 phaystack
= haystack
;
130 /* Invariant: phaystack = rhaystack + j. */
131 while (*phaystack
!= 0)
132 if (CANON_ELEMENT (needle
[j
]) == CANON_ELEMENT (*phaystack
))
138 /* The entire needle has been found. */
139 *resultp
= rhaystack
;
145 /* Found a match of needle[0..j-1], mismatch at needle[j]. */
146 rhaystack
+= table
[j
];
151 /* Found a mismatch at needle[0] already. */