1 ;;; url-queue.el --- Fetching web pages in parallel
3 ;; Copyright (C) 2011 Free Software Foundation, Inc.
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
8 ;; This file is part of GNU Emacs.
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.
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.
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/>.
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.
31 (eval-when-compile (require 'cl
))
34 (defcustom url-queue-parallel-processes
6
35 "The number of concurrent processes."
40 (defcustom url-queue-timeout
5
41 "How long to let a job live once it's started (in seconds)."
46 ;;; Internal variables.
48 (defvar url-queue nil
)
51 url callback cbargs silentp
55 (defun url-queue-retrieve (url callback
&optional cbargs silent
)
56 "Retrieve URL asynchronously and call CALLBACK with CBARGS when finished.
57 Like `url-retrieve' (which see for details of the arguments), but
58 controls the level of parallelism via the
59 `url-queue-parallel-processes' variable."
62 (list (make-url-queue :url url
66 (url-queue-run-queue))
68 (defun url-queue-run-queue ()
69 (url-queue-prune-old-entries)
72 (dolist (entry url-queue
)
74 ((url-queue-start-time entry
)
77 (setq waiting entry
))))
79 (< running url-queue-parallel-processes
))
80 (setf (url-queue-start-time waiting
) (float-time))
81 (url-queue-start-retrieve waiting
))))
83 (defun url-queue-callback-function (status job
)
84 (setq url-queue
(delq job url-queue
))
86 (apply (url-queue-callback job
) (cons status
(url-queue-cbargs job
))))
88 (defun url-queue-start-retrieve (job)
89 (setf (url-queue-buffer job
)
91 (url-retrieve (url-queue-url job
)
92 #'url-queue-callback-function
(list job
)
93 (url-queue-silentp job
)))))
95 (defun url-queue-prune-old-entries ()
97 (dolist (job url-queue
)
98 ;; Kill jobs that have lasted longer than the timeout.
99 (when (and (url-queue-start-time job
)
100 (> (- (float-time) (url-queue-start-time job
))
102 (push job dead-jobs
)))
103 (dolist (job dead-jobs
)
104 (when (bufferp (url-queue-buffer job
))
105 (while (get-buffer-process (url-queue-buffer job
))
107 (delete-process (get-buffer-process (url-queue-buffer job
)))))
109 (kill-buffer (url-queue-buffer job
))))
110 (setq url-queue
(delq job url-queue
)))))
114 ;;; url-queue.el ends here