update keywords.
[elisp/apel.git] / poem-nemacs.el
1 ;;; poem-nemacs.el --- poem implementation for Nemacs
2
3 ;; Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Keywords: emulation, compatibility, Mule
7
8 ;; This file is part of APEL (A Portable Emacs Library).
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 ;;; @ character set
28 ;;;
29
30 (put 'ascii
31      'charset-description "Character set of ASCII")
32 (put 'ascii
33      'charset-registry "ASCII")
34
35 (put 'japanese-jisx0208
36      'charset-description "Character set of JIS X0208-1983")
37 (put 'japanese-jisx0208
38      'charset-registry "JISX0208.1983")
39
40 (defun charset-description (charset)
41   "Return description of CHARSET. [emu-nemacs.el]"
42   (get charset 'charset-description))
43
44 (defun charset-registry (charset)
45   "Return registry name of CHARSET. [emu-nemacs.el]"
46   (get charset 'charset-registry))
47
48 (defun charset-width (charset)
49   "Return number of columns a CHARSET occupies when displayed.
50 \[emu-nemacs.el]"
51   (if (eq charset 'ascii)
52       1
53     2))
54
55 (defun charset-direction (charset)
56   "Return the direction of a character of CHARSET by
57   0 (left-to-right) or 1 (right-to-left). [emu-nemacs.el]"
58   0)
59
60 (defun find-charset-string (str)
61   "Return a list of charsets in the string.
62 \[emu-nemacs.el; Mule emulating function]"
63   (if (string-match "[\200-\377]" str)
64       '(japanese-jisx0208)
65     ))
66
67 (defalias 'find-non-ascii-charset-string 'find-charset-string)
68
69 (defun find-charset-region (start end)
70   "Return a list of charsets in the region between START and END.
71 \[emu-nemacs.el; Mule emulating function]"
72   (if (save-excursion
73         (save-restriction
74           (narrow-to-region start end)
75           (goto-char start)
76           (re-search-forward "[\200-\377]" nil t)))
77       '(japanese-jisx0208)
78     ))
79
80 (defalias 'find-non-ascii-charset-region 'find-charset-region)
81
82 (defun check-ASCII-string (str)
83   (let ((i 0)
84         len)
85     (setq len (length str))
86     (catch 'label
87       (while (< i len)
88         (if (>= (elt str i) 128)
89             (throw 'label nil))
90         (setq i (+ i 1)))
91       str)))
92
93 ;;; @@ for old MULE emulation
94 ;;;
95
96 ;;(defconst lc-ascii 0)
97 ;;(defconst lc-jp  146)
98
99
100 ;;; @ coding system
101 ;;;
102
103 (defvar coding-system-kanji-code-alist
104   '((binary      . 0)
105     (raw-text    . 0)
106     (shift_jis   . 1)
107     (iso-2022-jp . 2)
108     (ctext       . 2)
109     (euc-jp      . 3)
110     ))
111
112 (defun decode-coding-string (string coding-system)
113   "Decode the STRING which is encoded in CODING-SYSTEM.
114 \[emu-nemacs.el; EMACS 20 emulating function]"
115   (let ((code (if (integerp coding-system)
116                   coding-system
117                 (cdr (assq coding-system coding-system-kanji-code-alist)))))
118     (if (eq code 3)
119         string
120       (convert-string-kanji-code string code 3)
121       )))
122
123 (defun encode-coding-string (string coding-system)
124   "Encode the STRING to CODING-SYSTEM.
125 \[emu-nemacs.el; EMACS 20 emulating function]"
126   (let ((code (if (integerp coding-system)
127                   coding-system
128                 (cdr (assq coding-system coding-system-kanji-code-alist)))))
129     (if (eq code 3)
130         string
131       (convert-string-kanji-code string 3 code)
132       )))
133
134 (defun decode-coding-region (start end coding-system)
135   "Decode the text between START and END which is encoded in CODING-SYSTEM.
136 \[emu-nemacs.el; EMACS 20 emulating function]"
137   (let ((code (if (integerp coding-system)
138                   coding-system
139                 (cdr (assq coding-system coding-system-kanji-code-alist)))))
140     (save-excursion
141       (save-restriction
142         (narrow-to-region start end)
143         (convert-region-kanji-code start end code 3)
144         ))))
145
146 (defun encode-coding-region (start end coding-system)
147   "Encode the text between START and END to CODING-SYSTEM.
148 \[emu-nemacs.el; EMACS 20 emulating function]"
149   (let ((code (if (integerp coding-system)
150                   coding-system
151                 (cdr (assq coding-system coding-system-kanji-code-alist)))))
152     (save-excursion
153       (save-restriction
154         (narrow-to-region start end)
155         (convert-region-kanji-code start end 3 code)
156         ))))
157
158 (defun detect-coding-region (start end)
159   "Detect coding-system of the text in the region between START and END.
160 \[emu-nemacs.el; Emacs 20 emulating function]"
161   (if (save-excursion
162         (save-restriction
163           (narrow-to-region start end)
164           (goto-char start)
165           (re-search-forward "[\200-\377]" nil t)))
166       'euc-jp
167     ))
168
169 (defalias 'set-buffer-file-coding-system 'set-kanji-fileio-code)
170
171
172 ;;; @ without code-conversion
173 ;;;
174
175 (defmacro as-binary-process (&rest body)
176   (` (let (selective-display    ; Disable ^M to nl translation.
177            ;; NEmacs
178            kanji-flag
179            (default-kanji-process-code 0)
180            program-kanji-code-alist)
181        (,@ body))))
182
183 (defmacro as-binary-input-file (&rest body)
184   (` (let (kanji-flag default-kanji-flag)
185        (,@ body))))
186
187 (defmacro as-binary-output-file (&rest body)
188   (` (let (kanji-flag)
189        (,@ body))))
190
191 (defun write-region-as-binary (start end filename
192                                      &optional append visit lockname)
193   "Like `write-region', q.v., but don't code conversion. [emu-nemacs.el]"
194   (as-binary-output-file
195    (write-region start end filename append visit)))
196
197 (defun insert-file-contents-as-binary (filename
198                                        &optional visit beg end replace)
199   "Like `insert-file-contents', q.v., but don't character code conversion.
200 \[emu-nemacs.el]"
201   (as-binary-input-file
202    ;; Returns list absolute file name and length of data inserted.
203    (insert-file-contents filename visit)))
204
205 (defun insert-file-contents-as-raw-text (filename
206                                          &optional visit beg end replace)
207   "Like `insert-file-contents', q.v., but don't character code conversion.
208 It converts line-break code from CRLF to LF. [emu-nemacs.el]"
209   (save-restriction
210     (narrow-to-region (point) (point))
211     (let ((return (as-binary-input-file
212                    (insert-file-contents filename visit))))
213       (while (search-forward "\r\n" nil t)
214         (replace-match "\n"))
215       (goto-char (point-min))
216       ;; Returns list absolute file name and length of data inserted.
217       (list (car return) (- (point-max) (point-min))))))
218
219 (defalias 'insert-file-contents-as-raw-text-CRLF
220   'insert-file-contents-as-raw-text)
221
222 (defun write-region-as-raw-text-CRLF (start end filename
223                                             &optional append visit lockname)
224   "Like `write-region', q.v., but don't code conversion. [emu-nemacs.el]"
225   (let ((the-buf (current-buffer)))
226     (with-temp-buffer
227       (insert-buffer-substring the-buf start end)
228       (goto-char (point-min))
229       (while (re-search-forward "\\(\\=\\|[^\r]\\)\n" nil t)
230         (replace-match "\\1\r\n"))
231       (write-region-as-binary (point-min)(point-max)
232                               filename append visit))))
233
234 (defun find-file-noselect-as-binary (filename &optional nowarn rawfile)
235   "Like `find-file-noselect', q.v., but don't code conversion.
236 \[emu-nemacs.el]"
237   (as-binary-input-file (find-file-noselect filename nowarn)))
238
239 (defun find-file-noselect-as-raw-text (filename &optional nowarn rawfile)
240   "Like `find-file-noselect', q.v., but it does not code conversion
241 except for line-break code. [emu-nemacs.el]"
242   (let ((buf (get-file-buffer filename))
243         cur)
244     (if buf
245         (prog1
246             buf
247           (or nowarn
248               (verify-visited-file-modtime buf)
249               (cond ((not (file-exists-p filename))
250                      (error "File %s no longer exists!" filename))
251                     ((yes-or-no-p
252                       (if (buffer-modified-p buf)
253     "File has changed since last visited or saved.  Flush your changes? "
254   "File has changed since last visited or saved.  Read from disk? "))
255                      (setq cur (current-buffer))
256                      (set-buffer buf)
257                      (revert-buffer t t)
258                      (save-excursion
259                        (goto-char (point-min))
260                        (while (search-forward "\r\n" nil t)
261                          (replace-match "\n")))
262                      (set-buffer-modified-p nil)
263                      (set-buffer cur)))))
264       (save-excursion
265         (prog1
266             (set-buffer
267              (find-file-noselect-as-binary filename nowarn rawfile))
268           (while (search-forward "\r\n" nil t)
269             (replace-match "\n"))
270           (goto-char (point-min))
271           (set-buffer-modified-p nil))))))
272
273 (defalias 'find-file-noselect-as-raw-text-CRLF
274   'find-file-noselect-as-raw-text)
275
276 (defun open-network-stream-as-binary (name buffer host service)
277   "Like `open-network-stream', q.v., but don't code conversion.
278 \[emu-nemacs.el]"
279   (let ((process (open-network-stream name buffer host service)))
280     (set-process-kanji-code process 0)
281     process))
282
283 (defun save-buffer-as-binary (&optional args)
284   "Like `save-buffer', q.v., but don't encode. [emu-nemacs.el]"
285   (as-binary-output-file
286    (save-buffer args)))
287
288 (defun save-buffer-as-raw-text-CRLF (&optional args)
289   "Like `save-buffer', q.v., but save as network representation.
290 \[emu-nemacs.el]"
291   (if (buffer-modified-p)
292       (save-restriction
293         (widen)
294         (let ((the-buf (current-buffer))
295               (filename (buffer-file-name)))
296           (if filename
297               (prog1
298                   (with-temp-buffer
299                     (insert-buffer the-buf)
300                     (goto-char (point-min))
301                     (while (re-search-forward "\\(\\=\\|[^\r]\\)\n" nil t)
302                       (replace-match "\\1\r\n"))
303                     (setq buffer-file-name filename)
304                     (save-buffer-as-binary args))
305                 (set-buffer-modified-p nil)
306                 (clear-visited-file-modtime)))))))
307
308
309 ;;; @ with code-conversion
310 ;;;
311
312 (defun insert-file-contents-as-coding-system
313   (coding-system filename &optional visit beg end replace)
314   "Like `insert-file-contents', q.v., but CODING-SYSTEM the first arg will
315 be applied to `kanji-fileio-code'. [emu-nemacs.el]"
316   (let ((kanji-fileio-code coding-system)
317         kanji-expected-code)
318     (insert-file-contents filename visit)))
319
320 (defun write-region-as-coding-system
321   (coding-system start end filename &optional append visit lockname)
322   "Like `write-region', q.v., but CODING-SYSTEM the first arg will be
323 applied to `kanji-fileio-code'. [emu-nemacs.el]"
324   (let ((kanji-fileio-code coding-system)
325         jka-compr-compression-info-list jam-zcat-filename-list)
326     (write-region start end filename append visit)))
327
328 (defun find-file-noselect-as-coding-system
329   (coding-system filename &optional nowarn rawfile)
330   "Like `find-file-noselect', q.v., but CODING-SYSTEM the first arg will
331 be applied to `kanji-fileio-code'. [emu-nemacs.el]"
332   (let ((default-kanji-fileio-code coding-system)
333         kanji-fileio-code kanji-expected-code)
334     (find-file-noselect filename nowarn)))
335
336 (defun save-buffer-as-coding-system (coding-system &optional args)
337   "Like `save-buffer', q.v., but CODING-SYSTEM the first arg will be
338 applied to `kanji-fileio-code'. [emu-nemacs.el]"
339   (let ((kanji-fileio-code coding-system))
340     (save-buffer args)))
341
342
343 ;;; @ buffer representation
344 ;;;
345
346 (defsubst-maybe set-buffer-multibyte (flag)
347   "Set the multibyte flag of the current buffer to FLAG.
348 If FLAG is t, this makes the buffer a multibyte buffer.
349 If FLAG is nil, this makes the buffer a single-byte buffer.
350 The buffer contents remain unchanged as a sequence of bytes
351 but the contents viewed as characters do change.
352 \[Emacs 20.3 emulating function]"
353   (setq kanji-flag flag)
354   )
355
356
357 ;;; @ character
358 ;;;
359
360 (defun char-charset (chr)
361   "Return the character set of char CHR.
362 \[emu-nemacs.el; MULE emulating function]"
363   (if (< chr 128)
364       'ascii
365     'japanese-jisx0208))
366
367 (defun char-bytes (chr)
368   "Return number of bytes CHAR will occupy in a buffer.
369 \[emu-nemacs.el; Mule emulating function]"
370   (if (< chr 128)
371       1
372     2))
373
374 (defun char-width (char)
375   "Return number of columns a CHAR occupies when displayed.
376 \[emu-nemacs.el]"
377   (if (< char 128)
378       1
379     2))
380
381 (defalias 'char-length 'char-bytes)
382
383 (defmacro char-next-index (char index)
384   "Return index of character succeeding CHAR whose index is INDEX.
385 \[emu-nemacs.el]"
386   (` (+ (, index) (char-bytes (, char)))))
387
388
389 ;;; @ string
390 ;;;
391
392 (defalias 'string-width 'length)
393
394 (defun sref (str idx)
395   "Return the character in STR at index IDX.
396 \[emu-nemacs.el; Mule emulating function]"
397   (let ((chr (aref str idx)))
398     (if (< chr 128)
399         chr
400       (logior (lsh (aref str (1+ idx)) 8) chr))))
401
402 (defun string-to-char-list (str)
403   (let ((i 0)(len (length str)) dest chr)
404     (while (< i len)
405       (setq chr (aref str i))
406       (if (>= chr 128)
407           (setq i (1+ i)
408                 chr (+ (lsh chr 8) (aref str i)))
409         )
410       (setq dest (cons chr dest))
411       (setq i (1+ i)))
412     (reverse dest)))
413
414 (fset 'string-to-int-list (symbol-function 'string-to-char-list))
415
416 ;;; Imported from Mule-2.3
417 (defun truncate-string (str width &optional start-column)
418   "Truncate STR to fit in WIDTH columns.
419 Optional non-nil arg START-COLUMN specifies the starting column.
420 \[emu-mule.el; Mule 2.3 emulating function]"
421   (or start-column
422       (setq start-column 0))
423   (let ((max-width (string-width str))
424         (len (length str))
425         (from 0)
426         (column 0)
427         to-prev to ch)
428     (if (>= width max-width)
429         (setq width max-width))
430     (if (>= start-column width)
431         ""
432       (while (< column start-column)
433         (setq ch (aref str from)
434               column (+ column (char-columns ch))
435               from (+ from (char-bytes ch))))
436       (if (< width max-width)
437           (progn
438             (setq to from)
439             (while (<= column width)
440               (setq ch (aref str to)
441                     column (+ column (char-columns ch))
442                     to-prev to
443                     to (+ to (char-bytes ch))))
444             (setq to to-prev)))
445       (substring str from to))))
446
447 (defalias 'looking-at-as-unibyte 'looking-at)
448
449 ;;; @@ obsoleted aliases
450 ;;;
451 ;;; You should not use them.
452
453 (defalias 'string-columns 'length)
454
455
456 ;;; @ end
457 ;;;
458
459 (provide 'poem-nemacs)
460
461 ;;; poem-nemacs.el ends here