(browse-url-browser-function): Default to
[bpt/emacs.git] / lisp / dos-w32.el
CommitLineData
b55edb63 1;;; dos-w32.el --- Functions shared among MS-DOS and W32 (NT/95) platforms
a750bcaa
RS
2
3;; Copyright (C) 1996 Free Software Foundation, Inc.
4
68429d86 5;; Maintainer: Geoff Voelker <voelker@cs.washington.edu>
a750bcaa
RS
6;; Keywords: internal
7
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation; either version 2, or (at your option)
13;; any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU 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;;; Commentary:
26
27;; Parts of this code are duplicated functions taken from dos-fns.el
28;; and winnt.el.
29
30;;; Code:
31
a750bcaa
RS
32;; Use ";" instead of ":" as a path separator (from files.el).
33(setq path-separator ";")
34
fdc4f7a0
RS
35(setq minibuffer-history-case-insensitive-variables
36 (cons 'file-name-history minibuffer-history-case-insensitive-variables))
37
a750bcaa 38;; Set the null device (for compile.el).
bfba21fc 39(setq null-device "NUL")
a750bcaa
RS
40
41;; Set the grep regexp to match entries with drive letters.
42(setq grep-regexp-alist
43 '(("^\\(\\([a-zA-Z]:\\)?[^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]" 1 3)))
44
45;; For distinguishing file types based upon suffixes.
46(defvar file-name-buffer-file-type-alist
47 '(
48 ("[:/].*config.sys$" . nil) ; config.sys text
49 ("\\.elc$" . t) ; emacs stuff
17e4fb34 50 ("\\.\\(obj\\|exe\\|com\\|lib\\|sym\\|sys\\|chk\\|out\\|bin\\|ico\\|pif\\|class\\)$" . t)
a750bcaa 51 ; MS-Dos stuff
f359fb79
GV
52 ("\\.\\(dll\\|drv\\|cpl\\|scr\\vbx\\|386\\|vxd\\|fon\\|fnt\\|fot\\|ttf\\|grp\\)$" . t)
53 ; Windows stuff
0009dce3 54 ("\\.\\(hlp\\|bmp\\|wav\\|avi\\|mpg\\|jpg\\|tif\\|mov\\|au\\)" . t)
f359fb79 55 ; known binary data files
a750bcaa
RS
56 ("\\.\\(arc\\|zip\\|pak\\|lzh\\|zoo\\)$" . t)
57 ; Packers
f359fb79 58 ("\\.\\(a\\|o\\|tar\\|z\\|gz\\|taz\\|jar\\)$" . t)
a750bcaa
RS
59 ; Unix stuff
60 ("\\.tp[ulpw]$" . t)
61 ; Borland Pascal stuff
b2a8c84d 62 ("[:/]tags$" . nil)
a750bcaa
RS
63 ; Emacs TAGS file
64 )
65 "*Alist for distinguishing text files from binary files.
66Each element has the form (REGEXP . TYPE), where REGEXP is matched
67against the file name, and TYPE is nil for text, t for binary.")
68
ee425fc3
RS
69;; Return the pair matching filename on file-name-buffer-file-type-alist,
70;; or nil otherwise.
71(defun find-buffer-file-type-match (filename)
72 (let ((alist file-name-buffer-file-type-alist)
73 (found nil))
74 (let ((case-fold-search t))
75 (setq filename (file-name-sans-versions filename))
76 (while (and (not found) alist)
77 (if (string-match (car (car alist)) filename)
78 (setq found (car alist)))
79 (setq alist (cdr alist)))
80 found)))
81
73b2c664 82;; Don't check for untranslated file systems here.
a750bcaa 83(defun find-buffer-file-type (filename)
73b2c664
RS
84 (let ((match (find-buffer-file-type-match filename))
85 (code))
86 (if (not match)
87 default-buffer-file-type
88 (setq code (cdr match))
89 (cond ((memq code '(nil t)) code)
90 ((and (symbolp code) (fboundp code))
91 (funcall code filename))))))
ee425fc3 92
99bf72f2
GV
93(setq-default buffer-file-coding-system 'undecided-dos)
94
7c621f7a 95(defun find-buffer-file-type-coding-system (command)
ee425fc3 96 "Choose a coding system for a file operation.
f473b0ca
GV
97If COMMAND is `insert-file-contents', the coding system is chosen based
98upon the filename, the contents of `untranslated-filesystem-list' and
99`file-name-buffer-file-type-alist', and whether the file exists:
100
101 If it matches in `untranslated-filesystem-list':
102 If the file exists: `no-conversion'
103 If the file does not exist: `undecided'
104 If it matches in `file-name-buffer-file-type-alist':
105 If the match is t (for binary): `no-conversion'
106 If the match is nil (for dos-text): `undecided-dos'
ee425fc3 107 Otherwise:
f473b0ca 108 If the file exists: `undecided'
ca19ad67 109 If the file does not exist: default-buffer-file-coding-system
ee425fc3 110
99bf72f2
GV
111If COMMAND is `write-region', the coding system is chosen based upon
112the value of `buffer-file-coding-system' and `buffer-file-type'. If
113`buffer-file-coding-system' is non-nil, its value is used. If it is
114nil and `buffer-file-type' is t, the coding system is `no-conversion'.
115Otherwise, it is `undecided-dos'.
116
117The two most common situations are when DOS and Unix files are read
118and written, and their names do not match in
119`untranslated-filesystem-list' and `file-name-buffer-file-type-alist'.
120In these cases, the coding system initially will be `undecided'. As
121the file is read in the DOS case, the coding system will be changed to
122`undecided-dos' as CR/LFs are detected. As the file is read in the
123Unix case, the coding system will be changed to `undecided-unix' as
124LFs are detected. In both cases, `buffer-file-coding-system' will be
125set to the appropriate coding system, and the value of
126`buffer-file-coding-system' will be used when writing the file."
127
ee425fc3
RS
128 (let ((op (nth 0 command))
129 (target)
dfbcdf5f 130 (binary nil) (text nil)
73b2c664 131 (undecided nil) (undecided-unix nil))
ee425fc3
RS
132 (cond ((eq op 'insert-file-contents)
133 (setq target (nth 1 command))
73b2c664
RS
134 ;; First check for a file name that indicates
135 ;; it is truly binary.
136 (setq binary (find-buffer-file-type target))
137 (cond (binary)
138 ;; Next check for files that MUST use DOS eol conversion.
139 ((find-buffer-file-type-match target)
140 (setq text t))
141 ;; For any other existing file, decide based on contents.
142 ((file-exists-p target)
143 (setq undecided t))
144 ;; Next check for a non-DOS file system.
145 ((untranslated-file-p target)
146 (setq undecided-unix t)))
99bf72f2
GV
147 (cond (binary '(no-conversion . no-conversion))
148 (text '(undecided-dos . undecided-dos))
73b2c664 149 (undecided-unix '(undecided-unix . undecided-unix))
99bf72f2 150 (undecided '(undecided . undecided))
ca19ad67
AI
151 (t (cons default-buffer-file-coding-system
152 default-buffer-file-coding-system))))
99bf72f2
GV
153 ((eq op 'write-region)
154 (if buffer-file-coding-system
155 (cons buffer-file-coding-system
156 buffer-file-coding-system)
73b2c664
RS
157 ;; Normally this is used only in a non-file-visiting
158 ;; buffer, because normally buffer-file-coding-system is non-nil
159 ;; in a file-visiting buffer.
99bf72f2
GV
160 (if buffer-file-type
161 '(no-conversion . no-conversion)
162 '(undecided-dos . undecided-dos)))))))
ee425fc3
RS
163
164(modify-coding-system-alist 'file "" 'find-buffer-file-type-coding-system)
a750bcaa
RS
165
166(defun find-file-binary (filename)
167 "Visit file FILENAME and treat it as binary."
168 (interactive "FFind file binary: ")
169 (let ((file-name-buffer-file-type-alist '(("" . t))))
170 (find-file filename)))
171
172(defun find-file-text (filename)
173 "Visit file FILENAME and treat it as a text file."
174 (interactive "FFind file text: ")
175 (let ((file-name-buffer-file-type-alist '(("" . nil))))
176 (find-file filename)))
177
99bf72f2 178(defun find-file-not-found-set-buffer-file-coding-system ()
a750bcaa
RS
179 (save-excursion
180 (set-buffer (current-buffer))
99bf72f2
GV
181 (let* ((dummy-insert-op (list 'insert-file-contents (buffer-file-name)))
182 (coding-system-pair
183 (find-buffer-file-type-coding-system dummy-insert-op)))
184 (setq buffer-file-coding-system (car coding-system-pair))
185 (setq buffer-file-type (eq buffer-file-coding-system 'no-conversion)))))
186
187;;; To set the default coding system on new files.
188(add-hook 'find-file-not-found-hooks
189 'find-file-not-found-set-buffer-file-coding-system)
a750bcaa
RS
190
191;;; To accomodate filesystems that do not require CR/LF translation.
192(defvar untranslated-filesystem-list nil
193 "List of filesystems that require no CR/LF translation when reading
194and writing files. Each filesystem in the list is a string naming
195the directory prefix corresponding to the filesystem.")
196
197(defun untranslated-canonical-name (filename)
198 "Return FILENAME in a canonicalized form for use with the functions
199dealing with untranslated filesystems."
200 (if (memq system-type '(ms-dos windows-nt))
b63f9ba1 201 ;; The canonical form for DOS/W32 is with A-Z downcased and all
a750bcaa
RS
202 ;; directory separators changed to directory-sep-char.
203 (let ((name nil))
204 (setq name (mapconcat
205 '(lambda (char)
206 (if (and (<= ?A char) (<= char ?Z))
207 (char-to-string (+ (- char ?A) ?a))
208 (char-to-string char)))
209 filename nil))
210 ;; Use expand-file-name to canonicalize directory separators, except
211 ;; with bare drive letters (which would have the cwd appended).
212 (if (string-match "^.:$" name)
213 name
214 (expand-file-name name)))
215 filename))
216
217(defun untranslated-file-p (filename)
218 "Return t if FILENAME is on a filesystem that does not require
219CR/LF translation, and nil otherwise."
220 (let ((fs (untranslated-canonical-name filename))
221 (ufs-list untranslated-filesystem-list)
222 (found nil))
223 (while (and (not found) ufs-list)
224 (if (string-match (concat "^" (car ufs-list)) fs)
225 (setq found t)
226 (setq ufs-list (cdr ufs-list))))
227 found))
228
229(defun add-untranslated-filesystem (filesystem)
230 "Add FILESYSTEM to the list of filesystems that do not require
231CR/LF translation. FILESYSTEM is a string containing the directory
232prefix corresponding to the filesystem. For example, for a Unix
233filesystem mounted on drive Z:, FILESYSTEM could be \"Z:\"."
60382faa 234 (interactive "fUntranslated file system: ")
a750bcaa
RS
235 (let ((fs (untranslated-canonical-name filesystem)))
236 (if (member fs untranslated-filesystem-list)
237 untranslated-filesystem-list
238 (setq untranslated-filesystem-list
239 (cons fs untranslated-filesystem-list)))))
240
241(defun remove-untranslated-filesystem (filesystem)
242 "Remove FILESYSTEM from the list of filesystems that do not require
243CR/LF translation. FILESYSTEM is a string containing the directory
244prefix corresponding to the filesystem. For example, for a Unix
245filesystem mounted on drive Z:, FILESYSTEM could be \"Z:\"."
60382faa 246 (interactive "fUntranslated file system: ")
a750bcaa
RS
247 (setq untranslated-filesystem-list
248 (delete (untranslated-canonical-name filesystem)
249 untranslated-filesystem-list)))
250
ca19ad67
AI
251;;; Support for printing under DOS/Windows, see lpr.el and ps-print.el.
252
253;; Function to actually send data to the printer port.
254;; Supports writing directly, and using various programs.
255(defun direct-print-region-helper (printer
256 start end
257 lpr-prog
258 delete-text buf display
259 rest)
260 (let* ((directory-sep-char ?\\) ; expand file names in DOS format
261 ;; Ignore case when matching known external program names.
262 (case-fold-search t)
263 ;; Convert / to \ in printer name, for sake of external programs.
264 (printer
265 (if (stringp printer)
266 (subst-char-in-string ?/ ?\\ printer)
267 printer))
268 ;; Find a directory that is local, to work-around Windows bug.
269 (safe-dir
270 (let ((safe-dirs (list "c:/" (getenv "windir") (getenv "TMPDIR"))))
271 (while (not (file-attributes (car safe-dirs)))
272 (setq safe-dirs (cdr safe-dirs)))
273 (car safe-dirs)))
274 (tempfile
275 (make-temp-name
276 (expand-file-name "EP" (getenv "TMPDIR"))))
277 ;; capture output for diagnosis
278 (errbuf (list (get-buffer-create " *print-region-helper*") t)))
279 ;; It seems that we must be careful about the directory name that
280 ;; gets added to the printer port name by write-region when using
281 ;; the standard "PRN" or "LPTx" ports, because the write can fail if
282 ;; the directory is on a network drive. The same is true when
283 ;; asking command.com to copy the file.
284 ;; No action is needed for UNC printer names, which is just as well
285 ;; because `expand-file-name' doesn't support UNC names on MS-DOS.
416afb32 286 (if (and (stringp printer) (not (string-match "^\\\\" printer)))
ca19ad67
AI
287 (setq printer (expand-file-name printer safe-dir)))
288 ;; Handle known programs specially where necessary.
289 (unwind-protect
290 (cond
291 ;; nprint.exe is the standard print command on Netware
292 ((string-match "^nprint\\(\\.exe\\)?$" (file-name-nondirectory lpr-prog))
293 (write-region start end tempfile nil 0)
294 (call-process lpr-prog nil errbuf nil
295 tempfile (concat "P=" printer)))
296 ;; print.exe is a standard command on NT
297 ((string-match "^print\\(\\.exe\\)?$" (file-name-nondirectory lpr-prog))
298 ;; Be careful not to invoke print.exe on MS-DOS or Windows 9x
299 ;; though, because it is a TSR program there (hangs Emacs).
300 (or (and (eq system-type 'windows-nt)
301 (null (getenv "winbootdir")))
302 (error "Printing via print.exe is not supported on MS-DOS or Windows 9x"))
303 ;; It seems that print.exe always appends a form-feed so we
304 ;; should make sure to omit the last FF in the data.
305 (if (and (> end start)
306 (char-equal (char-before end) ?\C-l))
307 (setq end (1- end)))
308 ;; cancel out annotate function for non-PS case
309 (let ((write-region-annotate-functions nil))
310 (write-region start end tempfile nil 0))
311 (call-process lpr-prog nil errbuf nil
312 (concat "/D:" printer) tempfile))
313 ;; support lpr and similar programs for convenience, but
314 ;; supply an explicit filename because the NT version of lpr
315 ;; can't read from stdin.
316 ((> (length lpr-prog) 0)
317 (write-region start end tempfile nil 0)
318 (setq rest (append rest (list tempfile)))
319 (apply 'call-process lpr-prog nil errbuf nil rest))
320 ;; Run command.com to access printer port on Windows 9x, unless
321 ;; we are supposed to append to an existing (non-empty) file,
322 ;; to work around a bug in Windows 9x that prevents Win32
323 ;; programs from accessing LPT ports reliably.
324 ((and (eq system-type 'windows-nt)
325 (getenv "winbootdir")
326 ;; file-attributes fails on LPT ports on Windows 9x but
327 ;; not on NT, so handle both cases for safety.
328 (eq (or (nth 7 (file-attributes printer)) 0) 0))
329 (write-region start end tempfile nil 0)
330 (let ((w32-quote-process-args nil))
331 (call-process "command.com" nil errbuf nil "/c"
332 (format "copy /b %s %s" tempfile printer))))
333 ;; write directly to the printer port
334 (t
335 (write-region start end printer t 0)))
336 ;; ensure we remove the tempfile if created
337 (if (file-exists-p tempfile)
338 (delete-file tempfile)))))
339
5a0aa644
RS
340(defvar printer-name)
341
342(defun direct-print-region-function (start end
343 &optional lpr-prog
344 delete-text buf display
345 &rest rest)
346 "DOS/Windows-specific function to print the region on a printer.
347Writes the region to the device or file which is a value of
ca19ad67
AI
348`printer-name' \(which see\), unless the value of `lpr-command'
349indicates a specific program should be invoked."
5a0aa644
RS
350
351 ;; DOS printers need the lines to end with CR-LF pairs, so make
352 ;; sure it always happens that way, unless the buffer is binary.
353 (let* ((coding coding-system-for-write)
354 (coding-base
355 (if (null coding) 'undecided (coding-system-base coding)))
36f22224 356 (eol-type (coding-system-eol-type coding-base))
ca19ad67
AI
357 ;; Make each print-out eject the final page, but don't waste
358 ;; paper if the file ends with a form-feed already.
36f22224
GV
359 (write-region-annotate-functions
360 (cons
361 (lambda (start end)
ca19ad67 362 (if (not (char-equal (char-before end) ?\C-l))
36f22224 363 `((,end . "\f"))))
ca19ad67
AI
364 write-region-annotate-functions))
365 (printer (or (and (boundp 'dos-printer)
366 (stringp (symbol-value 'dos-printer))
367 (symbol-value 'dos-printer))
368 printer-name)))
5a0aa644
RS
369 (or (eq coding-system-for-write 'no-conversion)
370 (setq coding-system-for-write
371 (aref eol-type 1))) ; force conversion to DOS EOLs
ca19ad67
AI
372 (direct-print-region-helper printer start end lpr-prog
373 delete-text buf display rest)))
374
5a0aa644
RS
375(setq print-region-function 'direct-print-region-function)
376
377;; Set this to nil if you have a port of the `pr' program
378;; (e.g., from GNU Textutils), or if you have an `lpr'
379;; program (see above) that can print page headers.
380;; If `lpr-headers-switches' is non-nil (the default) and
381;; `print-region-function' is set to `dos-print-region-function',
382;; then requests to print page headers will be silently
383;; ignored, and `print-buffer' and `print-region' produce
384;; the same output as `lpr-buffer' and `lpr-region', accordingly.
385(setq lpr-headers-switches "(page headers are not supported)")
386
387(defvar ps-printer-name)
388
ca19ad67
AI
389(defun direct-ps-print-region-function (start end
390 &optional lpr-prog
391 delete-text buf display
392 &rest rest)
393 "DOS/Windows-specific function to print the region on a PostScript printer.
394Writes the region to the device or file which is a value of
395`ps-printer-name' \(which see\), unless the value of `ps-lpr-command'
396indicates a specific program should be invoked."
397
398 (let ((printer (or (and (boundp 'dos-ps-printer)
399 (stringp (symbol-value 'dos-ps-printer))
400 (symbol-value 'dos-ps-printer))
401 ps-printer-name)))
402 (direct-print-region-helper printer start end lpr-prog
403 delete-text buf display rest)))
404
405(setq ps-print-region-function 'direct-ps-print-region-function)
406
407;(setq ps-lpr-command "gs")
5a0aa644 408
ca19ad67
AI
409;(setq ps-lpr-switches '("-q" "-dNOPAUSE" "-sDEVICE=epson" "-r240x60"
410; "-sOutputFile=LPT1"))
5a0aa644 411
b55edb63 412(provide 'dos-w32)
a750bcaa 413
b55edb63 414;;; dos-w32.el ends here