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