Mercurial > emacs
annotate lisp/url/url-handlers.el @ 64759:56bc2b539f17
*** empty log message ***
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Sat, 06 Aug 2005 21:49:19 +0000 |
parents | 875dcc490074 |
children | eb65acc95303 532e0a9335a9 |
rev | line source |
---|---|
54695 | 1 ;;; url-handlers.el --- file-name-handler stuff for URL loading |
54829
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
2 |
64748
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, |
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
4 ;; 2005 Free Software Foundation, Inc. |
54829
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
5 |
54695 | 6 ;; Keywords: comm, data, processes, hypermedia |
7 | |
54829
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
8 ;; This file is part of GNU Emacs. |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
9 ;; |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
10 ;; GNU Emacs is free software; you can redistribute it and/or modify |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
11 ;; it under the terms of the GNU General Public License as published by |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
13 ;; any later version. |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
14 ;; |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
15 ;; GNU Emacs is distributed in the hope that it will be useful, |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
18 ;; GNU General Public License for more details. |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
19 ;; |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
20 ;; You should have received a copy of the GNU General Public License |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64084 | 22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 ;; Boston, MA 02110-1301, USA. | |
54829
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
24 |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
25 ;;; Commentary: |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
26 |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
27 ;;; Code: |
54695 | 28 |
58900
96433f173a6e
Don't `require' everything eagerly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57427
diff
changeset
|
29 ;; (require 'url) |
96433f173a6e
Don't `require' everything eagerly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57427
diff
changeset
|
30 (eval-when-compile (require 'url-parse)) |
96433f173a6e
Don't `require' everything eagerly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57427
diff
changeset
|
31 ;; (require 'url-util) |
96433f173a6e
Don't `require' everything eagerly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57427
diff
changeset
|
32 (eval-when-compile (require 'mm-decode)) |
96433f173a6e
Don't `require' everything eagerly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57427
diff
changeset
|
33 ;; (require 'mailcap) |
96433f173a6e
Don't `require' everything eagerly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57427
diff
changeset
|
34 ;; The following functions in the byte compiler's warnings are known not |
96433f173a6e
Don't `require' everything eagerly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57427
diff
changeset
|
35 ;; to cause any real problem for the following reasons: |
96433f173a6e
Don't `require' everything eagerly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57427
diff
changeset
|
36 ;; - mm-save-part-to-file, mm-destroy-parts: always used |
96433f173a6e
Don't `require' everything eagerly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57427
diff
changeset
|
37 ;; after mm-dissect-buffer and defined in the same file. |
96433f173a6e
Don't `require' everything eagerly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57427
diff
changeset
|
38 ;; The following are autoloaded instead of `require'd to avoid eagerly |
96433f173a6e
Don't `require' everything eagerly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57427
diff
changeset
|
39 ;; loading all of URL when turning on url-handler-mode in the .emacs. |
96433f173a6e
Don't `require' everything eagerly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57427
diff
changeset
|
40 (autoload 'url-retrieve-synchronously "url" "Retrieve url synchronously.") |
96433f173a6e
Don't `require' everything eagerly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57427
diff
changeset
|
41 (autoload 'url-expand-file-name "url-expand" "Convert url to a fully specified url, and canonicalize it.") |
96433f173a6e
Don't `require' everything eagerly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57427
diff
changeset
|
42 (autoload 'mm-dissect-buffer "mm-decode" "Dissect the current buffer and return a list of MIME handles.") |
96433f173a6e
Don't `require' everything eagerly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57427
diff
changeset
|
43 (autoload 'url-scheme-get-property "url-methods" "Get property of a URL SCHEME.") |
54695 | 44 |
45 (eval-when-compile | |
46 (require 'cl)) | |
47 | |
48 ;; Implementation status | |
49 ;; --------------------- | |
50 ;; Function Status | |
51 ;; ------------------------------------------------------------ | |
52 ;; add-name-to-file Needs DAV Bindings | |
53 ;; copy-file Broken (assumes 1st item is URL) | |
54 ;; delete-directory Finished (DAV) | |
55 ;; delete-file Finished (DAV) | |
56 ;; diff-latest-backup-file | |
57 ;; directory-file-name unnecessary (what about VMS)? | |
58 ;; directory-files Finished (DAV) | |
59 ;; dired-call-process | |
60 ;; dired-compress-file | |
61 ;; dired-uncache | |
62 ;; expand-file-name Finished | |
63 ;; file-accessible-directory-p | |
64 ;; file-attributes Finished, better with DAV | |
65 ;; file-directory-p Needs DAV, finished | |
66 ;; file-executable-p Finished | |
67 ;; file-exists-p Finished | |
68 ;; file-local-copy | |
69 ;; file-modes | |
70 ;; file-name-all-completions Finished (DAV) | |
71 ;; file-name-as-directory | |
72 ;; file-name-completion Finished (DAV) | |
73 ;; file-name-directory | |
74 ;; file-name-nondirectory | |
75 ;; file-name-sans-versions why? | |
76 ;; file-newer-than-file-p | |
77 ;; file-ownership-preserved-p No way to know | |
78 ;; file-readable-p Finished | |
79 ;; file-regular-p !directory_p | |
80 ;; file-symlink-p Needs DAV bindings | |
81 ;; file-truename Needs DAV bindings | |
82 ;; file-writable-p Check for LOCK? | |
83 ;; find-backup-file-name why? | |
84 ;; get-file-buffer why? | |
85 ;; insert-directory Use DAV | |
86 ;; insert-file-contents Finished | |
87 ;; load | |
88 ;; make-directory Finished (DAV) | |
89 ;; make-symbolic-link Needs DAV bindings | |
90 ;; rename-file Finished (DAV) | |
91 ;; set-file-modes Use mod_dav specific executable flag? | |
92 ;; set-visited-file-modtime Impossible? | |
93 ;; shell-command Impossible? | |
94 ;; unhandled-file-name-directory | |
95 ;; vc-registered Finished (DAV) | |
96 ;; verify-visited-file-modtime | |
97 ;; write-region | |
98 | |
99 (defvar url-handler-regexp | |
100 "\\`\\(https?\\|ftp\\|file\\|nfs\\)://" | |
101 "*A regular expression for matching URLs handled by file-name-handler-alist. | |
102 Some valid URL protocols just do not make sense to visit interactively | |
103 \(about, data, info, irc, mailto, etc\). This regular expression | |
104 avoids conflicts with local files that look like URLs \(Gnus is | |
105 particularly bad at this\).") | |
106 | |
107 ;;;###autoload | |
54829
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
108 (define-minor-mode url-handler-mode |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
109 "Use URL to handle URL-like file names." |
61290
507abf822567
(url-handler-mode): Specify :group.
Lute Kamstra <lute@gnu.org>
parents:
58900
diff
changeset
|
110 :global t :group 'url |
54829
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
111 (if (not (boundp 'file-name-handler-alist)) |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
112 ;; Can't be turned ON anyway. |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
113 (setq url-handler-mode nil) |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
114 ;; Remove old entry, if any. |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
115 (setq file-name-handler-alist |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
116 (delq (rassq 'url-file-handler file-name-handler-alist) |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
117 file-name-handler-alist)) |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
118 (if url-handler-mode |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
119 (push (cons url-handler-regexp 'url-file-handler) |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
120 file-name-handler-alist)))) |
54695 | 121 |
122 (defun url-run-real-handler (operation args) | |
123 (let ((inhibit-file-name-handlers (cons 'url-file-handler | |
124 (if (eq operation inhibit-file-name-operation) | |
125 inhibit-file-name-handlers))) | |
126 (inhibit-file-name-operation operation)) | |
127 (apply operation args))) | |
128 | |
129 (defun url-file-handler (operation &rest args) | |
130 "Function called from the `file-name-handler-alist' routines. | |
131 OPERATION is what needs to be done (`file-exists-p', etc). ARGS are | |
132 the arguments that would have been passed to OPERATION." | |
133 (let ((fn (or (get operation 'url-file-handlers) | |
134 (intern-soft (format "url-%s" operation)))) | |
135 (val nil) | |
136 (hooked nil)) | |
137 (if (and fn (fboundp fn)) | |
138 (setq hooked t | |
139 val (apply fn args)) | |
140 (setq hooked nil | |
141 val (url-run-real-handler operation args))) | |
142 (url-debug 'handlers "%s %S%S => %S" (if hooked "Hooked" "Real") | |
143 operation args val) | |
144 val)) | |
145 | |
146 (defun url-file-handler-identity (&rest args) | |
147 ;; Identity function | |
148 (car args)) | |
149 | |
150 ;; These are operations that we can fully support | |
151 (put 'file-readable-p 'url-file-handlers 'url-file-exists-p) | |
152 (put 'substitute-in-file-name 'url-file-handlers 'url-file-handler-identity) | |
153 (put 'file-name-absolute-p 'url-file-handlers (lambda (&rest ignored) t)) | |
154 (put 'expand-file-name 'url-file-handlers 'url-handler-expand-file-name) | |
155 | |
156 ;; These are operations that we do not support yet (DAV!!!) | |
157 (put 'file-writable-p 'url-file-handlers 'ignore) | |
158 (put 'file-symlink-p 'url-file-handlers 'ignore) | |
63287
3e75cb9c1c5b
(vc-registered): Explicitly disable VC for URL files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61290
diff
changeset
|
159 ;; Just like for ange-ftp: let's not waste time trying to look for RCS/foo,v |
3e75cb9c1c5b
(vc-registered): Explicitly disable VC for URL files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61290
diff
changeset
|
160 ;; files and such since we can't do anything clever with them anyway. |
3e75cb9c1c5b
(vc-registered): Explicitly disable VC for URL files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61290
diff
changeset
|
161 (put 'vc-registered 'url-file-handlers 'ignore) |
54695 | 162 |
163 (defun url-handler-expand-file-name (file &optional base) | |
164 (if (file-name-absolute-p file) | |
165 (expand-file-name file "/") | |
166 (url-expand-file-name file base))) | |
167 | |
168 ;; The actual implementation | |
169 ;;;###autoload | |
170 (defun url-copy-file (url newname &optional ok-if-already-exists keep-time) | |
171 "Copy URL to NEWNAME. Both args must be strings. | |
172 Signals a `file-already-exists' error if file NEWNAME already exists, | |
173 unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil. | |
174 A number as third arg means request confirmation if NEWNAME already exists. | |
175 This is what happens in interactive use with M-x. | |
176 Fourth arg KEEP-TIME non-nil means give the new file the same | |
177 last-modified time as the old one. (This works on only some systems.) | |
178 A prefix arg makes KEEP-TIME non-nil." | |
179 (if (and (file-exists-p newname) | |
180 (not ok-if-already-exists)) | |
181 (error "Opening output file: File already exists, %s" newname)) | |
182 (let ((buffer (url-retrieve-synchronously url)) | |
183 (handle nil)) | |
184 (if (not buffer) | |
185 (error "Opening input file: No such file or directory, %s" url)) | |
57174
4202aed8aa86
(url-insert-file-contents): Decode contents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54931
diff
changeset
|
186 (with-current-buffer buffer |
54695 | 187 (setq handle (mm-dissect-buffer t))) |
188 (mm-save-part-to-file handle newname) | |
189 (kill-buffer buffer) | |
190 (mm-destroy-parts handle))) | |
191 | |
192 ;;;###autoload | |
193 (defun url-file-local-copy (url &rest ignored) | |
194 "Copy URL into a temporary file on this machine. | |
195 Returns the name of the local copy, or nil, if FILE is directly | |
196 accessible." | |
197 (let ((filename (make-temp-name "url"))) | |
198 (url-copy-file url filename) | |
199 filename)) | |
200 | |
201 ;;;###autoload | |
202 (defun url-insert-file-contents (url &optional visit beg end replace) | |
203 (let ((buffer (url-retrieve-synchronously url)) | |
204 (handle nil) | |
205 (data nil)) | |
206 (if (not buffer) | |
207 (error "Opening input file: No such file or directory, %s" url)) | |
208 (if visit (setq buffer-file-name url)) | |
57174
4202aed8aa86
(url-insert-file-contents): Decode contents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54931
diff
changeset
|
209 (with-current-buffer buffer |
54695 | 210 (setq handle (mm-dissect-buffer t)) |
211 (set-buffer (mm-handle-buffer handle)) | |
57174
4202aed8aa86
(url-insert-file-contents): Decode contents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54931
diff
changeset
|
212 (setq data (if beg (buffer-substring beg end) |
4202aed8aa86
(url-insert-file-contents): Decode contents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54931
diff
changeset
|
213 (buffer-string)))) |
54695 | 214 (kill-buffer buffer) |
215 (mm-destroy-parts handle) | |
216 (if replace (delete-region (point-min) (point-max))) | |
217 (save-excursion | |
57174
4202aed8aa86
(url-insert-file-contents): Decode contents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54931
diff
changeset
|
218 (let ((start (point))) |
4202aed8aa86
(url-insert-file-contents): Decode contents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54931
diff
changeset
|
219 (insert data) |
4202aed8aa86
(url-insert-file-contents): Decode contents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54931
diff
changeset
|
220 ;; FIXME: for text/plain data, we sometimes receive a `charset' |
4202aed8aa86
(url-insert-file-contents): Decode contents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54931
diff
changeset
|
221 ;; annotation which we could use as a hint of the locale in use |
4202aed8aa86
(url-insert-file-contents): Decode contents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54931
diff
changeset
|
222 ;; at the remote site. Not sure how/if that should be done. --Stef |
4202aed8aa86
(url-insert-file-contents): Decode contents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54931
diff
changeset
|
223 (decode-coding-inserted-region |
57361
d3a3ba2db17f
(url-insert-file-contents): Use the URL to decide the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57174
diff
changeset
|
224 start (point) url visit beg end replace))) |
54695 | 225 (list url (length data)))) |
226 | |
227 (defun url-file-name-completion (url directory) | |
228 (error "Unimplemented")) | |
229 | |
230 (defun url-file-name-all-completions (file directory) | |
231 (error "Unimplemented")) | |
232 | |
233 ;; All other handlers map onto their respective backends. | |
234 (defmacro url-handlers-create-wrapper (method args) | |
235 `(defun ,(intern (format "url-%s" method)) ,args | |
236 ,(format "URL file-name-handler wrapper for `%s' call.\n---\n%s" method | |
237 (or (documentation method t) "No original documentation.")) | |
238 (setq url (url-generic-parse-url url)) | |
239 (when (url-type url) | |
240 (funcall (url-scheme-get-property (url-type url) (quote ,method)) | |
241 ,@(remove '&rest (remove '&optional args)))))) | |
242 | |
243 (url-handlers-create-wrapper file-exists-p (url)) | |
54931
2a15e5a02a89
Use new find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54829
diff
changeset
|
244 (url-handlers-create-wrapper file-attributes (url &optional id-format)) |
54695 | 245 (url-handlers-create-wrapper file-symlink-p (url)) |
246 (url-handlers-create-wrapper file-writable-p (url)) | |
247 (url-handlers-create-wrapper file-directory-p (url)) | |
248 (url-handlers-create-wrapper file-executable-p (url)) | |
249 | |
250 (if (featurep 'xemacs) | |
251 (progn | |
252 ;; XEmacs specific prototypes | |
253 (url-handlers-create-wrapper | |
254 directory-files (url &optional full match nosort files-only)) | |
255 (url-handlers-create-wrapper | |
256 file-truename (url &optional default))) | |
257 ;; Emacs specific prototypes | |
258 (url-handlers-create-wrapper | |
259 directory-files (url &optional full match nosort)) | |
260 (url-handlers-create-wrapper | |
261 file-truename (url &optional counter prev-dirs))) | |
262 | |
54931
2a15e5a02a89
Use new find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54829
diff
changeset
|
263 (add-hook 'find-file-hook 'url-handlers-set-buffer-mode) |
54695 | 264 |
265 (defun url-handlers-set-buffer-mode () | |
266 "Set correct modes for the current buffer if visiting a remote file." | |
267 (and (stringp buffer-file-name) | |
268 (string-match url-handler-regexp buffer-file-name) | |
269 (auto-save-mode 0))) | |
270 | |
271 (provide 'url-handlers) | |
54699 | 272 |
54829
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
273 ;; arch-tag: 7300b99c-cc83-42ff-9147-79b2723c62ac |
e38bd75fb54e
(url-handler-mode): New minor mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
274 ;;; url-handlers.el ends here |