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