Mercurial > emacs
annotate lisp/url/url.el @ 62492:2d94ce2501bb
*** empty log message ***
author | Daniel Pfeiffer <occitan@esperanto.org> |
---|---|
date | Wed, 18 May 2005 20:12:10 +0000 |
parents | 68114d546e48 |
children | 5439e59a340c 042f282a2ed7 |
rev | line source |
---|---|
54695 | 1 ;;; url.el --- Uniform Resource Locator retrieval tool |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
2 |
59518
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
3 ;; Copyright (c) 1996, 1997, 1998, 1999, 2001, 2004, 2005 |
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
4 ;; Free Software Foundation, Inc. |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
5 |
54695 | 6 ;; Author: Bill Perry <wmperry@gnu.org> |
7 ;; Keywords: comm, data, processes, hypermedia | |
8 | |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
9 ;; This file is part of GNU Emacs. |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
10 ;; |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
11 ;; GNU Emacs is free software; you can redistribute it and/or modify |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
12 ;; it under the terms of the GNU General Public License as published by |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
13 ;; the Free Software Foundation; either version 2, or (at your option) |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
14 ;; any later version. |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
15 ;; |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
16 ;; GNU Emacs is distributed in the hope that it will be useful, |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
19 ;; GNU General Public License for more details. |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
20 ;; |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
21 ;; You should have received a copy of the GNU General Public License |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
24 ;; Boston, MA 02111-1307, USA. |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
25 |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
26 ;;; Commentary: |
54695 | 27 |
28 ;; Registered URI schemes: http://www.iana.org/assignments/uri-schemes | |
29 | |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
30 ;;; Code: |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
31 |
54695 | 32 (eval-when-compile (require 'cl)) |
33 ;; Don't require CL at runtime if we can avoid it (Emacs 21). | |
34 ;; Otherwise we need it for hashing functions. `puthash' was never | |
35 ;; defined in the Emacs 20 cl.el for some reason. | |
36 (if (fboundp 'puthash) | |
37 nil ; internal or CL is loaded | |
38 (defalias 'puthash 'cl-puthash) | |
39 (autoload 'cl-puthash "cl") | |
40 (autoload 'gethash "cl") | |
41 (autoload 'maphash "cl") | |
42 (autoload 'make-hash-table "cl")) | |
43 | |
44 (eval-when-compile | |
45 (require 'mm-decode) | |
46 (require 'mm-view)) | |
47 | |
48 (require 'mailcap) | |
49 (require 'url-vars) | |
50 (require 'url-cookie) | |
51 (require 'url-history) | |
52 (require 'url-expand) | |
53 (require 'url-privacy) | |
54 (require 'url-methods) | |
55 (require 'url-proxy) | |
56 (require 'url-parse) | |
57 (require 'url-util) | |
58 | |
59 ;; Fixme: customize? convert-standard-filename? | |
60 ;;;###autoload | |
61 (defvar url-configuration-directory "~/.url") | |
62 | |
63 (defun url-do-setup () | |
64 "Setup the url package. | |
65 This is to avoid conflict with user settings if URL is dumped with | |
66 Emacs." | |
67 (unless url-setup-done | |
68 | |
69 ;; Make OS/2 happy | |
70 ;;(push '("http" "80") tcp-binary-process-input-services) | |
71 | |
72 (mailcap-parse-mailcaps) | |
73 (mailcap-parse-mimetypes) | |
74 | |
75 ;; Register all the authentication schemes we can handle | |
76 (url-register-auth-scheme "basic" nil 4) | |
77 (url-register-auth-scheme "digest" nil 7) | |
78 | |
79 (setq url-cookie-file | |
80 (or url-cookie-file | |
81 (expand-file-name "cookies" url-configuration-directory))) | |
82 | |
83 (setq url-history-file | |
84 (or url-history-file | |
85 (expand-file-name "history" url-configuration-directory))) | |
86 | |
87 ;; Parse the global history file if it exists, so that it can be used | |
88 ;; for URL completion, etc. | |
89 (url-history-parse-history) | |
90 (url-history-setup-save-timer) | |
91 | |
92 ;; Ditto for cookies | |
93 (url-cookie-setup-save-timer) | |
94 (url-cookie-parse-file url-cookie-file) | |
95 | |
96 ;; Read in proxy gateways | |
97 (let ((noproxy (and (not (assoc "no_proxy" url-proxy-services)) | |
98 (or (getenv "NO_PROXY") | |
99 (getenv "no_PROXY") | |
100 (getenv "no_proxy"))))) | |
101 (if noproxy | |
102 (setq url-proxy-services | |
103 (cons (cons "no_proxy" | |
104 (concat "\\(" | |
105 (mapconcat | |
106 (lambda (x) | |
107 (cond | |
108 ((= x ?,) "\\|") | |
109 ((= x ? ) "") | |
110 ((= x ?.) (regexp-quote ".")) | |
111 ((= x ?*) ".*") | |
112 ((= x ??) ".") | |
113 (t (char-to-string x)))) | |
114 noproxy "") "\\)")) | |
115 url-proxy-services)))) | |
116 | |
117 (url-setup-privacy-info) | |
118 (run-hooks 'url-load-hook) | |
119 (setq url-setup-done t))) | |
120 | |
121 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
122 ;;; Retrieval functions | |
123 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
124 (defun url-retrieve (url callback &optional cbargs) | |
125 "Retrieve URL asynchronously and call CALLBACK with CBARGS when finished. | |
126 The callback is called when the object has been completely retrieved, with | |
127 the current buffer containing the object, and any MIME headers associated | |
128 with it. URL is either a string or a parsed URL. | |
129 | |
130 Return the buffer URL will load into, or nil if the process has | |
131 already completed." | |
132 (url-do-setup) | |
133 (url-gc-dead-buffers) | |
134 (if (stringp url) | |
135 (set-text-properties 0 (length url) nil url)) | |
136 (if (not (vectorp url)) | |
137 (setq url (url-generic-parse-url url))) | |
138 (if (not (functionp callback)) | |
139 (error "Must provide a callback function to url-retrieve")) | |
140 (unless (url-type url) | |
141 (error "Bad url: %s" (url-recreate-url url))) | |
142 (let ((loader (url-scheme-get-property (url-type url) 'loader)) | |
143 (url-using-proxy (if (url-host url) | |
144 (url-find-proxy-for-url url (url-host url)))) | |
145 (buffer nil) | |
146 (asynch (url-scheme-get-property (url-type url) 'asynchronous-p))) | |
147 (if url-using-proxy | |
148 (setq asynch t | |
149 loader 'url-proxy)) | |
150 (if asynch | |
151 (setq buffer (funcall loader url callback cbargs)) | |
152 (setq buffer (funcall loader url)) | |
153 (if buffer | |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
154 (with-current-buffer buffer |
54695 | 155 (apply callback cbargs)))) |
156 (url-history-update-url url (current-time)) | |
157 buffer)) | |
158 | |
159 (defun url-retrieve-synchronously (url) | |
160 "Retrieve URL synchronously. | |
161 Return the buffer containing the data, or nil if there are no data | |
162 associated with it (the case for dired, info, or mailto URLs that need | |
163 no further processing). URL is either a string or a parsed URL." | |
164 (url-do-setup) | |
165 | |
166 (lexical-let ((retrieval-done nil) | |
167 (asynch-buffer nil)) | |
168 (setq asynch-buffer | |
169 (url-retrieve url (lambda (&rest ignored) | |
170 (url-debug 'retrieval "Synchronous fetching done (%S)" (current-buffer)) | |
171 (setq retrieval-done t | |
172 asynch-buffer (current-buffer))))) | |
59518
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
173 (let ((proc (and asynch-buffer (get-buffer-process asynch-buffer)))) |
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
174 (if (null proc) |
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
175 ;; We do not need to do anything, it was a mailto or something |
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
176 ;; similar that takes processing completely outside of the URL |
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
177 ;; package. |
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
178 nil |
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
179 (while (not retrieval-done) |
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
180 (url-debug 'retrieval |
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
181 "Spinning in url-retrieve-synchronously: %S (%S)" |
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
182 retrieval-done asynch-buffer) |
61630
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
183 (if (memq (process-status proc) '(closed exit signal failed)) |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
184 ;; FIXME: It's not clear whether url-retrieve's callback is |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
185 ;; guaranteed to be called or not. It seems that url-http |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
186 ;; decides sometimes consciously not to call it, so it's not |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
187 ;; clear that it's a bug, but even if we need to decide how |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
188 ;; url-http can then warn us that the download has completed. |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
189 ;; In the mean time, we use this here workaround. |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
190 (setq retrieval-done t) |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
191 ;; We used to use `sit-for' here, but in some cases it wouldn't |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
192 ;; work because apparently pending keyboard input would always |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
193 ;; interrupt it before it got a chance to handle process input. |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
194 ;; `sleep-for' was tried but it lead to other forms of |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
195 ;; hanging. --Stef |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
196 (unless (accept-process-output proc) |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
197 ;; accept-process-output returned nil, maybe because the process |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
198 ;; exited (and may have been replaced with another). |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
199 (setq proc (get-buffer-process asynch-buffer)))))) |
54695 | 200 asynch-buffer))) |
201 | |
202 (defun url-mm-callback (&rest ignored) | |
203 (let ((handle (mm-dissect-buffer t))) | |
204 (save-excursion | |
205 (url-mark-buffer-as-dead (current-buffer)) | |
206 (set-buffer (generate-new-buffer (url-recreate-url url-current-object))) | |
207 (if (eq (mm-display-part handle) 'external) | |
208 (progn | |
209 (set-process-sentinel | |
210 ;; Fixme: this shouldn't have to know the form of the | |
211 ;; undisplayer produced by `mm-display-part'. | |
212 (get-buffer-process (cdr (mm-handle-undisplayer handle))) | |
213 `(lambda (proc event) | |
214 (mm-destroy-parts (quote ,handle)))) | |
215 (message "Viewing externally") | |
216 (kill-buffer (current-buffer))) | |
217 (display-buffer (current-buffer)) | |
58343
d9b4c5625386
(url-mm-callback): Delay the invocation
Masatake YAMATO <jet@gyve.org>
parents:
57515
diff
changeset
|
218 (add-hook 'kill-buffer-hook |
d9b4c5625386
(url-mm-callback): Delay the invocation
Masatake YAMATO <jet@gyve.org>
parents:
57515
diff
changeset
|
219 `(lambda () (mm-destroy-parts ',handle)) |
d9b4c5625386
(url-mm-callback): Delay the invocation
Masatake YAMATO <jet@gyve.org>
parents:
57515
diff
changeset
|
220 nil |
d9b4c5625386
(url-mm-callback): Delay the invocation
Masatake YAMATO <jet@gyve.org>
parents:
57515
diff
changeset
|
221 t))))) |
54695 | 222 |
223 (defun url-mm-url (url) | |
224 "Retrieve URL and pass to the appropriate viewing application." | |
225 (require 'mm-decode) | |
226 (require 'mm-view) | |
227 (url-retrieve url 'url-mm-callback nil)) | |
228 | |
229 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
230 ;;; Miscellaneous | |
231 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
232 (defvar url-dead-buffer-list nil) | |
233 | |
234 (defun url-mark-buffer-as-dead (buff) | |
235 (push buff url-dead-buffer-list)) | |
236 | |
237 (defun url-gc-dead-buffers () | |
238 (let ((buff)) | |
239 (while (setq buff (pop url-dead-buffer-list)) | |
240 (if (buffer-live-p buff) | |
241 (kill-buffer buff))))) | |
242 | |
243 (cond | |
244 ((fboundp 'display-warning) | |
245 (defalias 'url-warn 'display-warning)) | |
246 ((fboundp 'warn) | |
247 (defun url-warn (class message &optional level) | |
248 (warn "(%s/%s) %s" class (or level 'warning) message))) | |
249 (t | |
250 (defun url-warn (class message &optional level) | |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
251 (with-current-buffer (get-buffer-create "*URL-WARNINGS*") |
54695 | 252 (goto-char (point-max)) |
253 (save-excursion | |
254 (insert (format "(%s/%s) %s\n" class (or level 'warning) message))) | |
255 (display-buffer (current-buffer)))))) | |
256 | |
257 (provide 'url) | |
258 | |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
259 ;; arch-tag: bc182f1f-d187-4f10-b961-47af2066579a |
54695 | 260 ;;; url.el ends here |