|
41 | 41 | // 0x28 '(' and 0x29 ')' are used for the signature
|
42 | 42 | // 0x2e '.' is always replaced before the matching
|
43 | 43 | // 0x2f '/' is only used in the class name as package separator
|
| 44 | +// |
| 45 | +// It seems hard to get Non-ASCII characters to work in all circumstances due |
| 46 | +// to limitations in Windows. So only ASCII characters are supported on Windows. |
44 | 47 |
|
45 |
| -#define RANGEBASE "\x1\x2\x3\x4\x5\x6\x7\x8\xa\xb\xc\xd\xe\xf" \ |
| 48 | +#define RANGEBASE_ASCII "\x1\x2\x3\x4\x5\x6\x7\x8\xa\xb\xc\xd\xe\xf" \ |
46 | 49 | "\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" \
|
47 | 50 | "\x21\x22\x23\x24\x25\x26\x27\x2a\x2b\x2c\x2d" \
|
48 | 51 | "\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" \
|
49 | 52 | "\x40\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" \
|
50 | 53 | "\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x5c\x5e\x5f" \
|
51 | 54 | "\x60\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" \
|
52 |
| - "\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" \ |
53 |
| - "\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" \ |
| 55 | + "\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" |
| 56 | + |
| 57 | +#define RANGEBASE_NON_ASCII "\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" \ |
54 | 58 | "\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" \
|
55 | 59 | "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf" \
|
56 | 60 | "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" \
|
57 | 61 | "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" \
|
58 | 62 | "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" \
|
59 | 63 | "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef"
|
60 | 64 |
|
| 65 | +#define RANGEBASE RANGEBASE_ASCII NOT_WINDOWS(RANGEBASE_NON_ASCII) |
| 66 | + |
61 | 67 | #define RANGE0 "[*" RANGEBASE "]"
|
62 | 68 | #define RANGESLASH "[*" RANGEBASE "/]"
|
63 | 69 |
|
@@ -164,6 +170,15 @@ bool MethodMatcher::canonicalize(char * line, const char *& error_msg) {
|
164 | 170 | if (*lp == ':') *lp = ' ';
|
165 | 171 | }
|
166 | 172 | if (*lp == ',' || *lp == '.') *lp = ' ';
|
| 173 | + |
| 174 | +#ifdef _WINDOWS |
| 175 | + // It seems hard to get Non-ASCII characters to work in all circumstances due |
| 176 | + // to limitations in Windows. So only ASCII characters are supported on Windows. |
| 177 | + if (!isascii(*lp)) { |
| 178 | + error_msg = "Non-ASCII characters are not supported on Windows."; |
| 179 | + return false; |
| 180 | + } |
| 181 | +#endif |
167 | 182 | }
|
168 | 183 | return true;
|
169 | 184 | }
|
@@ -237,12 +252,6 @@ void skip_leading_spaces(char*& line, int* total_bytes_read ) {
|
237 | 252 | }
|
238 | 253 | }
|
239 | 254 |
|
240 |
| -#ifdef _MSC_VER |
241 |
| -#pragma warning(push) |
242 |
| -// warning C4189: The file contains a character that cannot be represented |
243 |
| -// in the current code page |
244 |
| -#pragma warning(disable : 4819) |
245 |
| -#endif |
246 | 255 | void MethodMatcher::parse_method_pattern(char*& line, const char*& error_msg, MethodMatcher* matcher) {
|
247 | 256 | MethodMatcher::Mode c_match;
|
248 | 257 | MethodMatcher::Mode m_match;
|
@@ -312,9 +321,6 @@ void MethodMatcher::parse_method_pattern(char*& line, const char*& error_msg, Me
|
312 | 321 | error_msg = "Could not parse method pattern";
|
313 | 322 | }
|
314 | 323 | }
|
315 |
| -#ifdef _MSC_VER |
316 |
| -#pragma warning(pop) |
317 |
| -#endif |
318 | 324 |
|
319 | 325 | bool MethodMatcher::matches(const methodHandle& method) const {
|
320 | 326 | Symbol* class_name = method->method_holder()->name();
|
|
0 commit comments