b42bf755562ffb0e45410f3d2eb4f0bb7117203f
[chise/ids.git] / www / www-ids-find.el
1 (require 'ids-find)
2 (require 'cwiki-common)
3
4 (setq www-format-char-img-style "vertical-align:middle;")
5
6 (defun decode-url-string (string &optional coding-system)
7   (if (> (length string) 0)
8       (let ((i 0)
9             dest)
10         (while (string-match "%\\([0-9A-F][0-9A-F]\\)" string i)
11           (setq dest (concat dest
12                              (substring string i (match-beginning 0))
13                              (char-to-string
14                               (int-char
15                                (string-to-int (match-string 1 string) 16))))
16                 i (match-end 0)))
17         (decode-coding-string
18          (concat dest (substring string i))
19          coding-system))))
20
21 (defconst www-ids-find-version "0.26")
22
23 (defvar www-ids-find-ideographic-products-file-name
24   (expand-file-name "ideographic-products"
25                     (expand-file-name
26                      "feature"
27                      (expand-file-name
28                       "character"
29                       chise-system-db-directory))))
30
31 (defvar www-ids-find-char-viewer-url
32   "/est/view/character/")
33
34 (defvar www-ids-find-chise-link-map-url-prefix
35   "http://fonts.jp/chise_linkmap/map.cgi?code=")
36
37 (defvar www-ids-find-tang-chars-file-name
38   "~tomo/projects/chise/ids/www/tang-chars.udd")
39
40 (defun www-ids-find-format-char (c &optional code-desc)
41   (princ
42    (format "<a href=\"%s%s\">%s</a>"
43            www-ids-find-char-viewer-url
44            (www-uri-encode-object c)
45            (www-format-encode-string (char-to-string c))))
46   ;; (let ((str (encode-coding-string (format "%c" c) 'utf-8-er))
47   ;;       plane code)
48   ;;   (princ
49   ;;    (with-temp-buffer
50   ;;      (cond
51   ;;       ((string-match "&CB\\([0-9]+\\);" str)
52   ;;        (setq code (string-to-int (match-string 1 str)))
53   ;;        (insert (format "<a href=\"%s"
54   ;;                        www-ids-find-char-viewer-url))
55   ;;        (insert str)
56   ;;        (insert (format "\"><img alt=\"CB%05d\" src=\"/glyphs/cb-gaiji/%02d/CB%05d.gif\">\n"
57   ;;                        code (/ code 1000) code))
58   ;;        (when code-desc
59   ;;          (insert (format "CB%05d</a>" code)))
60   ;;        )
61   ;;       ((string-match "&JC3-\\([0-9A-F]+\\);" str)
62   ;;        (setq code (string-to-int (match-string 1 str) 16))
63   ;;        (insert (format "<a href=\"%s"
64   ;;                        www-ids-find-char-viewer-url))
65   ;;        (insert str)
66   ;;        (insert (format "\"><img alt=\"JC3-%04X\" src=\"http://kanji.zinbun.kyoto-u.ac.jp/db/CHINA3/Gaiji/%04x.gif\">\n"
67   ;;                        code code))
68   ;;        (when code-desc
69   ;;          (insert (format "JC3-%04X</a>" code)))
70   ;;        )
71   ;;       ((string-match "&J\\(78\\|83\\|90\\|SP\\)-\\([0-9A-F]+\\);" str)
72   ;;        (setq plane (match-string 1 str)
73   ;;              code (string-to-int (match-string 2 str) 16))
74   ;;        (insert (format "<a href=\"%s"
75   ;;                        www-ids-find-char-viewer-url))
76   ;;        (insert str)
77   ;;        (insert (format "\"><img alt=\"J%s-%04X\" src=\"/glyphs/JIS-%s/%02d-%02d.gif\">\n"
78   ;;                        plane code plane
79   ;;                        (- (lsh code -8) 32)
80   ;;                        (- (logand code 255) 32)))
81   ;;        (when code-desc
82   ;;          (insert (format "J%s-%04X</a>" plane code)))
83   ;;        )
84   ;;       ((string-match "&G\\([01]\\)-\\([0-9A-F]+\\);" str)
85   ;;        (setq plane (string-to-int (match-string 1 str))
86   ;;              code (string-to-int (match-string 2 str) 16))
87   ;;        (insert (format "<a href=\"%s"
88   ;;                        www-ids-find-char-viewer-url))
89   ;;        (insert str)
90   ;;        (insert (format "\"><img alt=\"G%d-%04X\" src=\"/glyphs/GB%d/%02d-%02d.gif\">\n"
91   ;;                        plane code plane
92   ;;                        (- (lsh code -8) 32)
93   ;;                        (- (logand code 255) 32)))
94   ;;        (when code-desc
95   ;;          (insert (format "G%d-%04X</a>" plane code)))
96   ;;        )
97   ;;       ((string-match "&C\\([1-7]\\)-\\([0-9A-F]+\\);" str)
98   ;;        (setq plane (string-to-int (match-string 1 str))
99   ;;              code (string-to-int (match-string 2 str) 16))
100   ;;        (insert (format "<a href=\"%s"
101   ;;                        www-ids-find-char-viewer-url))
102   ;;        (insert str)
103   ;;        (insert (format "\"><img alt=\"C%d-%04X\" src=\"/glyphs/CNS%d/%04X.gif\">\n"
104   ;;                        plane code plane code))
105   ;;        (when code-desc
106   ;;          (insert (format "C%d-%04X</a>" plane code)))
107   ;;        )
108   ;;       ((string-match "&ZOB-\\([0-9]+\\);" str)
109   ;;        (setq code (string-to-int (match-string 1 str)))
110   ;;        (insert (format "<a href=\"%s"
111   ;;                        www-ids-find-char-viewer-url))
112   ;;        (insert str)
113   ;;        (insert (format "\"><img alt=\"ZOB-%04d\" src=\"/glyphs/ZOB-1968/%04d.png\">\n"
114   ;;                        code code))
115   ;;        (when code-desc
116   ;;          (insert (format "ZOB-%04d</a>" code)))
117   ;;        )
118   ;;       (t
119   ;;        (insert (format "<a href=\"%s"
120   ;;                        www-ids-find-char-viewer-url))
121   ;;        ;; (insert str)
122   ;;        (insert
123   ;;         (mapconcat (lambda (c)
124   ;;                      (if (<= (char-int c) #x7F)
125   ;;                          (char-to-string c)
126   ;;                        (format "%%%02X" c)))
127   ;;                    str ""))
128   ;;        (insert "\">")
129   ;;        (insert str)
130   ;;        (insert "</a>")
131   ;;        ))
132   ;;      (goto-char (point-min))
133   ;;      (while (search-forward "&" nil t)
134   ;;        (replace-match "&amp;" t 'literal))
135   ;;      (buffer-string))))
136   )
137   
138 (defun www-ids-find-format-line (c is)
139   (let (ucs len i ids)
140     (princ "<span class=\"entry\">")
141     (www-ids-find-format-char c 'code-desc)
142     (princ "</span>")
143     (princ
144      (or (if (setq ucs (or (char-ucs c)
145                            (encode-char c 'ucs)))
146              (format
147               " <a href=\"http://www.unicode.org/cgi-bin/GetUnihanData.pl?codepoint=%X\">%s</a>"
148               ucs
149               (cond ((<= ucs #xFFFF)
150                      (format "U+%04X" ucs))
151                     ((<= ucs #x10FFFF)
152                      (format "U-%08X" ucs))))
153            "          ")))
154     (when ucs
155       (princ
156        (format " <a href=\"%s%X\">(link map)</a>"
157                www-ids-find-chise-link-map-url-prefix ucs)))
158     (princ " ")
159     (when is
160       (setq ids (ideographic-structure-to-ids is))
161       (setq i 0
162             len (length ids))
163       (princ "<span class=\"ids\">")      
164       (while (< i len)
165         (www-ids-find-format-char (aref ids i))
166         (setq i (1+ i)))
167       (princ "</span>"))
168     (when (and ucs
169                (with-current-buffer
170                    (find-file-noselect
171                     www-ids-find-tang-chars-file-name)
172                  (goto-char (point-min))
173                  (re-search-forward (format "^%d$" ucs) nil t)))
174       (princ
175        (format " <a href=\"http://coe21.zinbun.kyoto-u.ac.jp/djvuchar?query=%s\">"
176                (mapconcat
177                 (lambda (c)
178                   (format "%%%02X" (char-int c)))
179                 (encode-coding-string (char-to-string c)
180                                       'utf-8-jp)
181                 "")))
182       (princ (encode-coding-string "\e$B"M\e(B[\e$BEbBeBsK\\e(B]</a>" 'utf-8-jp-er)))
183     (princ "<br>\n")))
184
185 (defun www-ids-insert-chars-including-components (components
186                                                   &optional ignored-chars)
187   (let ((products (ideographic-products-find components))
188         is as bs len ignore-children)
189     (setq len (length products))
190     (when (>= len 1024)
191       (setq ignore-children t)
192       (princ
193        (encode-coding-string
194         "<p>\e$B7k2L$,B?$9$.$k$?$a!":F5"E*8!:w$r>JN,$7$^$7$?!#\e(B</p>"
195         'utf-8-jp-er)))
196     (if (>= len 2048)
197         (dolist (c products)
198           (www-ids-find-format-char c))
199       (princ "<ul>\n")
200       (dolist (c (cond
201                   ;; ((>= len 2048)
202                   ;;  (setq ignore-children t)
203                   ;;  products)
204                   ;; ((>= len 1024)
205                   ;;  products)
206                   ((>= len 1024)
207                    (sort (copy-list products)
208                          (lambda (a b)
209                            (< (char-int a)(char-int b))))
210                    )
211                   ((>= len 512)
212                    (sort (copy-list products)
213                          (lambda (a b)
214                            (if (setq as (char-total-strokes a))
215                                (if (setq bs (char-total-strokes b))
216                                    (if (= as bs)
217                                        (< (char-int a)(char-int b))
218                                      (< as bs))
219                                  t)
220                              (< (char-int a)(char-int b)))))
221                    )
222                   (t
223                    (sort (copy-list products)
224                          (lambda (a b)
225                            (if (setq as (char-total-strokes a))
226                                (if (setq bs (char-total-strokes b))
227                                    (if (= as bs)
228                                        (ideograph-char< a b)
229                                      (< as bs))
230                                  t)
231                              (ideograph-char< a b))))
232                    )))
233         (unless (memq c ignored-chars)
234           (setq is (char-feature c 'ideographic-structure))
235           (princ "<li>")
236           (www-ids-find-format-line c is)
237           (unless ignore-children
238             ;; (princ "<ul>\n")
239             (setq ignored-chars
240                   (www-ids-insert-chars-including-components
241                    (char-to-string c)
242                    (cons c ignored-chars)))
243             ;; (princ "</ul>\n")
244             ))
245         )
246       (princ "</ul>\n")
247       ))
248   ignored-chars)
249
250 (defun www-batch-ids-find ()
251   (let ((components (car command-line-args-left))
252         (coded-charset-entity-reference-alist
253          (list*
254           '(=cns11643-1         "C1-" 4 X)
255           '(=cns11643-2         "C2-" 4 X)
256           '(=cns11643-3         "C3-" 4 X)
257           '(=cns11643-4         "C4-" 4 X)
258           '(=cns11643-5         "C5-" 4 X)
259           '(=cns11643-6         "C6-" 4 X)
260           '(=cns11643-7         "C7-" 4 X)
261           '(=gb2312             "G0-" 4 X)
262           '(=gb12345            "G1-" 4 X)
263           '(=jis-x0208@1990     "J90-" 4 X)
264           '(=jis-x0212          "JSP-" 4 X)
265           '(=cbeta              "CB" 5 d)
266           '(=jef-china3         "JC3-" 4 X)
267           '(=jis-x0208@1978     "J78-" 4 X)
268           '(=jis-x0208@1983     "J83-" 4 X)
269           '(=daikanwa           "M-" 5 d)
270           coded-charset-entity-reference-alist))
271         )
272     (setq command-line-args-left (cdr command-line-args-left))
273     (cond
274      ((stringp components)
275       (if (string-match "^components=" components)
276           (setq components (substring components (match-end 0))))
277       (setq components
278             (if (> (length components) 0)
279                 (decode-url-string components 'utf-8-er)
280               nil))
281       )
282      (t
283       (setq components nil)
284       ))
285     (princ "Content-Type: text/html; charset=UTF-8
286
287 <!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"
288             \"http://www.w3.org/TR/html4/loose.dtd\">
289 <html lang=\"ja\">
290 <head>
291 <title>CHISE IDS Find</title>
292 <style type=\"text/css\">
293 <!--
294 .entry { font-size: 36px; }
295 .entry a img { height: 36px; }
296 .ids { font-size: 24px; }
297 .ids a img { height: 24px; }
298 img { vertical-align:middle; }
299 a { text-decoration:none; }
300 ul { margin: 0 0; }
301 li { margin: 0 0 -0.2em; }
302 .tooltip {
303     position: relative;
304     display: inline-block;
305 }
306 .tooltip .tooltiptext {
307     display: none;
308 }
309 -->
310 </style>
311 </head>
312
313 <body>
314
315 <h1>")
316     (princ (encode-coding-string "CHISE IDS \e$B4A;z8!:w\e(B" 'utf-8-jp-er))
317     (princ "</h1>")
318     (princ "
319 <p>Version ")
320     (princ www-ids-find-version)
321     (princ (format-time-string
322             " (Last-modified: %Y-%m-%d %H:%M:%S)"
323             (nth 5
324                  (file-attributes
325                   www-ids-find-ideographic-products-file-name))))
326     (princ "
327 <hr>
328 <p>
329 <form action=\"/ids-find\" method=\"GET\">
330 ")
331     (princ (encode-coding-string "\e$BItIJJ8;zNs\e(B" 'utf-8-jp-er))
332     (princ " <input type=\"text\" name=\"components\" size=\"30\" maxlength=\"30\" value=\"")
333     (if (> (length components) 0)
334         (princ (encode-coding-string components 'utf-8-er)))
335     (princ "\">
336 <input type=\"submit\" value=\"")
337     (princ (encode-coding-string "\e$B8!:w3+;O\e(B" 'utf-8-jp-er))
338     (princ "\">
339 </form>
340
341 ")
342     (unless (file-newer-than-file-p
343              www-ids-find-ideographic-products-file-name
344              (locate-file (car command-line-args) exec-path))
345       (princ (encode-coding-string "<hr>
346 <p>
347 \e$B8=:_!"%7%9%F%`$N99?7:n6HCf$G$9!#$7$P$i$/$*BT$A$/$@$5$$!#\e(B
348 <hr>
349 " 'utf-8-jp-er))
350       ;; (setq components nil)
351       )
352     (cond
353      (components
354       ;; (map-char-attribute
355       ;;  (lambda (c v)
356       ;;    (when (every (lambda (p)
357       ;;                   (ideographic-structure-member p v))
358       ;;                 components)
359       ;;      (princ (encode-coding-string
360       ;;              (ids-find-format-line c v)
361       ;;              'utf-8-jp-er))
362       ;;      (princ "<br>\n")
363       ;;      )
364       ;;    nil)
365       ;;  'ideographic-structure)
366       (when (= (length components) 1)
367         (www-ids-find-format-line (aref components 0)
368                                   (char-feature (aref components 0)
369                                                 'ideographic-structure)))
370       ;; (dolist (c (ideographic-products-find components))
371       ;;   (setq is (char-feature c 'ideographic-structure))
372       ;;   ;; to avoid problems caused by wrong indexes
373       ;;   (when (every (lambda (c)
374       ;;                  (ideographic-structure-member c is))
375       ;;                components)
376       ;;     (www-ids-find-format-line c is)))
377       ;; (princ "<ul>\n")
378       (www-ids-insert-chars-including-components components)
379       ;; (princ "</ul>\n")
380       )
381      (t
382       (princ (encode-coding-string "<hr>
383 <p>
384 \e$B;XDj$7$?ItIJ$rA4$F4^$`4A;z$N0lMw$rI=<($7$^$9!#\e(B
385 <p>
386 CHISE \e$B$GMQ$$$i$l$k<BBV;2>H7A<0!JNc!'\e(B&amp;M-00256;\e$B!K$GItIJ$r;XDj$9$k;v$b$G$-$^$9!#\e(B" 'utf-8-jp-er))
387       (princ (encode-coding-string "
388 <p>
389 \[Links\]
390 <ul>
391 <li><a href=\"http://www.shuiren.org/chuden/toyoshi/syoseki/chise_ids.html\"
392 >\e$B!V\e(BCHISE IDS FIND\e$B$G4A;z$r8!:w!W\e(B</a> \e$B!=\e(B \e$B;3ED?r?N$5$s!J\e(B<a
393 href=\"http://www.shuiren.org/\">\e$B?g?MDb\e(B</a>\e$B!K$K$h$k2r@b\e(B
394 </ul>
395 <ul>
396 <li><a href=\"http://www.karitsu.org/tools/firefox_plugin.htm\"
397 >Firefox \e$BMQ\e(B plugin</a> by \e$B=);3M[0lO:$5$s!J\e(B<a href=\"http://www.karitsu.org/\"
398 >\e$B2aN)c7\e(B</a>\e$B!K\e(B
399 </ul>
400 <ul>
401 <li><a href=\"http://cvs.m17n.org/viewcvs/chise/ids/www/www-ids-find.el?view=markup\"
402 >www-ids-find.el (source file (Emacs Lisp part))
403 <li><a href=\"http://www.chise.org/ids/\"
404 >\e$B!V\e(BCHISE \e$B4A;z9=B$>pJs%G!<%?%Y!<%9!W\e(B</a>
405 <li><a href=\"http://fonts.jp/chise_linkmap/\"
406 >\e$B!V\e(Bchise_linkmap : CHISE \e$B4A;zO"4D?^!W\e(B</a> by \e$B>eCO9(0l$5$s\e(B
407 <li><a href=\"http://www.chise.org/\"
408 >CHISE Project</a>
409 </ul>
410 <ul>
411 <li><a href=\"http://coe21.zinbun.kyoto-u.ac.jp/djvuchar\"
412 >\e$B!VBsK\J8;z%G!<%?%Y!<%9!W\e(B</a> by
413 <a href=\"http://coe21.zinbun.kyoto-u.ac.jp/\"
414 >\e$B5~ETBg3X\e(B21\e$B@$5*\e(BCOE\e$B!VEl%"%8%"@$3&$N?MJ8>pJs3X8&5f650i5rE@!W\e(B</a>
415 <li><a href=\"http://www.unicode.org/\"
416 >Unicode</a>
417 </ul>"
418  'utf-8-jp-er))
419
420       ))
421     (princ "<hr>")
422     (princ "<p>
423 Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2015 <a href=\"http://kanji.zinbun.kyoto-u.ac.jp/~tomo/\"
424 >MORIOKA Tomohiko</a>")
425     (princ
426      (format
427       "<p>Powered by <a
428 href=\"http://www.chise.org/xemacs/\"
429 >XEmacs CHISE</a> %s."
430       (encode-coding-string xemacs-chise-version 'utf-8-jp-er)))
431     (princ "
432 </body>
433 </html>
434 ")))