(insert-binary-file-contents): New function.
[elisp/apel.git] / emu-nemacs.el
1 ;;; emu-nemacs.el --- emu API implementation for NEmacs
2
3 ;; Copyright (C) 1995,1996,1997,1998 MORIOKA Tomohiko
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Keywords: emulation, compatibility, NEmacs, mule
7
8 ;; This file is part of emu.
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Code:
26
27 (require 'emu-18)
28
29
30 ;;; @ character set
31 ;;;
32
33 (defconst charset-ascii 0 "Character set of ASCII")
34 (defconst charset-jisx0208 146 "Character set of JIS X0208-1983")
35
36 (defun charset-description (charset)
37   "Return description of CHARSET. [emu-nemacs.el]"
38   (if (< charset 128)
39       (documentation-property 'charset-ascii 'variable-documentation)
40     (documentation-property 'charset-jisx0208 'variable-documentation)
41     ))
42
43 (defun charset-registry (charset)
44   "Return registry name of CHARSET. [emu-nemacs.el]"
45   (if (< charset 128)
46       "ASCII"
47     "JISX0208.1983"))
48
49 (defun charset-columns (charset)
50   "Return number of columns a CHARSET occupies when displayed.
51 \[emu-nemacs.el]"
52   (if (< charset 128)
53       1
54     2))
55
56 (defun charset-direction (charset)
57   "Return the direction of a character of CHARSET by
58   0 (left-to-right) or 1 (right-to-left). [emu-nemacs.el]"
59   0)
60
61 (defun find-charset-string (str)
62   "Return a list of charsets in the string.
63 \[emu-nemacs.el; Mule emulating function]"
64   (if (string-match "[\200-\377]" str)
65       (list lc-jp)
66     ))
67
68 (defalias 'find-non-ascii-charset-string 'find-charset-string)
69
70 (defun find-charset-region (start end)
71   "Return a list of charsets in the region between START and END.
72 \[emu-nemacs.el; Mule emulating function]"
73   (if (save-excursion
74         (save-restriction
75           (narrow-to-region start end)
76           (goto-char start)
77           (re-search-forward "[\200-\377]" nil t)
78           ))
79       (list lc-jp)
80     ))
81
82 (defalias 'find-non-ascii-charset-region 'find-charset-region)
83
84 (defun check-ASCII-string (str)
85   (let ((i 0)
86         len)
87     (setq len (length str))
88     (catch 'label
89       (while (< i len)
90         (if (>= (elt str i) 128)
91             (throw 'label nil))
92         (setq i (+ i 1))
93         )
94       str)))
95
96 ;;; @@ for old MULE emulation
97 ;;;
98
99 (defconst lc-ascii 0)
100 (defconst lc-jp  146)
101
102
103 ;;; @ coding system
104 ;;;
105
106 (defconst *noconv*    0)
107 (defconst *sjis*      1)
108 (defconst *junet*     2)
109 (defconst *ctext*     2)
110 (defconst *internal*  3)
111 (defconst *euc-japan* 3)
112
113 (defun decode-coding-string (string coding-system)
114   "Decode the STRING which is encoded in CODING-SYSTEM.
115 \[emu-nemacs.el; EMACS 20 emulating function]"
116   (if (eq coding-system 3)
117       string
118     (convert-string-kanji-code string coding-system 3)
119     ))
120
121 (defun encode-coding-string (string coding-system)
122   "Encode the STRING to CODING-SYSTEM.
123 \[emu-nemacs.el; EMACS 20 emulating function]"
124   (if (eq coding-system 3)
125       string
126     (convert-string-kanji-code string 3 coding-system)
127     ))
128
129 (defun decode-coding-region (start end coding-system)
130   "Decode the text between START and END which is encoded in CODING-SYSTEM.
131 \[emu-nemacs.el; EMACS 20 emulating function]"
132   (if (/= ic oc)
133       (save-excursion
134         (save-restriction
135           (narrow-to-region start end)
136           (convert-region-kanji-code start end coding-system 3)
137           ))))
138
139 (defun encode-coding-region (start end coding-system)
140   "Encode the text between START and END to CODING-SYSTEM.
141 \[emu-nemacs.el; EMACS 20 emulating function]"
142   (if (/= ic oc)
143       (save-excursion
144         (save-restriction
145           (narrow-to-region start end)
146           (convert-region-kanji-code start end 3 coding-system)
147           ))))
148
149 (defun detect-coding-region (start end)
150   "Detect coding-system of the text in the region between START and END.
151 \[emu-nemacs.el; Emacs 20 emulating function]"
152   (if (save-excursion
153         (save-restriction
154           (narrow-to-region start end)
155           (goto-char start)
156           (re-search-forward "[\200-\377]" nil t)
157           ))
158       *euc-japan*
159     ))
160
161 (defalias 'set-buffer-file-coding-system 'set-kanji-fileio-code)
162
163 (defmacro as-binary-process (&rest body)
164   (` (let (selective-display    ; Disable ^M to nl translation.
165            ;; NEmacs
166            kanji-flag
167            (default-kanji-process-code 0)
168            program-kanji-code-alist)
169        (,@ body)
170        )))
171
172 (defmacro as-binary-input-file (&rest body)
173   (` (let (kanji-flag)
174        (,@ body)
175        )))
176
177 (defmacro as-binary-output-file (&rest body)
178   (` (let (kanji-flag)
179        (,@ body)
180        )))
181
182
183 ;;; @@ for old MULE emulation
184 ;;;
185
186 (defun code-convert-string (str ic oc)
187   "Convert code in STRING from SOURCE code to TARGET code,
188 On successful converion, returns the result string,
189 else returns nil. [emu-nemacs.el; Mule emulating function]"
190   (if (not (eq ic oc))
191       (convert-string-kanji-code str ic oc)
192     str))
193
194 (defun code-convert-region (beg end ic oc)
195   "Convert code of the text between BEGIN and END from SOURCE
196 to TARGET. On successful conversion returns t,
197 else returns nil. [emu-nemacs.el; Mule emulating function]"
198   (if (/= ic oc)
199       (save-excursion
200         (save-restriction
201           (narrow-to-region beg end)
202           (convert-region-kanji-code beg end ic oc)
203           ))))
204
205
206 ;;; @ binary access
207 ;;;
208
209 (defun insert-binary-file-contents-literally
210   (filename &optional visit beg end replace)
211   "Like `insert-file-contents-literally', q.v., but don't code conversion.
212 A buffer may be modified in several ways after reading into the buffer due
213 to advanced Emacs features, such as file-name-handlers, format decoding,
214 find-file-hooks, etc.
215   This function ensures that none of these modifications will take place.
216 \[emu-nemacs.el]"
217   (let (kanji-flag)
218     (insert-file-contents-literally filename visit beg end replace)
219     ))
220
221 (defun insert-binary-file-contents
222   (filename &optional visit beg end replace)
223   "Like `insert-file-contents', q.v., but don't code and format conversion.
224 \[emu-nemacs.el]"
225   (let (kanji-flag)
226     (insert-file-contents filename visit beg end replace)
227     ))
228
229
230 ;;; @ MIME charset
231 ;;;
232
233 (defvar charsets-mime-charset-alist
234   (list (cons (list charset-ascii) 'us-ascii)))
235
236 (defvar default-mime-charset 'iso-2022-jp)
237
238 (defvar mime-charset-coding-system-alist
239   '((iso-2022-jp     . 2)
240     (shift_jis       . 1)
241     ))
242
243 (defun mime-charset-to-coding-system (charset)
244   (if (stringp charset)
245       (setq charset (intern (downcase charset)))
246     )
247   (cdr (assq charset mime-charset-coding-system-alist))
248   )
249
250 (defun detect-mime-charset-region (start end)
251   "Return MIME charset for region between START and END.
252 \[emu-nemacs.el]"
253   (if (save-excursion
254         (save-restriction
255           (narrow-to-region start end)
256           (goto-char start)
257           (re-search-forward "[\200-\377]" nil t)
258           ))
259       default-mime-charset
260     'us-ascii))
261
262 (defun encode-mime-charset-region (start end charset)
263   "Encode the text between START and END as MIME CHARSET.
264 \[emu-nemacs.el]"
265   (let ((cs (mime-charset-to-coding-system charset)))
266     (and (numberp cs)
267          (or (= cs 3)
268              (save-excursion
269                (save-restriction
270                  (narrow-to-region start end)
271                  (convert-region-kanji-code start end 3 cs)
272                  ))
273              ))))
274
275 (defun decode-mime-charset-region (start end charset)
276   "Decode the text between START and END as MIME CHARSET.
277 \[emu-nemacs.el]"
278   (let ((cs (mime-charset-to-coding-system charset)))
279     (and (numberp cs)
280          (or (= cs 3)
281              (save-excursion
282                (save-restriction
283                  (narrow-to-region start end)
284                  (convert-region-kanji-code start end cs 3)
285                  ))
286              ))))
287
288 (defun encode-mime-charset-string (string charset)
289   "Encode the STRING as MIME CHARSET. [emu-nemacs.el]"
290   (let ((cs (mime-charset-to-coding-system charset)))
291     (if cs
292         (convert-string-kanji-code string 3 cs)
293       string)))
294
295 (defun decode-mime-charset-string (string charset)
296   "Decode the STRING as MIME CHARSET. [emu-nemacs.el]"
297   (let ((cs (mime-charset-to-coding-system charset)))
298     (if cs
299         (convert-string-kanji-code string cs 3)
300       string)))
301
302
303 ;;; @ character
304 ;;;
305
306 (defun char-charset (chr)
307   "Return the character set of char CHR.
308 \[emu-nemacs.el; XEmacs 20 emulating function]"
309   (if (< chr 128)
310       charset-ascii
311     charset-jisx0208))
312
313 (defun char-bytes (chr)
314   "Return number of bytes CHAR will occupy in a buffer.
315 \[emu-nemacs.el; Mule emulating function]"
316   (if (< chr 128) 1 2))
317
318 (defalias 'char-length 'char-bytes)
319
320 (defun char-columns (character)
321   "Return number of columns a CHARACTER occupies when displayed.
322 \[emu-nemacs.el]"
323   (if (< character 128)
324       1
325     2))
326
327 ;;; @@ for Mule emulation
328 ;;;
329
330 (defalias 'char-leading-char 'char-charset)
331
332 (defalias 'char-width 'char-columns)
333
334
335 ;;; @ string
336 ;;;
337
338 (defalias 'string-columns 'length)
339
340 (defun sref (str idx)
341   "Return the character in STR at index IDX.
342 \[emu-nemacs.el; Mule emulating function]"
343   (let ((chr (aref str idx)))
344     (if (< chr 128)
345         chr
346       (logior (lsh (aref str (1+ idx)) 8) chr)
347       )))
348
349 (defun string-to-char-list (str)
350   (let ((i 0)(len (length str)) dest chr)
351     (while (< i len)
352       (setq chr (aref str i))
353       (if (>= chr 128)
354           (setq i (1+ i)
355                 chr (+ (lsh chr 8) (aref str i))
356                 ))
357       (setq dest (cons chr dest))
358       (setq i (1+ i))
359       )
360     (reverse dest)
361     ))
362
363 (fset 'string-to-int-list (symbol-function 'string-to-char-list))
364
365 ;;; Imported from Mule-2.3
366 (defun truncate-string (str width &optional start-column)
367   "Truncate STR to fit in WIDTH columns.
368 Optional non-nil arg START-COLUMN specifies the starting column.
369 \[emu-mule.el; Mule 2.3 emulating function]"
370   (or start-column
371       (setq start-column 0))
372   (let ((max-width (string-width str))
373         (len (length str))
374         (from 0)
375         (column 0)
376         to-prev to ch)
377     (if (>= width max-width)
378         (setq width max-width))
379     (if (>= start-column width)
380         ""
381       (while (< column start-column)
382         (setq ch (aref str from)
383               column (+ column (char-columns ch))
384               from (+ from (char-bytes ch))))
385       (if (< width max-width)
386           (progn
387             (setq to from)
388             (while (<= column width)
389               (setq ch (aref str to)
390                     column (+ column (char-columns ch))
391                     to-prev to
392                     to (+ to (char-bytes ch))))
393             (setq to to-prev)))
394       (substring str from to))))
395
396 ;;; @@ for Mule emulation
397 ;;;
398
399 (defalias 'string-width 'length)
400
401
402 ;;; @ text property emulation
403 ;;;
404
405 (defvar emu:available-face-attribute-alist
406   '(
407     ;;(bold      . inversed-region)
408     (italic    . underlined-region)
409     (underline . underlined-region)
410     ))
411
412 ;; by YAMATE Keiichirou 1994/10/28
413 (defun attribute-add-narrow-attribute (attr from to)
414   (or (consp (symbol-value attr))
415       (set attr (list 1)))
416   (let* ((attr-value (symbol-value attr))
417          (len (car attr-value))
418          (posfrom 1)
419          posto)
420     (while (and (< posfrom len)
421                 (> from (nth posfrom attr-value)))
422       (setq posfrom (1+ posfrom)))
423     (setq posto posfrom)
424     (while (and (< posto len)
425                 (> to (nth posto attr-value)))
426       (setq posto (1+ posto)))
427     (if  (= posto posfrom)
428         (if (= (% posto 2) 1)
429             (if (and (< to len)
430                      (= to (nth posto attr-value)))
431                 (set-marker (nth posto attr-value) from)
432               (setcdr (nthcdr (1- posfrom) attr-value)
433                       (cons (set-marker-type (set-marker (make-marker)
434                                                          from)
435                                              'point-type)
436                             (cons (set-marker-type (set-marker (make-marker)
437                                                                to)
438                                                    nil)
439                                   (nthcdr posto attr-value))))
440               (setcar attr-value (+ len 2))))
441       (if (= (% posfrom 2) 0)
442           (setq posfrom (1- posfrom))
443         (set-marker (nth posfrom attr-value) from))
444       (if (= (% posto 2) 0)
445           nil
446         (setq posto (1- posto))
447         (set-marker (nth posto attr-value) to))
448       (setcdr (nthcdr posfrom attr-value)
449               (nthcdr posto attr-value)))))
450
451 (defalias 'make-overlay 'cons)
452
453 (defun overlay-put (overlay prop value)
454   (let ((ret (and (eq prop 'face)
455                   (assq value emu:available-face-attribute-alist)
456                   )))
457     (if ret
458         (attribute-add-narrow-attribute (cdr ret)
459                                         (car overlay)(cdr overlay))
460       )))
461
462
463 ;;; @ end
464 ;;;
465
466 (provide 'emu-nemacs)
467
468 ;;; emu-nemacs.el ends here