(char-before, char-after): Moved to poe.el.
[elisp/apel.git] / poem-om.el
1 ;;; poem-om.el --- poem implementation for Mule 1.* and Mule 2.*
2
3 ;; Copyright (C) 1995-1999 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;;         Katsumi Yamaoka  <yamaoka@jpl.org>
7 ;; Keywords: emulation, compatibility, Mule
8
9 ;; This file is part of APEL (A Portable Emacs Library).
10
11 ;; This program is free software; you can redistribute it and/or
12 ;; modify it under the terms of the GNU General Public License as
13 ;; published by the Free Software Foundation; either version 2, or (at
14 ;; your option) any later version.
15
16 ;; This program is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 ;; General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Code:
27
28 (require 'poe)
29
30
31 ;;; @ version specific features
32 ;;;
33
34 (cond ((= emacs-major-version 19)
35        ;; Suggested by SASAKI Osamu <osamu@shuugr.bekkoame.or.jp>
36        ;; (cf. [os2-emacs-ja:78])
37        (defun fontset-pixel-size (fontset)
38          (let* ((font (get-font-info
39                        (aref (cdr (get-fontset-info fontset)) 0)))
40                 (open (aref font 4)))
41            (if (= open 1)
42                (aref font 5)
43              (if (= open 0)
44                  (let ((pat (aref font 1)))
45                    (if (string-match "-[0-9]+-" pat)
46                        (string-to-number
47                         (substring
48                          pat (1+ (match-beginning 0)) (1- (match-end 0))))
49                      0))
50                ))))
51
52        (define-ccl-program poem-ccl-decode-raw-text
53          '(1
54            ((r2 = 0)
55             (read r0)
56             (loop
57               (if (r0 == ?\x0d)
58                   ((r2 = 1)
59                    (read-if (r1 == ?\x0a)
60                             ((r0 = ?\x0a)
61                              (r2 = 0)
62                              (write-read-repeat r0))
63                             ((write r0)
64                              (r0 = (r1 + 0))
65                              (repeat))))
66                 ((r2 = 0)
67                  (write-read-repeat r0)))))
68            ;; This EOF BLOCK won't work out in practice. So the last datum
69            ;; might be lost if it's value is ?\x0d.
70            (if r2
71                (write r0))
72            )
73          "Convert line-break code from CRLF to LF.")
74
75        (define-ccl-program poem-ccl-encode-raw-text
76          '(1
77            ((read r0)
78             (loop (write-read-repeat r0))))
79          "Pass through without any conversions.")
80
81        (define-ccl-program poem-ccl-encode-raw-text-CRLF
82          '(2
83            ((loop
84               (read-if (r0 == ?\x0a)
85                        (write "\x0d\x0a")
86                        (write r0))
87               (repeat))))
88          "Convert line-break code from LF to CRLF.")
89
90        (make-coding-system
91         'raw-text 4 ?=
92         "No conversion"
93         nil
94         (cons poem-ccl-decode-raw-text poem-ccl-encode-raw-text))
95
96        (make-coding-system
97         'raw-text-dos 4 ?=
98         "No conversion"
99         nil
100         (cons poem-ccl-decode-raw-text poem-ccl-encode-raw-text-CRLF))
101        )
102       (t
103        (defun poem-decode-raw-text (from to)
104          (save-restriction
105            (narrow-to-region from to)
106            (goto-char (point-min))
107            (while (re-search-forward "\r$" nil t)
108              (replace-match "")
109              )))
110        (defun poem-encode-raw-text-CRLF (from to)
111          (save-restriction
112            (narrow-to-region from to)
113            (goto-char (point-min))
114            (while (re-search-forward "\\(\\=\\|[^\r]\\)\n" nil t)
115              (replace-match "\\1\r\n")
116              )))
117
118        (make-coding-system 'raw-text nil ?= "No conversion")
119        (put 'raw-text 'post-read-conversion 'poem-decode-raw-text)
120        
121        (make-coding-system 'raw-text-dos nil ?= "No conversion")
122        (put 'raw-text-dos 'post-read-conversion 'poem-decode-raw-text)
123        (put 'raw-text-dos 'pre-write-conversion 'poem-encode-raw-text-CRLF)
124        ))
125
126
127 ;;; @ character set
128 ;;;
129
130 (defalias 'make-char 'make-character)
131
132 (defalias 'find-non-ascii-charset-string 'find-charset-string)
133 (defalias 'find-non-ascii-charset-region 'find-charset-region)
134
135 (defalias 'charset-bytes        'char-bytes)
136 (defalias 'charset-description  'char-description)
137 (defalias 'charset-registry     'char-registry)
138 (defalias 'charset-columns      'char-width)
139 (defalias 'charset-direction    'char-direction)
140
141 (defun charset-chars (charset)
142   "Return the number of characters per dimension of CHARSET."
143   (if (= (logand (nth 2 (character-set charset)) 1) 1)
144       96
145     94))
146
147
148 ;;; @ coding system
149 ;;;
150
151 (defun encode-coding-region (start end coding-system)
152   "Encode the text between START and END to CODING-SYSTEM.
153 \[EMACS 20 emulating function]"
154   ;; If `coding-system' is nil, do nothing.
155   (code-convert-region start end *internal* coding-system))
156
157 (defun decode-coding-region (start end coding-system)
158   "Decode the text between START and END which is encoded in CODING-SYSTEM.
159 \[EMACS 20 emulating function]"
160   ;; If `coding-system' is nil, do nothing.
161   (code-convert-region start end coding-system *internal*))
162
163 ;; XXX: Should we support optional NOCOPY argument? (only in Emacs 20.x)
164 (defun encode-coding-string (str coding-system)
165   "Encode the STRING to CODING-SYSTEM.
166 \[EMACS 20 emulating function]"
167   (if coding-system
168       (code-convert-string str *internal* coding-system)
169     ;;(code-convert-string str *internal* nil) returns nil instead of str.
170     str))
171
172 ;; XXX: Should we support optional NOCOPY argument? (only in Emacs 20.x)
173 (defun decode-coding-string (str coding-system)
174   "Decode the string STR which is encoded in CODING-SYSTEM.
175 \[EMACS 20 emulating function]"
176   (if coding-system
177       (let ((len (length str))
178             ret)
179         (while (and (< 0 len)
180                     (null (setq ret
181                                 (code-convert-string
182                                  (substring str 0 len)
183                                  coding-system *internal*))))
184           (setq len (1- len)))
185         (concat ret (substring str len)))
186     str))
187
188 (defalias 'detect-coding-region 'code-detect-region)
189
190 (defalias 'set-buffer-file-coding-system 'set-file-coding-system)
191
192
193 ;;; @ with code-conversion
194 ;;;
195
196 (defun insert-file-contents-as-coding-system
197   (coding-system filename &optional visit beg end replace)
198   "Like `insert-file-contents', q.v., but CODING-SYSTEM the first arg will
199 be applied to `file-coding-system-for-read'."
200   (let ((file-coding-system-for-read coding-system))
201     (insert-file-contents filename visit beg end replace)))
202
203 (cond
204  ((and (>= emacs-major-version 19) (>= emacs-minor-version 29))
205   ;; for MULE 2.3 based on Emacs 19.34.
206   (defun write-region-as-coding-system
207     (coding-system start end filename &optional append visit lockname)
208     "Like `write-region', q.v., but CODING-SYSTEM the first arg will be
209 applied to `file-coding-system'."
210     (let ((file-coding-system coding-system)
211           jka-compr-compression-info-list jam-zcat-filename-list)
212       (write-region start end filename append visit lockname)))
213
214   (defun find-file-noselect-as-coding-system
215     (coding-system filename &optional nowarn rawfile)
216     "Like `find-file-noselect', q.v., but CODING-SYSTEM the first arg will
217 be applied to `file-coding-system-for-read'."
218     (let ((file-coding-system-for-read coding-system))
219       (find-file-noselect filename nowarn rawfile)))
220   )
221  (t
222   ;; for MULE 2.3 based on Emacs 19.28 or MULE 1.*.
223   (defun write-region-as-coding-system
224     (coding-system start end filename &optional append visit lockname)
225     "Like `write-region', q.v., but CODING-SYSTEM the first arg will be
226 applied to `file-coding-system'."
227     (let ((file-coding-system coding-system)
228           jka-compr-compression-info-list jam-zcat-filename-list)
229       (write-region start end filename append visit)))
230
231   (defun find-file-noselect-as-coding-system
232     (coding-system filename &optional nowarn rawfile)
233     "Like `find-file-noselect', q.v., but CODING-SYSTEM the first arg will
234 be applied to `file-coding-system-for-read'."
235     (let ((file-coding-system-for-read coding-system))
236       (find-file-noselect filename nowarn)))
237   ))
238
239 (defun save-buffer-as-coding-system (coding-system &optional args)
240   "Like `save-buffer', q.v., but CODING-SYSTEM the first arg will be
241 applied to `coding-system-for-write'."
242   (let ((file-coding-system coding-system))
243     (save-buffer args)))
244
245
246 ;;; @ without code-conversion
247 ;;;
248
249 (make-coding-system 'binary nil ?= "No conversion")
250
251 (defmacro as-binary-process (&rest body)
252   (` (let (selective-display    ; Disable ^M to nl translation.
253            ;; Mule
254            mc-flag
255            (default-process-coding-system (cons *noconv* *noconv*))
256            program-coding-system-alist)
257        (,@ body))))
258
259 (defmacro as-binary-input-file (&rest body)
260   (` (let (mc-flag
261            (file-coding-system-for-read *noconv*)
262            )
263        (,@ body))))
264
265 (defmacro as-binary-output-file (&rest body)
266   (` (let (mc-flag
267            (file-coding-system *noconv*)
268            )
269        (,@ body))))
270
271 (defalias 'set-process-input-coding-system 'set-process-coding-system)
272
273 (defun insert-file-contents-as-binary (filename
274                                        &optional visit beg end replace)
275   "Like `insert-file-contents', q.v., but don't code and format conversion.
276 Like `insert-file-contents-literary', but it allows find-file-hooks,
277 automatic uncompression, etc.
278
279 Namely this function ensures that only format decoding and character
280 code conversion will not take place."
281   (as-binary-input-file
282    ;; Returns list absolute file name and length of data inserted.
283    (insert-file-contents filename visit beg end replace)))
284
285 (defun insert-file-contents-as-raw-text (filename
286                                          &optional visit beg end replace)
287   "Like `insert-file-contents', q.v., but don't code and format conversion.
288 Like `insert-file-contents-literary', but it allows find-file-hooks,
289 automatic uncompression, etc.
290 Like `insert-file-contents-as-binary', but it converts line-break
291 code."
292   ;; Returns list absolute file name and length of data inserted.
293   (insert-file-contents-as-coding-system 'raw-text
294                                          filename visit beg end replace))
295
296 (defalias 'insert-file-contents-as-raw-text-CRLF
297   'insert-file-contents-as-raw-text)
298
299 (defun write-region-as-binary (start end filename
300                                      &optional append visit lockname)
301   "Like `write-region', q.v., but don't code conversion."
302   (write-region-as-coding-system 'binary
303                                  start end filename append visit lockname))
304
305 (defun write-region-as-raw-text-CRLF (start end filename
306                                             &optional append visit lockname)
307   "Like `write-region', q.v., but don't code conversion."
308   (write-region-as-coding-system 'raw-text-dos
309                                  start end filename append visit lockname))
310
311 (defun find-file-noselect-as-binary (filename &optional nowarn rawfile)
312   "Like `find-file-noselect', q.v., but don't code and format conversion."
313   (find-file-noselect-as-coding-system 'binary filename nowarn rawfile))
314
315 (defun find-file-noselect-as-raw-text (filename &optional nowarn rawfile)
316   "Like `find-file-noselect', q.v., but it does not code and format
317 conversion except for line-break code."
318   (find-file-noselect-as-coding-system 'raw-text filename nowarn rawfile))
319
320 (defalias 'find-file-noselect-as-raw-text-CRLF
321   'find-file-noselect-as-raw-text)
322
323 (defun save-buffer-as-binary (&optional args)
324   "Like `save-buffer', q.v., but don't encode."
325   (let ((file-coding-system 'binary))
326     (save-buffer args)))
327
328 (defun save-buffer-as-raw-text-CRLF (&optional args)
329   "Like `save-buffer', q.v., but save as network representation."
330   (let ((file-coding-system 'raw-text-dos))
331     (save-buffer args)))
332
333 (defun open-network-stream-as-binary (name buffer host service)
334   "Like `open-network-stream', q.v., but don't code conversion."
335   (let ((process (open-network-stream name buffer host service)))
336     (set-process-coding-system process *noconv* *noconv*)
337     process))
338
339
340 ;;; @ buffer representation
341 ;;;
342
343 (defsubst-maybe set-buffer-multibyte (flag)
344   "Set the multibyte flag of the current buffer to FLAG.
345 If FLAG is t, this makes the buffer a multibyte buffer.
346 If FLAG is nil, this makes the buffer a single-byte buffer.
347 The buffer contents remain unchanged as a sequence of bytes
348 but the contents viewed as characters do change.
349 \[Emacs 20.3 emulating function]"
350   (setq mc-flag flag)
351   )
352
353
354 ;;; @ character
355 ;;;
356
357 (defalias 'char-charset 'char-leading-char)
358
359 (defun split-char (character)
360   "Return list of charset and one or two position-codes of CHARACTER."
361   (let ((p (1- (char-bytes character)))
362         dest)
363     (while (>= p 1)
364       (setq dest (cons (- (char-component character p) 128) dest)
365             p (1- p)))
366     (cons (char-charset character) dest)))
367
368 (defmacro char-next-index (char index)
369   "Return index of character succeeding CHAR whose index is INDEX."
370   (` (+ (, index) (char-bytes (, char)))))
371
372
373 ;;; @@ obsoleted aliases
374 ;;;
375 ;;; You should not use them.
376
377 (defalias 'char-length 'char-bytes)
378 ;;(defalias 'char-columns 'char-width)
379
380
381 ;;; @ string
382 ;;;
383
384 (defalias 'string-columns 'string-width)
385
386 (defalias 'string-to-int-list 'string-to-char-list)
387
388 ;; Imported from Mule-2.3
389 (defun-maybe truncate-string (str width &optional start-column)
390   "\
391 Truncate STR to fit in WIDTH columns.
392 Optional non-nil arg START-COLUMN specifies the starting column.
393 \[emu-mule.el; Mule 2.3 emulating function]"
394   (or start-column
395       (setq start-column 0))
396   (let ((max-width (string-width str))
397         (len (length str))
398         (from 0)
399         (column 0)
400         to-prev to ch)
401     (if (>= width max-width)
402         (setq width max-width))
403     (if (>= start-column width)
404         ""
405       (while (< column start-column)
406         (setq ch (aref str from)
407               column (+ column (char-width ch))
408               from (+ from (char-bytes ch))))
409       (if (< width max-width)
410           (progn
411             (setq to from)
412             (while (<= column width)
413               (setq ch (aref str to)
414                     column (+ column (char-width ch))
415                     to-prev to
416                     to (+ to (char-bytes ch))))
417             (setq to to-prev)))
418       (substring str from to))))
419
420 (defalias 'looking-at-as-unibyte 'looking-at)
421
422
423 ;;; @ end
424 ;;;
425
426 (provide 'poem-om)
427
428 ;;; poem-om.el ends here