forked from chise/ids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathids-rw.el
156 lines (138 loc) · 4.22 KB
/
ids-rw.el
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
;;; ids-rw.el --- Rewriting utility for ideographic-structure.
;; Copyright (C) 2006, 2020 MORIOKA Tomohiko
;; Author: MORIOKA Tomohiko <[email protected]>
;; Keywords: IDS, TRS, IDC, Ideographs, UCS, Unicode
;; This file is a part of IDS.
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2, or (at
;; your option) any later version.
;; This program is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Code:
(require 'ids-find)
(defun ideographic-structure-unify-char (structure pattern &optional env)
(if (char-ref-p structure)
(setq structure (plist-get structure :char)))
(cond
((eq structure pattern)
(or env t)
)
((symbolp pattern)
(if (eq env t)
(setq env nil))
(let ((ret (assq pattern env)))
(if ret
(if (eq structure (cdr ret))
env)
(cons (cons pattern structure)
env))))))
(defun ideographic-structure-unify-unit (structure pattern &optional env)
(or (ideographic-structure-unify-char structure pattern env)
(let (prest srest ret)
(if (and
(progn
(if (setq ret
(if (consp structure)
(cdr (assq 'ideographic-structure structure))
(char-feature structure 'ideographic-structure)))
(setq structure ret))
(consp structure))
(setq srest structure)
(progn
(if (setq ret
(cond ((consp pattern)
(cdr (assq 'ideographic-structure pattern))
)
((characterp pattern)
(char-feature pattern 'ideographic-structure)
)))
(setq pattern ret))
(consp pattern))
(setq prest pattern)
(catch 'tag
(while prest
(if (not (setq env (ideographic-structure-unify-unit
(car srest) (car prest) env)))
(throw 'tag nil))
(setq prest (cdr prest)
srest (cdr srest)))
t))
(or env t)))))
(defun ideographic-structure-apply-to-term (term env)
(let (ret dest rest)
(cond
((symbolp term)
(if (setq ret (assq term env))
(cdr ret)
term))
((and (consp term)
(cond ((setq ret (assq 'ideographic-structure term))
(setq rest (cdr ret))
)
((atom (car term))
(setq rest term)
)))
(while rest
(setq dest
(cons (ideographic-structure-apply-to-term
(car rest) env)
dest))
(setq rest (cdr rest)))
(list (cons 'ideographic-structure (nreverse dest)))
)
(t term))))
;;;###autoload
(defun ideographic-structure-rewrite (structure
pattern replacement
&optional env)
(if (setq env (ideographic-structure-unify-unit structure pattern env))
(ideographic-structure-apply-to-term replacement env)
(let (srest cell ret dest)
(if (setq ret
(if (consp structure)
(cdr (assq 'ideographic-structure structure))
(char-feature structure 'ideographic-structure)))
(setq structure ret))
(when (consp structure)
(setq srest (cdr structure))
(if (catch 'tag
(while srest
(if (setq ret (ideographic-structure-rewrite
(car srest)
pattern replacement
env))
(throw 'tag ret))
(setq dest (cons (car srest) dest)
srest (cdr srest))))
(cons (car structure)
(append (nreverse (cons ret dest))
(cdr srest))))))))
;;;###autoload
(defun ideographic-structure-rewrite-by-rules (structure rules)
(let (rest rule ret)
(while
(progn
(setq rest rules)
(if (catch 'tag
(while rest
(setq rule (car rest))
(if (setq ret (ideographic-structure-rewrite structure
(car rule)
(cdr rule)))
(throw 'tag ret))
(setq rest (cdr rest))))
(if (equal ret structure)
nil
(setq structure ret)))))
structure))
;;; @ End.
;;;
(provide 'ids-rw)
;;; ids-rw.el ends here