9875330e68e83f9952fc64f17914eb674af247c6
[elisp/apel.git] / poem-om.el
1 ;;; poem-om.el --- poem implementation for Mule 1.* and Mule 2.*
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 (require 'poe)
28
29
30 ;;; @ version specific features
31 ;;;
32
33 (cond ((= emacs-major-version 19)
34        ;; Suggested by SASAKI Osamu <osamu@shuugr.bekkoame.or.jp>
35        ;; (cf. [os2-emacs-ja:78])
36        (defun fontset-pixel-size (fontset)
37          (let* ((font (get-font-info
38                        (aref (cdr (get-fontset-info fontset)) 0)))
39                 (open (aref font 4)))
40            (if (= open 1)
41                (aref font 5)
42              (if (= open 0)
43                  (let ((pat (aref font 1)))
44                    (if (string-match "-[0-9]+-" pat)
45                        (string-to-number
46                         (substring
47                          pat (1+ (match-beginning 0)) (1- (match-end 0))))
48                      0))
49                ))))
50        ))
51
52
53 ;;; @ character set
54 ;;;
55
56 (defalias 'make-char 'make-character)
57
58 (defalias 'find-non-ascii-charset-string 'find-charset-string)
59 (defalias 'find-non-ascii-charset-region 'find-charset-region)
60
61 (defalias 'charset-bytes        'char-bytes)
62 (defalias 'charset-description  'char-description)
63 (defalias 'charset-registry     'char-registry)
64 (defalias 'charset-columns      'char-width)
65 (defalias 'charset-direction    'char-direction)
66
67 (defun charset-chars (charset)
68   "Return the number of characters per dimension of CHARSET."
69   (if (= (logand (nth 2 (character-set charset)) 1) 1)
70       96
71     94))
72
73
74 ;;; @ coding system
75 ;;;
76
77 (defun encode-coding-region (start end coding-system)
78   "Encode the text between START and END to CODING-SYSTEM.
79 \[EMACS 20 emulating function]"
80   ;; If `coding-system' is nil, do nothing.
81   (code-convert-region start end *internal* coding-system))
82
83 (defun decode-coding-region (start end coding-system)
84   "Decode the text between START and END which is encoded in CODING-SYSTEM.
85 \[EMACS 20 emulating function]"
86   ;; If `coding-system' is nil, do nothing.
87   (code-convert-region start end coding-system *internal*))
88
89 ;; XXX: Should we support optional NOCOPY argument? (only in Emacs 20.x)
90 (defun encode-coding-string (str coding-system)
91   "Encode the STRING to CODING-SYSTEM.
92 \[EMACS 20 emulating function]"
93   (if coding-system
94       (code-convert-string str *internal* coding-system)
95     ;;(code-convert-string str *internal* nil) returns nil instead of str.
96     str))
97
98 ;; XXX: Should we support optional NOCOPY argument? (only in Emacs 20.x)
99 (defun decode-coding-string (str coding-system)
100   "Decode the string STR which is encoded in CODING-SYSTEM.
101 \[EMACS 20 emulating function]"
102   (if coding-system
103       (let ((len (length str))
104             ret)
105         (while (and (< 0 len)
106                     (null (setq ret
107                                 (code-convert-string
108                                  (substring str 0 len)
109                                  coding-system *internal*))))
110           (setq len (1- len)))
111         (concat ret (substring str len)))
112     str))
113
114 (defalias 'detect-coding-region 'code-detect-region)
115
116 (defalias 'set-buffer-file-coding-system 'set-file-coding-system)
117
118
119 ;;; @ without code-conversion
120 ;;;
121
122 (defmacro as-binary-process (&rest body)
123   (` (let (selective-display    ; Disable ^M to nl translation.
124            ;; Mule
125            mc-flag      
126            (default-process-coding-system (cons *noconv* *noconv*))
127            program-coding-system-alist)
128        (,@ body))))
129
130 (defmacro as-binary-input-file (&rest body)
131   (` (let (mc-flag
132            (file-coding-system-for-read *noconv*)
133            )
134        (,@ body))))
135
136 (defmacro as-binary-output-file (&rest body)
137   (` (let (mc-flag
138            (file-coding-system *noconv*)
139            )
140        (,@ body))))
141
142 (defalias 'set-process-input-coding-system 'set-process-coding-system)
143
144 (defun insert-file-contents-as-binary (filename
145                                        &optional visit beg end replace)
146   "Like `insert-file-contents', q.v., but don't code and format conversion.
147 Like `insert-file-contents-literary', but it allows find-file-hooks,
148 automatic uncompression, etc.
149
150 Namely this function ensures that only format decoding and character
151 code conversion will not take place."
152   (as-binary-input-file
153    ;; Returns list absolute file name and length of data inserted.
154    (insert-file-contents filename visit beg end replace)))
155
156 (defun insert-file-contents-as-raw-text (filename
157                                          &optional visit beg end replace)
158   "Like `insert-file-contents', q.v., but don't code and format conversion.
159 Like `insert-file-contents-literary', but it allows find-file-hooks,
160 automatic uncompression, etc.
161 Like `insert-file-contents-as-binary', but it converts line-break
162 code."
163   (save-excursion
164     (save-restriction
165       (narrow-to-region (point)(point))
166       (let ((return-val
167              ;; Returns list absolute file name and length of data inserted.
168              (insert-file-contents-as-binary filename visit beg end replace)))
169         (goto-char (point-min))
170         (while (re-search-forward "\r$" nil t)
171           (replace-match ""))
172         (list (car return-val) (buffer-size))))))
173
174 (defun insert-binary-file-contents-literally (filename
175                                               &optional visit beg end replace)
176   "Like `insert-file-contents-literally', q.v., but don't code conversion.
177 A buffer may be modified in several ways after reading into the buffer due
178 to advanced Emacs features, such as file-name-handlers, format decoding,
179 find-file-hooks, etc.
180   This function ensures that none of these modifications will take place."
181   (as-binary-input-file
182    ;; Returns list absolute file name and length of data inserted.
183    (insert-file-contents-literally filename visit beg end replace)))
184
185 (cond
186  (running-emacs-19_29-or-later
187   ;; for MULE 2.3 based on Emacs 19.34.
188   (defun write-region-as-binary (start end filename
189                                        &optional append visit lockname)
190     "Like `write-region', q.v., but don't code conversion."
191     (as-binary-output-file
192      (write-region start end filename append visit lockname)))
193
194   (defun write-region-as-raw-text-CRLF (start end filename
195                                               &optional append visit lockname)
196     "Like `write-region', q.v., but don't code conversion."
197     (let ((the-buf (current-buffer)))
198       (with-temp-buffer
199         (insert-buffer-substring the-buf start end)
200         (goto-char (point-min))
201         (while (re-search-forward "\\(\\=\\|[^\r]\\)\n" nil t)
202           (replace-match "\\1\r\n"))
203         (write-region-as-binary (point-min)(point-max)
204                                 filename append visit lockname))))
205   )
206  (t
207   ;; for MULE 2.3 based on Emacs 19.28.
208   (defun write-region-as-binary (start end filename
209                                        &optional append visit lockname)
210     "Like `write-region', q.v., but don't code conversion."
211     (as-binary-output-file
212      (write-region start end filename append visit)))
213
214   (defun write-region-as-raw-text-CRLF (start end filename
215                                               &optional append visit lockname)
216     "Like `write-region', q.v., but don't code conversion."
217     (let ((the-buf (current-buffer)))
218       (with-temp-buffer
219         (insert-buffer-substring the-buf start end)
220         (goto-char (point-min))
221         (while (re-search-forward "\\(\\=\\|[^\r]\\)\n" nil t)
222           (replace-match "\\1\r\n"))
223         (write-region-as-binary (point-min)(point-max)
224                                 filename append visit))))
225   ))
226
227 (defun find-file-noselect-as-binary (filename &optional nowarn rawfile)
228   "Like `find-file-noselect', q.v., but don't code and format conversion."
229   (as-binary-input-file (find-file-noselect filename nowarn rawfile)))
230
231 (defun find-file-noselect-as-raw-text (filename &optional nowarn rawfile)
232   "Like `find-file-noselect', q.v., but it does not code and format conversion
233 except for line-break code."
234   (save-current-buffer
235     (prog1
236         (set-buffer (find-file-noselect-as-binary filename nowarn rawfile))
237       (let ((flag (buffer-modified-p)))
238         (save-excursion
239           (goto-char (point-min))
240           (while (re-search-forward "\r$" nil t)
241             (replace-match "")))
242         (set-buffer-modified-p flag)))))
243
244 (defun open-network-stream-as-binary (name buffer host service)
245   "Like `open-network-stream', q.v., but don't code conversion."
246   (let ((process (open-network-stream name buffer host service)))
247     (set-process-coding-system process *noconv* *noconv*)
248     process))
249
250
251 ;;; @ with code-conversion
252 ;;;
253
254 (defun insert-file-contents-as-coding-system
255   (coding-system filename &optional visit beg end replace)
256   "Like `insert-file-contents', q.v., but CODING-SYSTEM the first arg will
257 be applied to `file-coding-system-for-read'."
258   (let ((file-coding-system-for-read coding-system))
259     (insert-file-contents filename visit beg end replace)))
260
261 (cond
262  (running-emacs-19_29-or-later
263   ;; for MULE 2.3 based on Emacs 19.34.
264   (defun write-region-as-coding-system
265     (coding-system start end filename &optional append visit lockname)
266     "Like `write-region', q.v., but CODING-SYSTEM the first arg will be
267 applied to `file-coding-system'."
268     (let ((file-coding-system coding-system)
269           jka-compr-compression-info-list jam-zcat-filename-list)
270       (write-region start end filename append visit lockname)))
271
272   (defun find-file-noselect-as-coding-system
273     (coding-system filename &optional nowarn rawfile)
274     "Like `find-file-noselect', q.v., but CODING-SYSTEM the first arg will
275 be applied to `file-coding-system-for-read'."
276     (let ((file-coding-system-for-read coding-system))
277       (find-file-noselect filename nowarn rawfile)))
278   )
279  (t
280   ;; for MULE 2.3 based on Emacs 19.28.
281   (defun write-region-as-coding-system
282     (coding-system start end filename &optional append visit lockname)
283     "Like `write-region', q.v., but CODING-SYSTEM the first arg will be
284 applied to `file-coding-system'."
285     (let ((file-coding-system coding-system)
286           jka-compr-compression-info-list jam-zcat-filename-list)
287       (write-region start end filename append visit)))
288
289   (defun find-file-noselect-as-coding-system
290     (coding-system filename &optional nowarn rawfile)
291     "Like `find-file-noselect', q.v., but CODING-SYSTEM the first arg will
292 be applied to `file-coding-system-for-read'."
293     (let ((file-coding-system-for-read coding-system))
294       (find-file-noselect filename nowarn)))
295   ))
296
297
298 ;;; @ buffer representation
299 ;;;
300
301 (defsubst-maybe set-buffer-multibyte (flag)
302   "Set the multibyte flag of the current buffer to FLAG.
303 If FLAG is t, this makes the buffer a multibyte buffer.
304 If FLAG is nil, this makes the buffer a single-byte buffer.
305 The buffer contents remain unchanged as a sequence of bytes
306 but the contents viewed as characters do change.
307 \[Emacs 20.3 emulating function]"
308   (setq mc-flag flag)
309   )
310
311
312 ;;; @ character
313 ;;;
314
315 (defalias 'char-charset 'char-leading-char)
316
317 (defun split-char (character)
318   "Return list of charset and one or two position-codes of CHARACTER."
319   (let ((p (1- (char-bytes character)))
320         dest)
321     (while (>= p 1)
322       (setq dest (cons (- (char-component character p) 128) dest)
323             p (1- p)))
324     (cons (char-charset character) dest)))
325
326 (defmacro char-next-index (char index)
327   "Return index of character succeeding CHAR whose index is INDEX."
328   (` (+ (, index) (char-bytes (, char)))))
329
330 (if (subr-fboundp 'char-before)
331     (condition-case err
332         (char-before)
333       (error
334        (when (and (eq (car (get (car err) 'error-conditions))
335                       'wrong-number-of-arguments)
336                   (not (boundp 'si:char-before)))
337          (fset 'si:char-before (symbol-function 'char-before))
338          (defun char-before (&optional pos)
339            "Return character in current buffer preceding position POS.
340 POS is an integer or a buffer pointer.
341 If POS is out of range, the value is nil."
342            (si:char-before (or pos (point)))
343            )))))
344
345 (if (subr-fboundp 'char-after)
346     (condition-case err
347         (char-after)
348       (error
349        (when (and (eq (car (get (car err) 'error-conditions))
350                       'wrong-number-of-arguments)
351                   (not (boundp 'si:char-after)))
352          (fset 'si:char-after (symbol-function 'char-after))
353          (defun char-after (&optional pos)
354            "Return character in current buffer at position POS.
355 POS is an integer or a buffer pointer.
356 If POS is out of range, the value is nil."
357            (si:char-after (or pos (point)))
358            )))))
359
360 ;;; @@ obsoleted aliases
361 ;;;
362 ;;; You should not use them.
363
364 (defalias 'char-length 'char-bytes)
365 ;;(defalias 'char-columns 'char-width)
366
367
368 ;;; @ string
369 ;;;
370
371 (defalias 'string-columns 'string-width)
372
373 (defalias 'string-to-int-list 'string-to-char-list)
374
375 (or (fboundp 'truncate-string)
376     ;; Imported from Mule-2.3
377     (defun truncate-string (str width &optional start-column)
378       "\
379 Truncate STR to fit in WIDTH columns.
380 Optional non-nil arg START-COLUMN specifies the starting column.
381 \[emu-mule.el; Mule 2.3 emulating function]"
382       (or start-column
383           (setq start-column 0))
384       (let ((max-width (string-width str))
385             (len (length str))
386             (from 0)
387             (column 0)
388             to-prev to ch)
389         (if (>= width max-width)
390             (setq width max-width))
391         (if (>= start-column width)
392             ""
393           (while (< column start-column)
394             (setq ch (aref str from)
395                   column (+ column (char-width ch))
396                   from (+ from (char-bytes ch))))
397           (if (< width max-width)
398               (progn
399                 (setq to from)
400                 (while (<= column width)
401                   (setq ch (aref str to)
402                         column (+ column (char-width ch))
403                         to-prev to
404                         to (+ to (char-bytes ch))))
405                 (setq to to-prev)))
406           (substring str from to))))
407     )
408
409 (defalias 'looking-at-as-unibyte 'looking-at)
410
411
412 ;;; @ end
413 ;;;
414
415 (provide 'poem-om)
416
417 ;;; poem-om.el ends here