1 /*************************************************
2 * Perl-Compatible Regular Expressions *
3 *************************************************/
5 /* PCRE is a library of functions to support regular expressions whose syntax
6 and semantics are as close as possible to those of the Perl 5 language.
8 Written by Philip Hazel
9 Original API code Copyright (c) 1997-2012 University of Cambridge
10 New API code Copyright (c) 2016-2018 University of Cambridge
12 -----------------------------------------------------------------------------
13 Redistribution and use in source and binary forms, with or without
14 modification, are permitted provided that the following conditions are met:
16 * Redistributions of source code must retain the above copyright notice,
17 this list of conditions and the following disclaimer.
19 * Redistributions in binary form must reproduce the above copyright
20 notice, this list of conditions and the following disclaimer in the
21 documentation and/or other materials provided with the distribution.
23 * Neither the name of the University of Cambridge nor the names of its
24 contributors may be used to endorse or promote products derived from
25 this software without specific prior written permission.
27 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
31 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 POSSIBILITY OF SUCH DAMAGE.
38 -----------------------------------------------------------------------------
41 /* This module contains an internal function that is used to match a Unicode
42 extended grapheme sequence. It is used by both pcre2_match() and
43 pcre2_def_match(). However, it is called only when Unicode support is being
44 compiled. Nevertheless, we provide a dummy function when there is no Unicode
45 support, because some compilers do not like functionless source files. */
53 #include "pcre2_internal.h"
58 #ifndef SUPPORT_UNICODE
60 PRIV(extuni)(uint32_t c, PCRE2_SPTR eptr, PCRE2_SPTR start_subject,
61 PCRE2_SPTR end_subject, BOOL utf, int *xcount)
74 /*************************************************
75 * Match an extended grapheme sequence *
76 *************************************************/
81 eptr pointer to next character
82 start_subject pointer to start of subject
83 end_subject pointer to end of subject
84 utf TRUE if in UTF mode
85 xcount pointer to count of additional characters,
86 or NULL if count not needed
88 Returns: pointer after the end of the sequence
92 PRIV(extuni)(uint32_t c, PCRE2_SPTR eptr, PCRE2_SPTR start_subject,
93 PCRE2_SPTR end_subject, BOOL utf, int *xcount)
95 int lgb = UCD_GRAPHBREAK(c);
97 while (eptr < end_subject)
101 if (!utf) c = *eptr; else { GETCHARLEN(c, eptr, len); }
102 rgb = UCD_GRAPHBREAK(c);
103 if ((PRIV(ucp_gbtable)[lgb] & (1 << rgb)) == 0) break;
105 /* Not breaking between Regional Indicators is allowed only if there
106 are an even number of preceding RIs. */
108 if (lgb == ucp_gbRegionalIndicator && rgb == ucp_gbRegionalIndicator)
111 PCRE2_SPTR bptr = eptr - 1;
112 if (utf) BACKCHAR(bptr);
114 /* bptr is pointing to the left-hand character */
116 while (bptr > start_subject)
126 if (UCD_GRAPHBREAK(c) != ucp_gbRegionalIndicator) break;
129 if ((ricount & 1) != 0) break; /* Grapheme break required */
132 /* If Extend or ZWJ follows Extended_Pictographic, do not update lgb; this
133 allows any number of them before a following Extended_Pictographic. */
135 if ((rgb != ucp_gbExtend && rgb != ucp_gbZWJ) ||
136 lgb != ucp_gbExtended_Pictographic)
140 if (xcount != NULL) *xcount += 1;
146 #endif /* SUPPORT_UNICODE */
148 /* End of pcre2_extuni.c */