]> code.delx.au - gnu-emacs/blob - lisp/url/url-queue.el
; Auto-commit of loaddefs files.
[gnu-emacs] / lisp / url / url-queue.el
1 ;;; url-queue.el --- Fetching web pages in parallel
2
3 ;; Copyright (C) 2011-2016 Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: comm
7
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 3 of the License, or
13 ;; (at your option) 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. If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;; The point of this package is to allow fetching web pages in
26 ;; parallel -- but control the level of parallelism to avoid DoS-ing
27 ;; web servers and Emacs.
28
29 ;;; Code:
30
31 (eval-when-compile (require 'cl-lib))
32 (require 'browse-url)
33 (require 'url-parse)
34
35 (defcustom url-queue-parallel-processes 6
36 "The number of concurrent processes."
37 :version "24.1"
38 :type 'integer
39 :group 'url)
40
41 (defcustom url-queue-timeout 5
42 "How long to let a job live once it's started (in seconds)."
43 :version "24.1"
44 :type 'integer
45 :group 'url)
46
47 ;;; Internal variables.
48
49 (defvar url-queue nil)
50
51 (cl-defstruct url-queue
52 url callback cbargs silentp
53 buffer start-time pre-triggered
54 inhibit-cookiesp)
55
56 ;;;###autoload
57 (defun url-queue-retrieve (url callback &optional cbargs silent inhibit-cookies)
58 "Retrieve URL asynchronously and call CALLBACK with CBARGS when finished.
59 This is like `url-retrieve' (which see for details of the arguments),
60 but with limits on the degree of parallelism. The variable
61 `url-queue-parallel-processes' sets the number of concurrent processes.
62 The variable `url-queue-timeout' sets a timeout."
63 (setq url-queue
64 (append url-queue
65 (list (make-url-queue :url url
66 :callback callback
67 :cbargs cbargs
68 :silentp silent
69 :inhibit-cookiesp inhibit-cookies))))
70 (url-queue-setup-runners))
71
72 ;; To ensure asynch behavior, we start the required number of queue
73 ;; runners from `run-with-idle-timer'. So we're basically going
74 ;; through the queue in two ways: 1) synchronously when a program
75 ;; calls `url-queue-retrieve' (which will then start the required
76 ;; number of queue runners), and 2) at the exit of each job, which
77 ;; will then not start any further threads, but just reuse the
78 ;; previous "slot".
79
80 (defun url-queue-setup-runners ()
81 (let ((running 0)
82 waiting)
83 (dolist (entry url-queue)
84 (cond
85 ((or (url-queue-start-time entry)
86 (url-queue-pre-triggered entry))
87 (cl-incf running))
88 ((not waiting)
89 (setq waiting entry))))
90 (when (and waiting
91 (< running url-queue-parallel-processes))
92 (setf (url-queue-pre-triggered waiting) t)
93 (run-with-idle-timer 0.01 nil 'url-queue-run-queue))))
94
95 (defun url-queue-run-queue ()
96 (url-queue-prune-old-entries)
97 (let ((running 0)
98 waiting)
99 (dolist (entry url-queue)
100 (cond
101 ((url-queue-start-time entry)
102 (cl-incf running))
103 ((not waiting)
104 (setq waiting entry))))
105 (when (and waiting
106 (< running url-queue-parallel-processes))
107 (setf (url-queue-start-time waiting) (float-time))
108 (url-queue-start-retrieve waiting))))
109
110 (defun url-queue-callback-function (status job)
111 (setq url-queue (delq job url-queue))
112 (when (and (eq (car status) :error)
113 (eq (cadr (cadr status)) 'connection-failed))
114 ;; If we get a connection error, then flush all other jobs from
115 ;; the host from the queue. This particularly makes sense if the
116 ;; error really is a DNS resolver issue, which happens
117 ;; synchronously and totally halts Emacs.
118 (url-queue-remove-jobs-from-host
119 (plist-get (nthcdr 3 (cadr status)) :host)))
120 (url-queue-run-queue)
121 (apply (url-queue-callback job) (cons status (url-queue-cbargs job))))
122
123 (defun url-queue-remove-jobs-from-host (host)
124 (let ((jobs nil))
125 (dolist (job url-queue)
126 (when (equal (url-host (url-generic-parse-url (url-queue-url job)))
127 host)
128 (push job jobs)))
129 (dolist (job jobs)
130 (url-queue-kill-job job)
131 (setq url-queue (delq job url-queue)))))
132
133 (defun url-queue-start-retrieve (job)
134 (setf (url-queue-buffer job)
135 (ignore-errors
136 (let ((url-request-noninteractive t))
137 (url-retrieve (url-queue-url job)
138 #'url-queue-callback-function (list job)
139 (url-queue-silentp job)
140 (url-queue-inhibit-cookiesp job))))))
141
142 (defun url-queue-prune-old-entries ()
143 (let (dead-jobs)
144 (dolist (job url-queue)
145 ;; Kill jobs that have lasted longer than the timeout.
146 (when (and (url-queue-start-time job)
147 (> (- (float-time) (url-queue-start-time job))
148 url-queue-timeout))
149 (push job dead-jobs)))
150 (dolist (job dead-jobs)
151 (url-queue-kill-job job)
152 (setq url-queue (delq job url-queue)))))
153
154 (defun url-queue-kill-job (job)
155 (when (bufferp (url-queue-buffer job))
156 (let (process)
157 (while (setq process (get-buffer-process (url-queue-buffer job)))
158 (set-process-sentinel process 'ignore)
159 (ignore-errors
160 (delete-process process)))))
161 ;; Call the callback with an error message to ensure that the caller
162 ;; is notified that the job has failed.
163 (with-current-buffer
164 (if (and (bufferp (url-queue-buffer job))
165 (buffer-live-p (url-queue-buffer job)))
166 ;; Use the (partially filled) process buffer it it exists.
167 (url-queue-buffer job)
168 ;; If not, just create a new buffer, which will probably be
169 ;; killed again by the caller.
170 (generate-new-buffer " *temp*"))
171 (apply (url-queue-callback job)
172 (cons (list :error (list 'error 'url-queue-timeout
173 "Queue timeout exceeded"))
174 (url-queue-cbargs job)))))
175
176 (provide 'url-queue)
177
178 ;;; url-queue.el ends here