(url-file-create-wrapper): Use new backquote syntax.
[bpt/emacs.git] / lisp / url / url-handlers.el
CommitLineData
8c8b8430 1;;; url-handlers.el --- file-name-handler stuff for URL loading
f1300fba
SM
2
3;; Copyright (c) 1996,97,98,1999,2004 Free Software Foundation, Inc.
4;; Copyright (c) 1993 - 1996 by William M. Perry <wmperry@cs.indiana.edu>
5
8c8b8430
SM
6;; Keywords: comm, data, processes, hypermedia
7
f1300fba
SM
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;;; Code:
8c8b8430
SM
28
29(require 'url)
30(require 'url-parse)
31(require 'url-util)
32(require 'mm-decode)
33(require 'mailcap)
34
35(eval-when-compile
36 (require 'cl))
37
38;; Implementation status
39;; ---------------------
40;; Function Status
41;; ------------------------------------------------------------
42;; add-name-to-file Needs DAV Bindings
43;; copy-file Broken (assumes 1st item is URL)
44;; delete-directory Finished (DAV)
45;; delete-file Finished (DAV)
46;; diff-latest-backup-file
47;; directory-file-name unnecessary (what about VMS)?
48;; directory-files Finished (DAV)
49;; dired-call-process
50;; dired-compress-file
51;; dired-uncache
52;; expand-file-name Finished
53;; file-accessible-directory-p
54;; file-attributes Finished, better with DAV
55;; file-directory-p Needs DAV, finished
56;; file-executable-p Finished
57;; file-exists-p Finished
58;; file-local-copy
59;; file-modes
60;; file-name-all-completions Finished (DAV)
61;; file-name-as-directory
62;; file-name-completion Finished (DAV)
63;; file-name-directory
64;; file-name-nondirectory
65;; file-name-sans-versions why?
66;; file-newer-than-file-p
67;; file-ownership-preserved-p No way to know
68;; file-readable-p Finished
69;; file-regular-p !directory_p
70;; file-symlink-p Needs DAV bindings
71;; file-truename Needs DAV bindings
72;; file-writable-p Check for LOCK?
73;; find-backup-file-name why?
74;; get-file-buffer why?
75;; insert-directory Use DAV
76;; insert-file-contents Finished
77;; load
78;; make-directory Finished (DAV)
79;; make-symbolic-link Needs DAV bindings
80;; rename-file Finished (DAV)
81;; set-file-modes Use mod_dav specific executable flag?
82;; set-visited-file-modtime Impossible?
83;; shell-command Impossible?
84;; unhandled-file-name-directory
85;; vc-registered Finished (DAV)
86;; verify-visited-file-modtime
87;; write-region
88
89(defvar url-handler-regexp
90 "\\`\\(https?\\|ftp\\|file\\|nfs\\)://"
91 "*A regular expression for matching URLs handled by file-name-handler-alist.
92Some valid URL protocols just do not make sense to visit interactively
93\(about, data, info, irc, mailto, etc\). This regular expression
94avoids conflicts with local files that look like URLs \(Gnus is
95particularly bad at this\).")
96
97;;;###autoload
f1300fba
SM
98(define-minor-mode url-handler-mode
99 "Use URL to handle URL-like file names."
100 :global t
101 (if (not (boundp 'file-name-handler-alist))
102 ;; Can't be turned ON anyway.
103 (setq url-handler-mode nil)
104 ;; Remove old entry, if any.
105 (setq file-name-handler-alist
106 (delq (rassq 'url-file-handler file-name-handler-alist)
107 file-name-handler-alist))
108 (if url-handler-mode
109 (push (cons url-handler-regexp 'url-file-handler)
110 file-name-handler-alist))))
8c8b8430
SM
111
112(defun url-run-real-handler (operation args)
113 (let ((inhibit-file-name-handlers (cons 'url-file-handler
114 (if (eq operation inhibit-file-name-operation)
115 inhibit-file-name-handlers)))
116 (inhibit-file-name-operation operation))
117 (apply operation args)))
118
119(defun url-file-handler (operation &rest args)
120 "Function called from the `file-name-handler-alist' routines.
121OPERATION is what needs to be done (`file-exists-p', etc). ARGS are
122the arguments that would have been passed to OPERATION."
123 (let ((fn (or (get operation 'url-file-handlers)
124 (intern-soft (format "url-%s" operation))))
125 (val nil)
126 (hooked nil))
127 (if (and fn (fboundp fn))
128 (setq hooked t
129 val (apply fn args))
130 (setq hooked nil
131 val (url-run-real-handler operation args)))
132 (url-debug 'handlers "%s %S%S => %S" (if hooked "Hooked" "Real")
133 operation args val)
134 val))
135
136(defun url-file-handler-identity (&rest args)
137 ;; Identity function
138 (car args))
139
140;; These are operations that we can fully support
141(put 'file-readable-p 'url-file-handlers 'url-file-exists-p)
142(put 'substitute-in-file-name 'url-file-handlers 'url-file-handler-identity)
143(put 'file-name-absolute-p 'url-file-handlers (lambda (&rest ignored) t))
144(put 'expand-file-name 'url-file-handlers 'url-handler-expand-file-name)
145
146;; These are operations that we do not support yet (DAV!!!)
147(put 'file-writable-p 'url-file-handlers 'ignore)
148(put 'file-symlink-p 'url-file-handlers 'ignore)
149
150(defun url-handler-expand-file-name (file &optional base)
151 (if (file-name-absolute-p file)
152 (expand-file-name file "/")
153 (url-expand-file-name file base)))
154
155;; The actual implementation
156;;;###autoload
157(defun url-copy-file (url newname &optional ok-if-already-exists keep-time)
158 "Copy URL to NEWNAME. Both args must be strings.
159Signals a `file-already-exists' error if file NEWNAME already exists,
160unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil.
161A number as third arg means request confirmation if NEWNAME already exists.
162This is what happens in interactive use with M-x.
163Fourth arg KEEP-TIME non-nil means give the new file the same
164last-modified time as the old one. (This works on only some systems.)
165A prefix arg makes KEEP-TIME non-nil."
166 (if (and (file-exists-p newname)
167 (not ok-if-already-exists))
168 (error "Opening output file: File already exists, %s" newname))
169 (let ((buffer (url-retrieve-synchronously url))
170 (handle nil))
171 (if (not buffer)
172 (error "Opening input file: No such file or directory, %s" url))
173 (save-excursion
174 (set-buffer buffer)
175 (setq handle (mm-dissect-buffer t)))
176 (mm-save-part-to-file handle newname)
177 (kill-buffer buffer)
178 (mm-destroy-parts handle)))
179
180;;;###autoload
181(defun url-file-local-copy (url &rest ignored)
182 "Copy URL into a temporary file on this machine.
183Returns the name of the local copy, or nil, if FILE is directly
184accessible."
185 (let ((filename (make-temp-name "url")))
186 (url-copy-file url filename)
187 filename))
188
189;;;###autoload
190(defun url-insert-file-contents (url &optional visit beg end replace)
191 (let ((buffer (url-retrieve-synchronously url))
192 (handle nil)
193 (data nil))
194 (if (not buffer)
195 (error "Opening input file: No such file or directory, %s" url))
196 (if visit (setq buffer-file-name url))
197 (save-excursion
198 (set-buffer buffer)
199 (setq handle (mm-dissect-buffer t))
200 (set-buffer (mm-handle-buffer handle))
201 (if beg
202 (setq data (buffer-substring beg end))
203 (setq data (buffer-string))))
204 (kill-buffer buffer)
205 (mm-destroy-parts handle)
206 (if replace (delete-region (point-min) (point-max)))
207 (save-excursion
208 (insert data))
209 (list url (length data))))
210
211(defun url-file-name-completion (url directory)
212 (error "Unimplemented"))
213
214(defun url-file-name-all-completions (file directory)
215 (error "Unimplemented"))
216
217;; All other handlers map onto their respective backends.
218(defmacro url-handlers-create-wrapper (method args)
219 `(defun ,(intern (format "url-%s" method)) ,args
220 ,(format "URL file-name-handler wrapper for `%s' call.\n---\n%s" method
221 (or (documentation method t) "No original documentation."))
222 (setq url (url-generic-parse-url url))
223 (when (url-type url)
224 (funcall (url-scheme-get-property (url-type url) (quote ,method))
225 ,@(remove '&rest (remove '&optional args))))))
226
227(url-handlers-create-wrapper file-exists-p (url))
228(url-handlers-create-wrapper file-attributes (url))
229(url-handlers-create-wrapper file-symlink-p (url))
230(url-handlers-create-wrapper file-writable-p (url))
231(url-handlers-create-wrapper file-directory-p (url))
232(url-handlers-create-wrapper file-executable-p (url))
233
234(if (featurep 'xemacs)
235 (progn
236 ;; XEmacs specific prototypes
237 (url-handlers-create-wrapper
238 directory-files (url &optional full match nosort files-only))
239 (url-handlers-create-wrapper
240 file-truename (url &optional default)))
241 ;; Emacs specific prototypes
242 (url-handlers-create-wrapper
243 directory-files (url &optional full match nosort))
244 (url-handlers-create-wrapper
245 file-truename (url &optional counter prev-dirs)))
246
247(add-hook 'find-file-hooks 'url-handlers-set-buffer-mode)
248
249(defun url-handlers-set-buffer-mode ()
250 "Set correct modes for the current buffer if visiting a remote file."
251 (and (stringp buffer-file-name)
252 (string-match url-handler-regexp buffer-file-name)
253 (auto-save-mode 0)))
254
255(provide 'url-handlers)
e5566bd5 256
f1300fba
SM
257;; arch-tag: 7300b99c-cc83-42ff-9147-79b2723c62ac
258;;; url-handlers.el ends here