]>
Commit | Line | Data |
---|---|---|
b37bf2e1 A |
1 | /* This is JavaScriptCore's variant of the PCRE library. While this library |
2 | started out as a copy of PCRE, many of the features of PCRE have been | |
3 | removed. This library now supports only the regular expression features | |
4 | required by the JavaScript language specification, and has only the functions | |
5 | needed by JavaScriptCore and the rest of WebKit. | |
6 | ||
7 | Originally written by Philip Hazel | |
8 | Copyright (c) 1997-2006 University of Cambridge | |
9 | Copyright (C) 2002, 2004, 2006, 2007 Apple Inc. All rights reserved. | |
10 | ||
11 | ----------------------------------------------------------------------------- | |
12 | Redistribution and use in source and binary forms, with or without | |
13 | modification, are permitted provided that the following conditions are met: | |
14 | ||
15 | * Redistributions of source code must retain the above copyright notice, | |
16 | this list of conditions and the following disclaimer. | |
17 | ||
18 | * Redistributions in binary form must reproduce the above copyright | |
19 | notice, this list of conditions and the following disclaimer in the | |
20 | documentation and/or other materials provided with the distribution. | |
21 | ||
22 | * Neither the name of the University of Cambridge nor the names of its | |
23 | contributors may be used to endorse or promote products derived from | |
24 | this software without specific prior written permission. | |
25 | ||
26 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
27 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
28 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
29 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE | |
30 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
31 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
32 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
33 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
34 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
35 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
36 | POSSIBILITY OF SUCH DAMAGE. | |
37 | ----------------------------------------------------------------------------- | |
38 | */ | |
39 | ||
40 | /* This module contains an internal function that is used to match an extended | |
41 | class (one that contains characters whose values are > 255). */ | |
42 | ||
43 | #include "pcre_internal.h" | |
44 | ||
45 | /************************************************* | |
46 | * Match character against an XCLASS * | |
47 | *************************************************/ | |
48 | ||
49 | /* This function is called to match a character against an extended class that | |
50 | might contain values > 255. | |
51 | ||
52 | Arguments: | |
53 | c the character | |
54 | data points to the flag byte of the XCLASS data | |
55 | ||
56 | Returns: true if character matches, else false | |
57 | */ | |
58 | ||
59 | /* Get the next UTF-8 character, advancing the pointer. This is called when we | |
60 | know we are in UTF-8 mode. */ | |
61 | ||
62 | static inline void getUTF8CharAndAdvancePointer(int& c, const unsigned char*& subjectPtr) | |
63 | { | |
64 | c = *subjectPtr++; | |
65 | if ((c & 0xc0) == 0xc0) { | |
66 | int gcaa = kjs_pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ | |
67 | int gcss = 6 * gcaa; | |
68 | c = (c & kjs_pcre_utf8_table3[gcaa]) << gcss; | |
69 | while (gcaa-- > 0) { | |
70 | gcss -= 6; | |
71 | c |= (*subjectPtr++ & 0x3f) << gcss; | |
72 | } | |
73 | } | |
74 | } | |
75 | ||
76 | bool kjs_pcre_xclass(int c, const unsigned char* data) | |
77 | { | |
78 | bool negated = (*data & XCL_NOT); | |
79 | ||
80 | /* Character values < 256 are matched against a bitmap, if one is present. If | |
81 | not, we still carry on, because there may be ranges that start below 256 in the | |
82 | additional data. */ | |
83 | ||
84 | if (c < 256) { | |
85 | if ((*data & XCL_MAP) != 0 && (data[1 + c/8] & (1 << (c&7))) != 0) | |
86 | return !negated; /* char found */ | |
87 | } | |
88 | ||
89 | /* First skip the bit map if present. Then match against the list of Unicode | |
90 | properties or large chars or ranges that end with a large char. We won't ever | |
91 | encounter XCL_PROP or XCL_NOTPROP when UCP support is not compiled. */ | |
92 | ||
93 | if ((*data++ & XCL_MAP) != 0) | |
94 | data += 32; | |
95 | ||
96 | int t; | |
97 | while ((t = *data++) != XCL_END) { | |
98 | if (t == XCL_SINGLE) { | |
99 | int x; | |
100 | getUTF8CharAndAdvancePointer(x, data); | |
101 | if (c == x) | |
102 | return !negated; | |
103 | } | |
104 | else if (t == XCL_RANGE) { | |
105 | int x, y; | |
106 | getUTF8CharAndAdvancePointer(x, data); | |
107 | getUTF8CharAndAdvancePointer(y, data); | |
108 | if (c >= x && c <= y) | |
109 | return !negated; | |
110 | } | |
111 | } | |
112 | ||
113 | return negated; /* char did not match */ | |
114 | } |