forked from wanderlust/apel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpces-om.el
340 lines (283 loc) · 11.3 KB
/
pces-om.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
;;; pces-om.el --- pces implementation for Mule 1.* and Mule 2.*
;; Copyright (C) 1995,1996,1997,1998,1999 Free Software Foundation, Inc.
;; Author: MORIOKA Tomohiko <[email protected]>
;; Katsumi Yamaoka <[email protected]>
;; Keywords: emulation, compatibility, Mule
;; This file is part of APEL (A Portable Emacs Library).
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2, or (at
;; your option) any later version.
;; This program is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Code:
(require 'poe)
;;; @ version specific features
;;;
(cond ((= emacs-major-version 19)
(define-ccl-program poem-ccl-decode-raw-text
'(1
((r2 = 0)
(read r0)
(loop
(if (r0 == ?\x0d)
((r2 = 1)
(read-if (r1 == ?\x0a)
((r0 = ?\x0a)
(r2 = 0)
(write-read-repeat r0))
((write r0)
(r0 = (r1 + 0))
(repeat))))
((r2 = 0)
(write-read-repeat r0)))))
;; This EOF BLOCK won't work out in practice. So the last datum
;; might be lost if it's value is ?\x0d.
(if r2
(write r0))
)
"Convert line-break code from CRLF to LF.")
(define-ccl-program poem-ccl-encode-raw-text
'(1
((read r0)
(loop (write-read-repeat r0))))
"Pass through without any conversions.")
(define-ccl-program poem-ccl-encode-raw-text-CRLF
'(2
((loop
(read-if (r0 == ?\x0a)
(write "\x0d\x0a")
(write r0))
(repeat))))
"Convert line-break code from LF to CRLF.")
(make-coding-system
'raw-text 4 ?=
"No conversion"
nil
(cons poem-ccl-decode-raw-text poem-ccl-encode-raw-text))
(make-coding-system
'raw-text-dos 4 ?=
"No conversion"
nil
(cons poem-ccl-decode-raw-text poem-ccl-encode-raw-text-CRLF))
)
(t
(defun poem-decode-raw-text (from to)
(save-restriction
(narrow-to-region from to)
(goto-char (point-min))
(while (re-search-forward "\r$" nil t)
(replace-match "")
)))
(defun poem-encode-raw-text-CRLF (from to)
(save-restriction
(narrow-to-region from to)
(goto-char (point-min))
(while (re-search-forward "\\(\\=\\|[^\r]\\)\n" nil t)
(replace-match "\\1\r\n")
)))
(make-coding-system 'raw-text nil ?= "No conversion")
(put 'raw-text 'post-read-conversion 'poem-decode-raw-text)
(make-coding-system 'raw-text-dos nil ?= "No conversion")
(put 'raw-text-dos 'post-read-conversion 'poem-decode-raw-text)
(put 'raw-text-dos 'pre-write-conversion 'poem-encode-raw-text-CRLF)
))
;;; @ coding system
;;;
(defun-maybe find-coding-system (obj)
"Return OBJ if it is a coding-system."
(if (coding-system-p obj)
obj))
(defun encode-coding-region (start end coding-system)
"Encode the text between START and END to CODING-SYSTEM.
\[EMACS 20 emulating function]"
;; If `coding-system' is nil, do nothing.
(code-convert-region start end *internal* coding-system))
(defun decode-coding-region (start end coding-system)
"Decode the text between START and END which is encoded in CODING-SYSTEM.
\[EMACS 20 emulating function]"
;; If `coding-system' is nil, do nothing.
(code-convert-region start end coding-system *internal*))
;; XXX: Should we support optional NOCOPY argument? (only in Emacs 20.x)
(defun encode-coding-string (str coding-system)
"Encode the STRING to CODING-SYSTEM.
\[EMACS 20 emulating function]"
(if coding-system
(code-convert-string str *internal* coding-system)
;;(code-convert-string str *internal* nil) returns nil instead of str.
str))
;; XXX: Should we support optional NOCOPY argument? (only in Emacs 20.x)
(defun decode-coding-string (str coding-system)
"Decode the string STR which is encoded in CODING-SYSTEM.
\[EMACS 20 emulating function]"
(if coding-system
(let ((len (length str))
ret)
(while (and (< 0 len)
(null (setq ret
(code-convert-string
(substring str 0 len)
coding-system *internal*))))
(setq len (1- len)))
(concat ret (substring str len)))
str))
(defalias 'detect-coding-region 'code-detect-region)
(defalias 'set-buffer-file-coding-system 'set-file-coding-system)
;;; @ with code-conversion
;;;
(cond
((and (>= emacs-major-version 19) (>= emacs-minor-version 23))
;; Mule 2.0 or later.
(defun insert-file-contents-as-coding-system
(coding-system filename &optional visit beg end replace)
"Like `insert-file-contents', q.v., but CODING-SYSTEM the first arg will
be applied to `file-coding-system-for-read'."
(let ((file-coding-system-for-read coding-system))
(insert-file-contents filename visit beg end replace))))
(t
;; Mule 1.1 or earlier.
(defun insert-file-contents-as-coding-system
(coding-system filename &optional visit beg end replace)
"Like `insert-file-contents', q.v., but CODING-SYSTEM the first arg will
be applied to `file-coding-system-for-read'."
(let ((file-coding-system-for-read coding-system))
(insert-file-contents filename visit)))))
(cond
((and (>= emacs-major-version 19) (>= emacs-minor-version 29))
;; for MULE 2.3 based on Emacs 19.34.
(defun write-region-as-coding-system
(coding-system start end filename &optional append visit lockname)
"Like `write-region', q.v., but CODING-SYSTEM the first arg will be
applied to `file-coding-system'."
(let ((file-coding-system coding-system)
jka-compr-compression-info-list jam-zcat-filename-list)
(write-region start end filename append visit lockname)))
(defun find-file-noselect-as-coding-system
(coding-system filename &optional nowarn rawfile)
"Like `find-file-noselect', q.v., but CODING-SYSTEM the first arg will
be applied to `file-coding-system-for-read'."
(let ((file-coding-system-for-read coding-system))
(find-file-noselect filename nowarn rawfile)))
)
(t
;; for MULE 2.3 based on Emacs 19.28 or MULE 1.*.
(defun write-region-as-coding-system
(coding-system start end filename &optional append visit lockname)
"Like `write-region', q.v., but CODING-SYSTEM the first arg will be
applied to `file-coding-system'."
(let ((file-coding-system coding-system)
jka-compr-compression-info-list jam-zcat-filename-list)
(write-region start end filename append visit)))
(defun find-file-noselect-as-coding-system
(coding-system filename &optional nowarn rawfile)
"Like `find-file-noselect', q.v., but CODING-SYSTEM the first arg will
be applied to `file-coding-system-for-read'."
(let ((file-coding-system-for-read coding-system))
(find-file-noselect filename nowarn)))
))
(defun save-buffer-as-coding-system (coding-system &optional args)
"Like `save-buffer', q.v., but CODING-SYSTEM the first arg will be
applied to `coding-system-for-write'."
(let ((file-coding-system coding-system))
(save-buffer args)))
;;; @ without code-conversion
;;;
(make-coding-system 'binary nil ?= "No conversion")
(defmacro as-binary-process (&rest body)
(` (let (selective-display ; Disable ^M to nl translation.
;; Mule
mc-flag
(default-process-coding-system (cons *noconv* *noconv*))
program-coding-system-alist)
(,@ body))))
(defmacro as-binary-input-file (&rest body)
(` (let (mc-flag
(file-coding-system-for-read *noconv*)
)
(,@ body))))
(defmacro as-binary-output-file (&rest body)
(` (let (mc-flag
(file-coding-system *noconv*)
)
(,@ body))))
(defalias 'set-process-input-coding-system 'set-process-coding-system)
(cond
((and (>= emacs-major-version 19) (>= emacs-minor-version 23))
;; Mule 2.0 or later.
(defun insert-file-contents-as-binary (filename
&optional visit beg end replace)
"Like `insert-file-contents', q.v., but don't code and format conversion.
Like `insert-file-contents-literally', but it allows find-file-hooks,
automatic uncompression, etc.
Namely this function ensures that only format decoding and character
code conversion will not take place."
(as-binary-input-file
;; Returns list absolute file name and length of data inserted.
(insert-file-contents filename visit beg end replace))))
(t
;; Mule 1.1 or earlier.
(defun insert-file-contents-as-binary (filename
&optional visit beg end replace)
"Like `insert-file-contents', q.v., but don't code and format conversion.
Like `insert-file-contents-literally', but it allows find-file-hooks,
automatic uncompression, etc.
Namely this function ensures that only format decoding and character
code conversion will not take place."
(as-binary-input-file
;; Returns list absolute file name and length of data inserted.
(insert-file-contents filename visit)))))
(defun insert-file-contents-as-raw-text (filename
&optional visit beg end replace)
"Like `insert-file-contents', q.v., but don't code and format conversion.
Like `insert-file-contents-literally', but it allows find-file-hooks,
automatic uncompression, etc.
Like `insert-file-contents-as-binary', but it converts line-break
code."
;; Returns list absolute file name and length of data inserted.
(insert-file-contents-as-coding-system 'raw-text
filename visit beg end replace))
(defalias 'insert-file-contents-as-raw-text-CRLF
'insert-file-contents-as-raw-text)
(defun write-region-as-binary (start end filename
&optional append visit lockname)
"Like `write-region', q.v., but don't code conversion."
(write-region-as-coding-system 'binary
start end filename append visit lockname))
(defun write-region-as-raw-text-CRLF (start end filename
&optional append visit lockname)
"Like `write-region', q.v., but don't code conversion."
(write-region-as-coding-system 'raw-text-dos
start end filename append visit lockname))
(defun find-file-noselect-as-binary (filename &optional nowarn rawfile)
"Like `find-file-noselect', q.v., but don't code and format conversion."
(find-file-noselect-as-coding-system 'binary filename nowarn rawfile))
(defun find-file-noselect-as-raw-text (filename &optional nowarn rawfile)
"Like `find-file-noselect', q.v., but it does not code and format
conversion except for line-break code."
(find-file-noselect-as-coding-system 'raw-text filename nowarn rawfile))
(defalias 'find-file-noselect-as-raw-text-CRLF
'find-file-noselect-as-raw-text)
(defun save-buffer-as-binary (&optional args)
"Like `save-buffer', q.v., but don't encode."
(let ((file-coding-system 'binary))
(save-buffer args)))
(defun save-buffer-as-raw-text-CRLF (&optional args)
"Like `save-buffer', q.v., but save as network representation."
(let ((file-coding-system 'raw-text-dos))
(save-buffer args)))
(defun open-network-stream-as-binary (name buffer host service)
"Like `open-network-stream', q.v., but don't code conversion."
(let ((process (open-network-stream name buffer host service)))
(set-process-coding-system process *noconv* *noconv*)
process))
;;; @ end
;;;
(require 'product)
(product-provide (provide 'pces-om) (require 'apel-ver))
;;; pces-om.el ends here