1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-UNICODE; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/cl-unicode/util.lisp,v 1.33 2012-05-04 21:17:44 edi Exp $
;;; Copyright (c) 2008-2012, Dr. Edmund Weitz. All rights reserved.
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
;;; are met:
;;; * Redistributions of source code must retain the above copyright
;;; notice, this list of conditions and the following disclaimer.
;;; * Redistributions in binary form must reproduce the above
;;; copyright notice, this list of conditions and the following
;;; disclaimer in the documentation and/or other materials
;;; provided with the distribution.
;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
;;; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
(in-package :cl-unicode)
(defun parse-hex (string)
"Parses STRING as a hexadecimal number."
(parse-integer string :radix 16))
(eval-when (:compile-toplevel :load-toplevel :execute)
(defun canonicalize-name (name)
"Converts the string NAME into a \"canonicalized\" name which can be
used for unambiguous look-ups by removing all whitespace, hyphens, and
underline characters.
Tries not to remove hyphens preceded by spaces if this could lead to
ambiguities as described in
<http://unicode.org/unicode/reports/tr18/#Name_Properties>.
All CL-UNICODE functions which accept string \"names\" for characters
or properties will canonicalize the name first using this function and
will then look up the name case-insensitively."
(values (ppcre:regex-replace-all "[ _](-A|O-E)$|[-_\\s]" name
(lambda (match register)
(declare (ignore match))
(cond (register (format nil " ~A" register))
(t "")))
:simple-calls t)))
(defun property-symbol (name)
"Returns a symbol in the CL-UNICODE-NAMES package \(which is only
used for this purpose) which can stand in for the string NAME in
look-ups. The symbol's name is the result of \"canonicalizing\" and
then upcasing NAME.
A symbol returned by this function is only really useful and only
actually a property symbol if the second return value is true.
All exported functions of CL-UNICODE which return strings which are
property names return the corresponding property symbol as their
second return value. All exported functions of CL-UNICODE which
accept property names as arguments will also accept property symbols.
See also PROPERTY-NAME."
(let ((symbol (intern (string-upcase (canonicalize-name name)) :cl-unicode-names)))
(values symbol (property-name symbol))))
(defun register-property-symbol (name)
"Converts NAME to a property symbol using PROPERTY-SYMBOL and
\"registers\" it in the *CANONICAL-NAMES* hash table."
(let ((symbol (property-symbol name)))
(setf (gethash symbol *canonical-names*) name)
symbol))
(defun lookup-property-alias (name)
"Returns the long-name of the given property alias"
(gethash (string-upcase (canonicalize-name name)) *property-aliases*))
(defun property-name (symbol)
"Returns a name \(not \"the\" name) for a property symbol SYMBOL if
it is known to CL-UNICODE. Note that
\(STRING= \(PROPERTY-NAME \(PROPERTY-SYMBOL <string>)) <string>)
is not necessarily true even if the property name is not NIL while
\(EQ \(PROPERTY-SYMBOL \(PROPERTY-NAME <symbol>)) <symbol>)
always holds if there is a property name for <symbol>.
See also PROPERTY-SYMBOL."
(values (gethash symbol *canonical-names*)))
) ;; END EVAL-WHEN
(defun tree-lookup (code-point tree)
"Looks up an attribute for CODE-POINT in the binary search tree
TREE. TREE is a tree as created by BUILD-TREE."
(labels ((try (node)
(and node
(destructuring-bind (((from . to) . value) left-branch right-branch)
node
(cond ((< code-point from) (try left-branch))
((> code-point to) (try right-branch))
(t value))))))
(try tree)))
(defgeneric mapping (c position want-code-point-p)
(:documentation "Returns the simple case mapping for the character C
\(a code point or a Lisp character) in position POSITION where 0 means
lowercase, 1 uppercase, and 2 titlecase. Returns a character if
WANT-CODE-POINT-P is NIL and a code point otherwise.")
(:method ((char character) position want-code-point-p)
(mapping (char-code char) position want-code-point-p))
(:method ((code-point integer) position want-code-point-p)
(let* ((mappings (gethash code-point *case-mappings*))
(code-point (or (nth position mappings) code-point)))
(if want-code-point-p
code-point
(and code-point (code-char code-point)))))
(:method ((code-points list) position want-code-point-p)
(if (= position 2)
(concatenate 'list (list (mapping (car code-points) position want-code-point-p))
(mapping (rest code-points) 0 want-code-point-p))
(loop for c in code-points
collect (mapping c position want-code-point-p)))))
(defun evaluate-casing-condition (context condition)
"Evaluates casing condition. Requires proper implementation. Currently handles unconditional cases."
(and (null context) (null condition)))
(defgeneric special-mapping (c position context)
(:documentation "Returns the special case mapping for the character C
\(a code point or a Lisp character) in position POSITION where 0 means
lowercase, 1 uppercase, and 2 titlecase. Returns a code point list.")
(:method ((char character) position context)
(special-mapping (char-code char) position context))
(:method ((code-point integer) position context)
(let ((mappings (find-if #'(lambda (x) (evaluate-casing-condition context (car x)))
(gethash code-point *special-case-mappings*))))
(or (nth position (rest mappings))
(list (mapping code-point position t)))))
(:method ((code-points list) position context)
(if (= position 2)
(concatenate 'list
(special-mapping (car code-points) position context)
(special-mapping (rest code-points) 0 context))
(loop for c in code-points
append (special-mapping c position context)))))
(defgeneric case-folding (c want-code-point-p)
(:documentation "Return case folding for a character or list of characters.")
(:method ((char character) want-code-point-p)
(let* ((code-point (char-code char))
(folding (case-folding code-point)))
(if want-code-point-p
folding
(mapcar #'code-char folding))))
(:method ((code-point integer) want-code-point-p)
(let ((rule (find-if #'(lambda (r)
(let ((status (car r)))
(or (eql status (property-symbol "C"))
(eql status (property-symbol "F")))))
(case-folding-mapping code-point))))
(if rule
(copy-list (second rule))
(list code-point))))
(:method ((chars list) want-code-point-p)
(loop for c in chars
append (case-folding c want-code-point-p))))
(defun cjk-unified-ideograph-p (code-point)
"Returns a true value if CODE-POINT is the code point of a CJK
unified ideograph for which we can algorithmically derive the name."
(or (<= #x3400 code-point #x4db5)
(<= #x4e00 code-point #x9fc3)
(<= #x20000 code-point #x2a6d6)))
(defun maybe-compute-cjk-name (code-point)
"Computes the name for CODE-POINT if CODE-POINT denotes a CJK
unified ideograph the name of which can be algorithmically derived."
(when (cjk-unified-ideograph-p code-point)
(format nil "CJK UNIFIED IDEOGRAPH-~X" code-point)))
(defun maybe-find-cjk-code-point (name)
"Computes the code point for NAME if NAME is the name of a CJK
unified ideograph the name of which can be algorithmically derived."
(ppcre:register-groups-bind ((#'parse-hex code-point))
;; canonicalized
("(?i)^CJKUNIFIEDIDEOGRAPH([0-9A-F]{4,5}|10[0-9A-F]{4})$" name)
(when (cjk-unified-ideograph-p code-point)
code-point)))
(defmacro define-hangul-constant (name value)
"Simple helper macro to define some constants needed for the Hangul
algorithm below."
(flet ((create-symbol (name)
(intern (format nil "+~:@(~C-~A~)+" (char name 0) (subseq name 1)) :cl-unicode)))
;; use EVAL-WHEN so the following definitions can refer to the
;; value already
`(eval-when (:compile-toplevel :load-toplevel :execute)
(defconstant ,(create-symbol name) ,value
,(format nil "The constant `~A' from chapter 3 of the Unicode book." name)))))
(define-hangul-constant "SBase" #xac00)
(define-hangul-constant "LBase" #x1100)
(define-hangul-constant "VBase" #x1161)
(define-hangul-constant "TBase" #x11a7)
(define-hangul-constant "VCount" 21)
(define-hangul-constant "TCount" 28)
(define-hangul-constant "NCount" (* +V-COUNT+ +T-COUNT+))
(declaim (inline compute-hangul-name))
(defun compute-hangul-name (code-point)
"Algorithmically derives the Hangul syllable name \(the part behind
\"HANGUL SYLLABLE \") of the character with code point CODE-POINT as
described in section 3.12 of the Unicode book."
(declare #.*standard-optimize-settings*)
(declare (fixnum code-point))
(let* ((s-index (- code-point +S-BASE+))
(l-value (+ +L-BASE+ (floor s-index +N-COUNT+)))
(v-value (+ +V-BASE+ (floor (mod s-index +N-COUNT+) +T-COUNT+)))
(t-value (+ +T-BASE+ (mod s-index +T-COUNT+))))
(declare (fixnum s-index t-value))
(format nil "~A~A~@[~A~]"
(gethash l-value *jamo-short-names*)
(gethash v-value *jamo-short-names*)
(and (/= t-value +T-BASE+)
(gethash t-value *jamo-short-names*)))))
(declaim (inline compute-hangul-decomposition))
(defun compute-hangul-decomposition (code-point)
"Algorithmically derives the Hangul syllable canonical decomposition."
(declare #.*standard-optimize-settings*)
(declare (fixnum code-point))
(let* ((s-index (- code-point +S-BASE+))
(l-value (+ +L-BASE+ (floor s-index +N-COUNT+)))
(v-value (+ +V-BASE+ (floor (mod s-index +N-COUNT+) +T-COUNT+)))
(t-value (+ +T-BASE+ (mod s-index +T-COUNT+)))
(lv-value (+ +S-BASE+ (* +T-COUNT+ (floor s-index +T-COUNT+)))))
(declare (fixnum s-index t-value lv-value))
(if (/= t-value +T-BASE+)
(list lv-value t-value)
(list l-value v-value))))
(defconstant +first-hangul-syllable+ #xac00
"The code point of the first Hangul syllable the name of which can
be algorithmically derived.")
(defconstant +last-hangul-syllable+ #xd7a3
"The code point of the last Hangul syllable the name of which can be
algorithmically derived.")
(defun add-hangul-names ()
"Computes the names for all Hangul syllables and registers them in
the *HANGUL-SYLLABLES-TO-CODE-POINTS* hash table. Used for
CHARACTER-NAMED."
(declare #.*standard-optimize-settings*)
(when *compile-verbose*
(format t "~&;;; Computing Hangul syllable names")
(force-output))
(loop for code-point from +first-hangul-syllable+ to +last-hangul-syllable+
for name = (compute-hangul-name code-point)
do (setf (gethash name *hangul-syllables-to-code-points*) code-point)))
(defun hangul-syllable-p (code-point)
"Returns a true value if CODE-POINT is the code point of a Hangul
syllable for which we can algorithmically derive the name."
(<= +first-hangul-syllable+ code-point +last-hangul-syllable+))
(defun maybe-compute-hangul-syllable-name (code-point)
"Computes the name for CODE-POINT if CODE-POINT denotes a Hangul
syllable the name of which can be algorithmically derived."
(when (hangul-syllable-p code-point)
(format nil "HANGUL SYLLABLE ~X" (compute-hangul-name code-point))))
(defun maybe-find-hangul-syllable-code-point (name)
"Computes the code point for NAME if NAME is the name of a Hangul
syllable the name of which can be algorithmically derived."
(ppcre:register-groups-bind (name)
;; canonicalized
("(?i)^HANGULSYLLABLE([A-Z]*)$" name)
(gethash name *hangul-syllables-to-code-points*)))
(defmacro ensure-code-point (c)
"Helper macro so that C can be treated like a code point even if it
is a Lisp character."
(with-rebinding (c)
`(etypecase ,c
(integer ,c)
(character (char-code ,c)))))
(defun canonical-sort (code-points)
"Unicode Canonical Sort algorithm"
(flet ((csort (acc)
(mapcar #'cdr(stable-sort acc #'> :key #'car))))
(loop with acc = nil and result = nil
for c in code-points
for ccc = (combining-class c)
do (cond ((= 0 ccc)
(when acc
(setf result (nconc (csort acc) result))
(setf acc nil))
(push c result))
(t (push (cons ccc c) acc)))
finally (return (nreverse (nconc (csort acc) result))))))
(defun canonical-composition (code-points)
"Unicode Canonical Composition algorithm. See: https://dev.w3.org/cvsweb/~checkout~/charlint/charlint.pl?rev=1.28;content-type=text%2Fx-perl"
(flet ((combine (first second)
(cdr (assoc second (gethash first *composition-mappings*)))))
(loop with last-class = -1 and start = (car code-points) and result = nil and acc = nil
for c in (rest code-points)
for ccc = (combining-class c)
for composite = (combine start c)
do (cond
((and (< last-class ccc) (integerp composite))
(setf start composite))
((= ccc 0)
(setf result (nconc acc (cons start result)))
(setf start c
last-class -1
acc nil))
(t
(setf last-class ccc)
(push c acc)))
finally (return (nreverse (nconc acc (cons start result)))))))
|