6fe28b65e9bc7f564c4d07b1a1b93639e3a71b4b
[jscl.git] / src / char.lisp
1 ;; These comparison functions heavily borrowed from SBCL/CMUCL (public domain).
2
3 (defun char= (character &rest more-characters)
4   (dolist (c more-characters t)
5     (unless (eql c character) (return nil))))
6
7 (defun char/= (character &rest more-characters)
8   (do* ((head character (car list))
9         (list more-characters (cdr list)))
10        ((null list) t)
11        (dolist (c list)
12          (when (eql head c) (return-from char/= nil)))))
13
14 (defun char< (character &rest more-characters)
15   (do* ((c character (car list))
16         (list more-characters (cdr list)))
17        ((null list) t)
18        (unless (< (char-int c)
19                   (char-int (car list)))
20          (return nil))))
21
22 (defun char> (character &rest more-characters)
23   (do* ((c character (car list))
24         (list more-characters (cdr list)))
25        ((null list) t)
26        (unless (> (char-int c)
27                   (char-int (car list)))
28          (return nil))))
29
30 (defun char<= (character &rest more-characters)
31   (do* ((c character (car list))
32         (list more-characters (cdr list)))
33        ((null list) t)
34        (unless (<= (char-int c)
35                    (char-int (car list)))
36          (return nil))))
37
38 (defun char>= (character &rest more-characters)
39   (do* ((c character (car list))
40         (list more-characters (cdr list)))
41        ((null list) t)
42        (unless (>= (char-int c)
43                    (char-int (car list)))
44          (return nil))))
45
46 (defun equal-char-code (character)
47   (char-code (char-upcase character)))
48
49 (defun two-arg-char-equal (c1 c2)
50   (= (equal-char-code c1) (equal-char-code c2)))
51
52 (defun char-equal (character &rest more-characters)
53   (do ((clist more-characters (cdr clist)))
54       ((null clist) t)
55       (unless (two-arg-char-equal (car clist) character)
56         (return nil))))
57
58 (defun char-not-equal (character &rest more-characters)
59   (do* ((head character (car list))
60         (list more-characters (cdr list)))
61        ((null list) t)
62        (unless (do* ((l list (cdr l)))
63                     ((null l) t)
64                     (when (two-arg-char-equal head (car l))
65                         (return nil)))
66          (return nil))))
67
68 (defun two-arg-char-lessp (c1 c2)
69   (< (equal-char-code c1) (equal-char-code c2)))
70
71 (defun char-lessp (character &rest more-characters)
72   (do* ((c character (car list))
73         (list more-characters (cdr list)))
74        ((null list) t)
75        (unless (two-arg-char-lessp c (car list))
76          (return nil))))
77
78 (defun two-arg-char-greaterp (c1 c2)
79   (> (equal-char-code c1) (equal-char-code c2)))
80
81 (defun char-greaterp (character &rest more-characters)
82   (do* ((c character (car list))
83         (list more-characters (cdr list)))
84        ((null list) t)
85        (unless (two-arg-char-greaterp c (car list))
86          (return nil))))
87
88 (defun two-arg-char-not-greaterp (c1 c2)
89   (<= (equal-char-code c1) (equal-char-code c2)))
90
91 (defun char-not-greaterp (character &rest more-characters)
92   (do* ((c character (car list))
93         (list more-characters (cdr list)))
94        ((null list) t)
95        (unless (two-arg-char-not-greaterp c (car list))
96          (return nil))))
97
98 (defun two-arg-char-not-lessp (c1 c2)
99   (>= (equal-char-code c1) (equal-char-code c2)))
100
101 (defun char-not-lessp (character &rest more-characters)
102   (do* ((c character (car list))
103         (list more-characters (cdr list)))
104        ((null list) t)
105        (unless (two-arg-char-not-lessp c (car list))
106          (return nil))))
107
108 (defun character (character)
109   (cond ((characterp character)
110          character)
111         ((and (stringp character)
112               (= 1 (length character)))
113          (char character 0))
114         ((and (symbolp character)
115               (= 1 (length (symbol-name character))))
116          (symbol-name character))
117         (t
118          (error "not a valid character designator"))))
119
120 ;; This list comes from SBCL: everything that's ALPHA-CHAR-P, but
121 ;; not SB-IMPL::UCD-DECIMAL-DIGIT (to work around <https://bugs.launchpad.net/sbcl/+bug/1177986>),
122 ;; then combined into a much smaller set of ranges.  Yes, this can be compressed better.
123 (defconstant +unicode-alphas+
124   '((65 . 90) (97 . 122) (170 . 170) (181 . 181) (186 . 186) (192 . 214)
125     (216 . 246) (248 . 705) (710 . 721) (736 . 740) (748 . 748) (750 . 750)
126     (880 . 884) (886 . 887) (890 . 893) (902 . 902) (904 . 906) (908 . 908)
127     (910 . 929) (931 . 1013) (1015 . 1153) (1162 . 1317) (1329 . 1366)
128     (1369 . 1369) (1377 . 1415) (1488 . 1514) (1520 . 1522) (1569 . 1610)
129     (1646 . 1647) (1649 . 1747) (1749 . 1749) (1765 . 1766) (1774 . 1775)
130     (1786 . 1788) (1791 . 1791) (1808 . 1808) (1810 . 1839) (1869 . 1957)
131     (1969 . 1969) (1994 . 2026) (2036 . 2037) (2042 . 2042) (2048 . 2069)
132     (2074 . 2074) (2084 . 2084) (2088 . 2088) (2308 . 2361) (2365 . 2365)
133     (2384 . 2384) (2392 . 2401) (2417 . 2418) (2425 . 2431) (2437 . 2444)
134     (2447 . 2448) (2451 . 2472) (2474 . 2480) (2482 . 2482) (2486 . 2489)
135     (2493 . 2493) (2510 . 2510) (2524 . 2525) (2527 . 2529) (2544 . 2545)
136     (2565 . 2570) (2575 . 2576) (2579 . 2600) (2602 . 2608) (2610 . 2611)
137     (2613 . 2614) (2616 . 2617) (2649 . 2652) (2654 . 2654) (2674 . 2676)
138     (2693 . 2701) (2703 . 2705) (2707 . 2728) (2730 . 2736) (2738 . 2739)
139     (2741 . 2745) (2749 . 2749) (2768 . 2768) (2784 . 2785) (2821 . 2828)
140     (2831 . 2832) (2835 . 2856) (2858 . 2864) (2866 . 2867) (2869 . 2873)
141     (2877 . 2877) (2908 . 2909) (2911 . 2913) (2929 . 2929) (2947 . 2947)
142     (2949 . 2954) (2958 . 2960) (2962 . 2965) (2969 . 2970) (2972 . 2972)
143     (2974 . 2975) (2979 . 2980) (2984 . 2986) (2990 . 3001) (3024 . 3024)
144     (3077 . 3084) (3086 . 3088) (3090 . 3112) (3114 . 3123) (3125 . 3129)
145     (3133 . 3133) (3160 . 3161) (3168 . 3169) (3205 . 3212) (3214 . 3216)
146     (3218 . 3240) (3242 . 3251) (3253 . 3257) (3261 . 3261) (3294 . 3294)
147     (3296 . 3297) (3333 . 3340) (3342 . 3344) (3346 . 3368) (3370 . 3385)
148     (3389 . 3389) (3424 . 3425) (3450 . 3455) (3461 . 3478) (3482 . 3505)
149     (3507 . 3515) (3517 . 3517) (3520 . 3526) (3585 . 3632) (3634 . 3635)
150     (3648 . 3654) (3713 . 3714) (3716 . 3716) (3719 . 3720) (3722 . 3722)
151     (3725 . 3725) (3732 . 3735) (3737 . 3743) (3745 . 3747) (3749 . 3749)
152     (3751 . 3751) (3754 . 3755) (3757 . 3760) (3762 . 3763) (3773 . 3773)
153     (3776 . 3780) (3782 . 3782) (3804 . 3805) (3840 . 3840) (3904 . 3911)
154     (3913 . 3948) (3976 . 3979) (4096 . 4138) (4159 . 4159) (4176 . 4181)
155     (4186 . 4189) (4193 . 4193) (4197 . 4198) (4206 . 4208) (4213 . 4225)
156     (4238 . 4238) (4256 . 4293) (4304 . 4346) (4348 . 4348) (4352 . 4680)
157     (4682 . 4685) (4688 . 4694) (4696 . 4696) (4698 . 4701) (4704 . 4744)
158     (4746 . 4749) (4752 . 4784) (4786 . 4789) (4792 . 4798) (4800 . 4800)
159     (4802 . 4805) (4808 . 4822) (4824 . 4880) (4882 . 4885) (4888 . 4954)
160     (4992 . 5007) (5024 . 5108) (5121 . 5740) (5743 . 5759) (5761 . 5786)
161     (5792 . 5866) (5888 . 5900) (5902 . 5905) (5920 . 5937) (5952 . 5969)
162     (5984 . 5996) (5998 . 6000) (6016 . 6067) (6103 . 6103) (6108 . 6108)
163     (6176 . 6263) (6272 . 6312) (6314 . 6314) (6320 . 6389) (6400 . 6428)
164     (6480 . 6509) (6512 . 6516) (6528 . 6571) (6593 . 6599) (6656 . 6678)
165     (6688 . 6740) (6823 . 6823) (6917 . 6963) (6981 . 6987) (7043 . 7072)
166     (7086 . 7087) (7168 . 7203) (7245 . 7247) (7258 . 7293) (7401 . 7404)
167     (7406 . 7409) (7424 . 7615) (7680 . 7957) (7960 . 7965) (7968 . 8005)
168     (8008 . 8013) (8016 . 8023) (8025 . 8025) (8027 . 8027) (8029 . 8029)
169     (8031 . 8061) (8064 . 8116) (8118 . 8124) (8126 . 8126) (8130 . 8132)
170     (8134 . 8140) (8144 . 8147) (8150 . 8155) (8160 . 8172) (8178 . 8180)
171     (8182 . 8188) (8305 . 8305) (8319 . 8319) (8336 . 8340) (8450 . 8450)
172     (8455 . 8455) (8458 . 8467) (8469 . 8469) (8473 . 8477) (8484 . 8484)
173     (8486 . 8486) (8488 . 8488) (8490 . 8493) (8495 . 8505) (8508 . 8511)
174     (8517 . 8521) (8526 . 8526) (8579 . 8580) (11264 . 11310) (11312 . 11358)
175     (11360 . 11492) (11499 . 11502) (11520 . 11557) (11568 . 11621)
176     (11631 . 11631) (11648 . 11670) (11680 . 11686) (11688 . 11694)
177     (11696 . 11702) (11704 . 11710) (11712 . 11718) (11720 . 11726)
178     (11728 . 11734) (11736 . 11742) (11823 . 11823) (12293 . 12294)
179     (12337 . 12341) (12347 . 12348) (12353 . 12438) (12445 . 12447)
180     (12449 . 12538) (12540 . 12543) (12549 . 12589) (12593 . 12686)
181     (12704 . 12727) (12784 . 12799) (13312 . 19893) (19968 . 40907)
182     (40960 . 42124) (42192 . 42237) (42240 . 42508) (42512 . 42527)
183     (42538 . 42539) (42560 . 42591) (42594 . 42606) (42623 . 42647)
184     (42656 . 42725) (42775 . 42783) (42786 . 42888) (42891 . 42892)
185     (43003 . 43009) (43011 . 43013) (43015 . 43018) (43020 . 43042)
186     (43072 . 43123) (43138 . 43187) (43250 . 43255) (43259 . 43259)
187     (43274 . 43301) (43312 . 43334) (43360 . 43388) (43396 . 43442)
188     (43471 . 43471) (43520 . 43560) (43584 . 43586) (43588 . 43595)
189     (43616 . 43638) (43642 . 43642) (43648 . 43695) (43697 . 43697)
190     (43701 . 43702) (43705 . 43709) (43712 . 43712) (43714 . 43714)
191     (43739 . 43741) (43968 . 44002) (44032 . 55203) (55216 . 55238)
192     (55243 . 55291) (63744 . 64045) (64048 . 64109) (64112 . 64217)
193     (64256 . 64262) (64275 . 64279) (64285 . 64285) (64287 . 64296)
194     (64298 . 64310) (64312 . 64316) (64318 . 64318) (64320 . 64321)
195     (64323 . 64324) (64326 . 64433) (64467 . 64829) (64848 . 64911)
196     (64914 . 64967) (65008 . 65019) (65136 . 65140) (65142 . 65276)
197     (65313 . 65338) (65345 . 65370) (65382 . 65470) (65474 . 65479)
198     (65482 . 65487) (65490 . 65495) (65498 . 65500) (65536 . 65547)
199     (65549 . 65574) (65576 . 65594) (65596 . 65597) (65599 . 65613)
200     (65616 . 65629) (65664 . 65786) (66176 . 66204) (66208 . 66256)
201     (66304 . 66334) (66352 . 66368) (66370 . 66377) (66432 . 66461)
202     (66464 . 66499) (66504 . 66511) (66560 . 66717) (67584 . 67589)
203     (67592 . 67592) (67594 . 67637) (67639 . 67640) (67644 . 67644)
204     (67647 . 67669) (67840 . 67861) (67872 . 67897) (68096 . 68096)
205     (68112 . 68115) (68117 . 68119) (68121 . 68147) (68192 . 68220)
206     (68352 . 68405) (68416 . 68437) (68448 . 68466) (68608 . 68680)
207     (69763 . 69807) (73728 . 74606) (77824 . 78894) (119808 . 119892)
208     (119894 . 119964) (119966 . 119967) (119970 . 119970) (119973 . 119974)
209     (119977 . 119980) (119982 . 119993) (119995 . 119995) (119997 . 120003)
210     (120005 . 120069) (120071 . 120074) (120077 . 120084) (120086 . 120092)
211     (120094 . 120121) (120123 . 120126) (120128 . 120132) (120134 . 120134)
212     (120138 . 120144) (120146 . 120485) (120488 . 120512) (120514 . 120538)
213     (120540 . 120570) (120572 . 120596) (120598 . 120628) (120630 . 120654)
214     (120656 . 120686) (120688 . 120712) (120714 . 120744) (120746 . 120770)
215     (120772 . 120779) (131072 . 173782) (173824 . 177972) (194560 . 195101))
216   "(Start . End) ranges of codepoints for alphabetic characters, as of Unicode 6.2.")
217
218 (defun alpha-char-p (char)
219   (let ((code (char-code char)))
220     (dolist (alpha-pair +unicode-alphas+)
221       (when (<= (car alpha-pair) code (cdr alpha-pair))
222         (return-from alpha-char-p t)))
223     nil))
224
225 (defun alphanumericp (char)
226   ;; from the hyperspec:
227   (or (alpha-char-p char)
228       (not (null (digit-char-p char)))))
229
230 ;; I made this list by running DIGIT-CHAR-P in SBCL on every codepoint up to CHAR-CODE-LIMIT,
231 ;; filtering on only those with SB-IMPL::UCD-GENERAL-CATEGORY 12 (Nd), and then grouping
232 ;; consecutive sets.  There's 37 spans of 10, plus 1 extra digit (6618).
233 (defconstant +unicode-zeroes+
234   '(48 1632 1776 1984 2406 2534 2662 2790 2918 3046 3174 3302 3430 3664
235        3792 3872 4160 4240 6112 6160 6470 6608 6784 6800 6992 7088 7232 7248
236        42528 43216 43264 43472 43600 44016 65296 66720 120782)
237   "Unicode codepoints which have Digit value 0, followed by 1, 2, ..., 9, as of Unicode 6.2")
238
239 ;; The "Digit value" of a (Unicode) character, or NIL, if it doesn't have one.
240 (defun unicode-digit-value (char)
241   (let ((code (char-code char)))
242     (if (= code 6618)
243         1  ;; it's special!
244       (dolist (z +unicode-zeroes+)
245         (when (<= z code (+ z 9))
246           (return-from unicode-digit-value (- code z)))))))
247
248 ;; from SBCL/CMUCL:
249 (defun digit-char (weight &optional (radix 10))
250   "All arguments must be integers. Returns a character object that represents
251 a digit of the given weight in the specified radix. Returns NIL if no such
252 character exists."
253   (and ;; (typep weight 'fixnum)
254        (>= weight 0) (< weight radix) (< weight 36)
255        (code-char (if (< weight 10) (+ 48 weight) (+ 55 weight)))))
256
257 ;; borrowed from my proposed fix to SBCL: https://bugs.launchpad.net/sbcl/+bug/1177986
258 (defun digit-char-p (char &optional (radix 10))
259   (let ((number (unicode-digit-value char))
260         (code (char-code char))
261         (little-a (char-code #\a))
262         (big-a (char-code #\A)))
263     (cond ((and number (< number radix))
264            number)
265           (number
266            nil)
267           ((<= big-a code (+ big-a radix -10 -1))
268            (+ code (- big-a) 10))
269           ((<= little-a code (+ little-a radix -10 -1))
270            (+ code (- little-a) 10))
271           (t nil))))
272
273 (defun graphic-char-p (char)
274   ;; from SBCL/CMUCL:
275   (let ((n (char-code char)))
276     (or (< 31 n 127)
277         (< 159 n))))
278
279 (defun standard-char-p (char)
280   ;; from SBCL/CMUCL:
281   (and (let ((n (char-code char)))
282          (or (< 31 n 127)
283              (= n 10)))))
284
285 (defun char-int (character)
286   ;; no implementation-defined character attributes
287   (char-code character))
288
289 (defconstant char-code-limit 1114111)  ;; 0x10FFFF
290
291 (defconstant +ascii-names+
292   #("NULL" "START_OF_HEADING" "START_OF_TEXT" "END_OF_TEXT" "END_OF_TRANSMISSION" "ENQUIRY" "ACKNOWLEDGE"
293     "BELL" "Backspace" "Tab" "Newline" "LINE_TABULATION" "Page" "Return" "SHIFT_OUT" "SHIFT_IN"
294     "DATA_LINK_ESCAPE" "DEVICE_CONTROL_ONE" "DEVICE_CONTROL_TWO" "DEVICE_CONTROL_THREE" "DEVICE_CONTROL_FOUR"
295     "NEGATIVE_ACKNOWLEDGE" "SYNCHRONOUS_IDLE" "END_OF_TRANSMISSION_BLOCK" "CANCEL" "END_OF_MEDIUM" "SUBSTITUTE"
296     "ESCAPE" "INFORMATION_SEPARATOR_FOUR" "INFORMATION_SEPARATOR_THREE" "INFORMATION_SEPARATOR_TWO"
297     "INFORMATION_SEPARATOR_ONE" "Space" "EXCLAMATION_MARK" "QUOTATION_MARK" "NUMBER_SIGN" "DOLLAR_SIGN"
298     "PERCENT_SIGN" "AMPERSAND" "APOSTROPHE" "LEFT_PARENTHESIS" "RIGHT_PARENTHESIS" "ASTERISK" "PLUS_SIGN"
299     "COMMA" "HYPHEN-MINUS" "FULL_STOP" "SOLIDUS" "DIGIT_ZERO" "DIGIT_ONE" "DIGIT_TWO" "DIGIT_THREE" "DIGIT_FOUR"
300     "DIGIT_FIVE" "DIGIT_SIX" "DIGIT_SEVEN" "DIGIT_EIGHT" "DIGIT_NINE" "COLON" "SEMICOLON" "LESS-THAN_SIGN"
301     "EQUALS_SIGN" "GREATER-THAN_SIGN" "QUESTION_MARK" "COMMERCIAL_AT" "LATIN_CAPITAL_LETTER_A"
302     "LATIN_CAPITAL_LETTER_B" "LATIN_CAPITAL_LETTER_C" "LATIN_CAPITAL_LETTER_D" "LATIN_CAPITAL_LETTER_E"
303     "LATIN_CAPITAL_LETTER_F" "LATIN_CAPITAL_LETTER_G" "LATIN_CAPITAL_LETTER_H" "LATIN_CAPITAL_LETTER_I"
304     "LATIN_CAPITAL_LETTER_J" "LATIN_CAPITAL_LETTER_K" "LATIN_CAPITAL_LETTER_L" "LATIN_CAPITAL_LETTER_M"
305     "LATIN_CAPITAL_LETTER_N" "LATIN_CAPITAL_LETTER_O" "LATIN_CAPITAL_LETTER_P" "LATIN_CAPITAL_LETTER_Q"
306     "LATIN_CAPITAL_LETTER_R" "LATIN_CAPITAL_LETTER_S" "LATIN_CAPITAL_LETTER_T" "LATIN_CAPITAL_LETTER_U"
307     "LATIN_CAPITAL_LETTER_V" "LATIN_CAPITAL_LETTER_W" "LATIN_CAPITAL_LETTER_X" "LATIN_CAPITAL_LETTER_Y"
308     "LATIN_CAPITAL_LETTER_Z" "LEFT_SQUARE_BRACKET" "REVERSE_SOLIDUS" "RIGHT_SQUARE_BRACKET" "CIRCUMFLEX_ACCENT"
309     "LOW_LINE" "GRAVE_ACCENT" "LATIN_SMALL_LETTER_A" "LATIN_SMALL_LETTER_B" "LATIN_SMALL_LETTER_C"
310     "LATIN_SMALL_LETTER_D" "LATIN_SMALL_LETTER_E" "LATIN_SMALL_LETTER_F" "LATIN_SMALL_LETTER_G"
311     "LATIN_SMALL_LETTER_H" "LATIN_SMALL_LETTER_I" "LATIN_SMALL_LETTER_J" "LATIN_SMALL_LETTER_K"
312     "LATIN_SMALL_LETTER_L" "LATIN_SMALL_LETTER_M" "LATIN_SMALL_LETTER_N" "LATIN_SMALL_LETTER_O"
313     "LATIN_SMALL_LETTER_P" "LATIN_SMALL_LETTER_Q" "LATIN_SMALL_LETTER_R" "LATIN_SMALL_LETTER_S"
314     "LATIN_SMALL_LETTER_T" "LATIN_SMALL_LETTER_U" "LATIN_SMALL_LETTER_V" "LATIN_SMALL_LETTER_W"
315     "LATIN_SMALL_LETTER_X" "LATIN_SMALL_LETTER_Y" "LATIN_SMALL_LETTER_Z" "LEFT_CURLY_BRACKET" "VERTICAL_LINE"
316     "RIGHT_CURLY_BRACKET" "TILDE" "Rubout")
317   "Names/codepoints of the first 128 characters from Unicode 6.2,
318 except with Common Lisp's suggested changes.
319 For the first 32 characters ('C0 controls'), the first
320 'Commonly used alternative alias' is used -- note that this differs from SBCL, which uses abbreviations.")
321 ;; I hope being slightly different from SBCL doesn't bite me down the road.
322 ;; I'll figure out a good way to add the other 21701 names later.
323
324 (defun char-name (char)
325   ;; For consistency, I'm using the SBCL convention of the Unicode
326   ;; name, with spaces as underscores.  It would be nice to use
327   ;; their "Uxxxx" convention for names I don't know, but there's
328   ;; not much in FORMAT yet.  I'm only implementing ASCII names right
329   ;; now, since Unicode is kind of big.
330
331   (let ((code (char-code char)))
332     (if (<= code 127)
333         (aref +ascii-names+ code)
334       nil)))  ;; for now, no name
335
336 (defun name-char (name)
337   (let ((name-upcase (string-upcase (string name))))
338     (dotimes (i (length +ascii-names+))
339       (when (string= name-upcase (string-upcase (aref +ascii-names+ i)))  ;; poor man's STRING-EQUAL
340         (return-from name-char (code-char i))))
341     nil))