Add declare-function compatibility definition.
[bpt/emacs.git] / lisp / url / url.el
CommitLineData
8c8b8430 1;;; url.el --- Uniform Resource Locator retrieval tool
42b369cd 2
71ddfde5 3;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004,
d7a0267c 4;; 2005, 2006, 2007 Free Software Foundation, Inc.
42b369cd 5
8c8b8430 6;; Author: Bill Perry <wmperry@gnu.org>
8c8b8430
SM
7;; Keywords: comm, data, processes, hypermedia
8
42b369cd
SM
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
8c0ee52a 13;; the Free Software Foundation; either version 3, or (at your option)
42b369cd
SM
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
4fc5845f
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
42b369cd
SM
25
26;;; Commentary:
8c8b8430
SM
27
28;; Registered URI schemes: http://www.iana.org/assignments/uri-schemes
29
42b369cd
SM
30;;; Code:
31
8c8b8430 32(eval-when-compile (require 'cl))
8c8b8430
SM
33
34(eval-when-compile
35 (require 'mm-decode)
36 (require 'mm-view))
37
38(require 'mailcap)
39(require 'url-vars)
40(require 'url-cookie)
41(require 'url-history)
42(require 'url-expand)
43(require 'url-privacy)
44(require 'url-methods)
45(require 'url-proxy)
46(require 'url-parse)
47(require 'url-util)
48
71ddfde5 49;; Fixme: customize? convert-standard-filename?
208d4577
SM
50(defvar url-configuration-directory
51 (cond
52 ((file-directory-p "~/.url") "~/.url")
c705474f
CY
53 ((file-directory-p user-emacs-directory)
54 (concat user-emacs-directory "url"))
208d4577 55 (t "~/.url")))
8c8b8430
SM
56
57(defun url-do-setup ()
58 "Setup the url package.
59This is to avoid conflict with user settings if URL is dumped with
60Emacs."
61 (unless url-setup-done
62
63 ;; Make OS/2 happy
64 ;;(push '("http" "80") tcp-binary-process-input-services)
65
66 (mailcap-parse-mailcaps)
67 (mailcap-parse-mimetypes)
71ddfde5 68
8c8b8430
SM
69 ;; Register all the authentication schemes we can handle
70 (url-register-auth-scheme "basic" nil 4)
71 (url-register-auth-scheme "digest" nil 7)
72
73 (setq url-cookie-file
74 (or url-cookie-file
75 (expand-file-name "cookies" url-configuration-directory)))
71ddfde5 76
8c8b8430
SM
77 (setq url-history-file
78 (or url-history-file
79 (expand-file-name "history" url-configuration-directory)))
71ddfde5 80
8c8b8430
SM
81 ;; Parse the global history file if it exists, so that it can be used
82 ;; for URL completion, etc.
83 (url-history-parse-history)
84 (url-history-setup-save-timer)
85
86 ;; Ditto for cookies
87 (url-cookie-setup-save-timer)
88 (url-cookie-parse-file url-cookie-file)
89
90 ;; Read in proxy gateways
91 (let ((noproxy (and (not (assoc "no_proxy" url-proxy-services))
92 (or (getenv "NO_PROXY")
93 (getenv "no_PROXY")
94 (getenv "no_proxy")))))
95 (if noproxy
96 (setq url-proxy-services
97 (cons (cons "no_proxy"
98 (concat "\\("
99 (mapconcat
100 (lambda (x)
101 (cond
102 ((= x ?,) "\\|")
103 ((= x ? ) "")
104 ((= x ?.) (regexp-quote "."))
105 ((= x ?*) ".*")
106 ((= x ??) ".")
107 (t (char-to-string x))))
108 noproxy "") "\\)"))
109 url-proxy-services))))
110
8c8b8430
SM
111 (url-setup-privacy-info)
112 (run-hooks 'url-load-hook)
113 (setq url-setup-done t)))
114
115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
116;;; Retrieval functions
117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
9b4cf231
SM
118
119(defvar url-redirect-buffer nil
120 "New buffer into which the retrieval will take place.
121Sometimes while retrieving a URL, the URL library needs to use another buffer
122than the one returned initially by `url-retrieve'. In this case, it sets this
123variable in the original buffer as a forwarding pointer.")
124
2ef88a69 125;;;###autoload
8c8b8430
SM
126(defun url-retrieve (url callback &optional cbargs)
127 "Retrieve URL asynchronously and call CALLBACK with CBARGS when finished.
497803ed
RS
128URL is either a string or a parsed URL.
129
130CALLBACK is called when the object has been completely retrieved, with
8c8b8430 131the current buffer containing the object, and any MIME headers associated
1b244f61
CY
132with it. It is called as (apply CALLBACK STATUS CBARGS).
133STATUS is a list with an even number of elements representing
134what happened during the request, with most recent events first,
135or an empty list if no events have occurred. Each pair is one of:
5695d1dd
CY
136
137\(:redirect REDIRECTED-TO) - the request was redirected to this URL
138\(:error (ERROR-SYMBOL . DATA)) - an error occurred. The error can be
139signaled with (signal ERROR-SYMBOL DATA).
8c8b8430
SM
140
141Return the buffer URL will load into, or nil if the process has
5695d1dd
CY
142already completed (i.e. URL was a mailto URL or similar; in this case
143the callback is not called).
144
145The variables `url-request-data', `url-request-method' and
146`url-request-extra-headers' can be dynamically bound around the
147request; dynamic binding of other variables doesn't necessarily
148take effect."
149;;; XXX: There is code in Emacs that does dynamic binding
150;;; of the following variables around url-retrieve:
151;;; url-standalone-mode, url-gateway-unplugged, w3-honor-stylesheets,
152;;; url-confirmation-func, url-cookie-multiple-line,
153;;; url-cookie-{{,secure-}storage,confirmation}
154;;; url-standalone-mode and url-gateway-unplugged should work as
155;;; usual. url-confirmation-func is only used in nnwarchive.el and
156;;; webmail.el; the latter should be updated. Is
157;;; url-cookie-multiple-line needed anymore? The other url-cookie-*
158;;; are (for now) only used in synchronous retrievals.
159 (url-retrieve-internal url callback (cons nil cbargs)))
160
161(defun url-retrieve-internal (url callback cbargs)
162 "Internal function; external interface is `url-retrieve'.
163CBARGS is what the callback will actually receive - the first item is
164the list of events, as described in the docstring of `url-retrieve'."
8c8b8430
SM
165 (url-do-setup)
166 (url-gc-dead-buffers)
167 (if (stringp url)
168 (set-text-properties 0 (length url) nil url))
169 (if (not (vectorp url))
170 (setq url (url-generic-parse-url url)))
171 (if (not (functionp callback))
172 (error "Must provide a callback function to url-retrieve"))
173 (unless (url-type url)
174 (error "Bad url: %s" (url-recreate-url url)))
175 (let ((loader (url-scheme-get-property (url-type url) 'loader))
176 (url-using-proxy (if (url-host url)
177 (url-find-proxy-for-url url (url-host url))))
178 (buffer nil)
179 (asynch (url-scheme-get-property (url-type url) 'asynchronous-p)))
180 (if url-using-proxy
181 (setq asynch t
182 loader 'url-proxy))
183 (if asynch
184 (setq buffer (funcall loader url callback cbargs))
185 (setq buffer (funcall loader url))
186 (if buffer
42b369cd 187 (with-current-buffer buffer
8c8b8430 188 (apply callback cbargs))))
11b5750f
RS
189 (if url-history-track
190 (url-history-update-url url (current-time)))
8c8b8430
SM
191 buffer))
192
2ef88a69 193;;;###autoload
8c8b8430
SM
194(defun url-retrieve-synchronously (url)
195 "Retrieve URL synchronously.
196Return the buffer containing the data, or nil if there are no data
197associated with it (the case for dired, info, or mailto URLs that need
198no further processing). URL is either a string or a parsed URL."
199 (url-do-setup)
200
201 (lexical-let ((retrieval-done nil)
202 (asynch-buffer nil))
203 (setq asynch-buffer
204 (url-retrieve url (lambda (&rest ignored)
205 (url-debug 'retrieval "Synchronous fetching done (%S)" (current-buffer))
206 (setq retrieval-done t
207 asynch-buffer (current-buffer)))))
7f954571
SM
208 (if (null asynch-buffer)
209 ;; We do not need to do anything, it was a mailto or something
210 ;; similar that takes processing completely outside of the URL
211 ;; package.
212 nil
213 (let ((proc (get-buffer-process asynch-buffer)))
214 ;; If the access method was synchronous, `retrieval-done' should
215 ;; hopefully already be set to t. If it is nil, and `proc' is also
216 ;; nil, it implies that the async process is not running in
217 ;; asynch-buffer. This happens e.g. for FTP files. In such a case
218 ;; url-file.el should probably set something like a `url-process'
219 ;; buffer-local variable so we can find the exact process that we
220 ;; should be waiting for. In the mean time, we'll just wait for any
221 ;; process output.
944b2ab6
SM
222 (while (not retrieval-done)
223 (url-debug 'retrieval
224 "Spinning in url-retrieve-synchronously: %S (%S)"
225 retrieval-done asynch-buffer)
9b4cf231
SM
226 (if (buffer-local-value 'url-redirect-buffer asynch-buffer)
227 (setq proc (get-buffer-process
228 (setq asynch-buffer
229 (buffer-local-value 'url-redirect-buffer
230 asynch-buffer))))
231 (if (and proc (memq (process-status proc)
232 '(closed exit signal failed))
233 ;; Make sure another process hasn't been started.
234 (eq proc (or (get-buffer-process asynch-buffer) proc)))
235 ;; FIXME: It's not clear whether url-retrieve's callback is
236 ;; guaranteed to be called or not. It seems that url-http
237 ;; decides sometimes consciously not to call it, so it's not
238 ;; clear that it's a bug, but even then we need to decide how
239 ;; url-http can then warn us that the download has completed.
240 ;; In the mean time, we use this here workaround.
5695d1dd
CY
241 ;; XXX: The callback must always be called. Any
242 ;; exception is a bug that should be fixed, not worked
243 ;; around.
9ffb9521
RS
244 (progn ;; Call delete-process so we run any sentinel now.
245 (delete-process proc)
246 (setq retrieval-done t)))
799fba8f
SM
247 ;; We used to use `sit-for' here, but in some cases it wouldn't
248 ;; work because apparently pending keyboard input would always
249 ;; interrupt it before it got a chance to handle process input.
250 ;; `sleep-for' was tried but it lead to other forms of
251 ;; hanging. --Stef
947612be
MH
252 (unless (or (with-local-quit
253 (accept-process-output proc))
254 (null proc))
799fba8f 255 ;; accept-process-output returned nil, maybe because the process
947612be
MH
256 ;; exited (and may have been replaced with another). If we got
257 ;; a quit, just stop.
258 (when quit-flag
259 (delete-process proc))
260 (setq proc (and (not quit-flag)
261 (get-buffer-process asynch-buffer)))))))
8c8b8430
SM
262 asynch-buffer)))
263
264(defun url-mm-callback (&rest ignored)
265 (let ((handle (mm-dissect-buffer t)))
7f954571
SM
266 (url-mark-buffer-as-dead (current-buffer))
267 (with-current-buffer
268 (generate-new-buffer (url-recreate-url url-current-object))
8c8b8430
SM
269 (if (eq (mm-display-part handle) 'external)
270 (progn
271 (set-process-sentinel
272 ;; Fixme: this shouldn't have to know the form of the
273 ;; undisplayer produced by `mm-display-part'.
274 (get-buffer-process (cdr (mm-handle-undisplayer handle)))
275 `(lambda (proc event)
276 (mm-destroy-parts (quote ,handle))))
277 (message "Viewing externally")
278 (kill-buffer (current-buffer)))
279 (display-buffer (current-buffer))
71ddfde5 280 (add-hook 'kill-buffer-hook
14e25c87
MY
281 `(lambda () (mm-destroy-parts ',handle))
282 nil
283 t)))))
8c8b8430
SM
284
285(defun url-mm-url (url)
286 "Retrieve URL and pass to the appropriate viewing application."
717c6bde
SM
287 ;; These requires could advantageously be moved to url-mm-callback or
288 ;; turned into autoloads, but I suspect that it would introduce some bugs
289 ;; because loading those files from a process sentinel or filter may
290 ;; result in some undesirable carner cases.
8c8b8430
SM
291 (require 'mm-decode)
292 (require 'mm-view)
293 (url-retrieve url 'url-mm-callback nil))
294
295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
296;;; Miscellaneous
297;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
298(defvar url-dead-buffer-list nil)
299
300(defun url-mark-buffer-as-dead (buff)
301 (push buff url-dead-buffer-list))
302
303(defun url-gc-dead-buffers ()
304 (let ((buff))
305 (while (setq buff (pop url-dead-buffer-list))
306 (if (buffer-live-p buff)
307 (kill-buffer buff)))))
308
309(cond
310 ((fboundp 'display-warning)
311 (defalias 'url-warn 'display-warning))
312 ((fboundp 'warn)
313 (defun url-warn (class message &optional level)
314 (warn "(%s/%s) %s" class (or level 'warning) message)))
315 (t
316 (defun url-warn (class message &optional level)
42b369cd 317 (with-current-buffer (get-buffer-create "*URL-WARNINGS*")
8c8b8430
SM
318 (goto-char (point-max))
319 (save-excursion
320 (insert (format "(%s/%s) %s\n" class (or level 'warning) message)))
321 (display-buffer (current-buffer))))))
322
323(provide 'url)
324
42b369cd 325;; arch-tag: bc182f1f-d187-4f10-b961-47af2066579a
8c8b8430 326;;; url.el ends here