1 ;;; url-cache.el --- Uniform Resource Locator retrieval tool
3 ;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc.
5 ;; Keywords: comm, data, processes, hypermedia
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
29 (defcustom url-cache-directory
30 (expand-file-name "cache" url-configuration-directory
)
31 "*The directory where cache files should be stored."
36 (defun url-cache-file-writable-p (file)
37 "Follows the documentation of `file-writable-p', unlike `file-writable-p'."
38 (and (file-writable-p file
)
39 (if (file-exists-p file
)
40 (not (file-directory-p file
))
41 (file-directory-p (file-name-directory file
)))))
43 (defun url-cache-prepare (file)
44 "Makes it possible to cache data in FILE.
45 Creates any necessary parent directories, deleting any non-directory files
46 that would stop this. Returns nil if parent directories can not be
47 created. If FILE already exists as a non-directory, it changes
48 permissions of FILE or deletes FILE to make it possible to write a new
49 version of FILE. Returns nil if this can not be done. Returns nil if
50 FILE already exists as a directory. Otherwise, returns t, indicating that
51 FILE can be created or overwritten."
53 ((url-cache-file-writable-p file
)
55 ((file-directory-p file
)
59 (or (make-directory (file-name-directory file
) t
) t
)
63 (defun url-store-in-cache (&optional buff
)
64 "Store buffer BUFF in the cache."
65 (if (not (and buff
(get-buffer buff
)))
68 (and buff
(set-buffer buff
))
69 (let* ((fname (url-cache-create-filename (url-view-url t
))))
70 (if (url-cache-prepare fname
)
71 (let ((coding-system-for-write 'binary
))
72 (write-region (point-min) (point-max) fname nil
5)))))))
75 (defun url-is-cached (url)
76 "Return non-nil if the URL is cached."
77 (let* ((fname (url-cache-create-filename url
))
78 (attribs (file-attributes fname
)))
79 (and fname
; got a filename
80 (file-exists-p fname
) ; file exists
81 (not (eq (nth 0 attribs
) t
)) ; Its not a directory
82 (nth 5 attribs
)))) ; Can get last mod-time
84 (defun url-cache-create-filename-human-readable (url)
85 "Return a filename in the local cache for URL"
87 (let* ((url (if (vectorp url
) (url-recreate-url url
) url
))
88 (urlobj (url-generic-parse-url url
))
89 (protocol (url-type urlobj
))
90 (hostname (url-host urlobj
))
93 (user-real-login-name)
94 (cons (or protocol
"file")
95 (reverse (split-string (or hostname
"localhost")
97 (regexp-quote ".")))))))
98 (fname (url-filename urlobj
)))
99 (if (and fname
(/= (length fname
) 0) (= (aref fname
0) ?
/))
100 (setq fname
(substring fname
1 nil
)))
108 ((and (= ?
/ x
) slash
)
116 (char-to-string x
))))) fname
""))))
118 (setq fname
(and fname
120 (function (lambda (x)
121 (if (= x ?~
) "" (char-to-string x
))))
125 ((or (string= "" fname
) (string= "/" fname
))
126 url-directory-index-file
)
127 ((= (string-to-char fname
) ?
/)
128 (if (string= (substring fname -
1 nil
) "/")
129 (concat fname url-directory-index-file
)
130 (substring fname
1 nil
)))
132 (if (string= (substring fname -
1 nil
) "/")
133 (concat fname url-directory-index-file
)
136 (expand-file-name fname
138 (mapconcat 'identity host-components
"/")
139 url-cache-directory
))))))
141 (defun url-cache-create-filename-using-md5 (url)
142 "Create a cached filename using MD5.
143 Very fast if you have an `md5' primitive function, suitably fast otherwise."
146 (let* ((url (if (vectorp url
) (url-recreate-url url
) url
))
148 (urlobj (url-generic-parse-url url
))
149 (protocol (url-type urlobj
))
150 (hostname (url-host urlobj
))
153 (user-real-login-name)
154 (cons (or protocol
"file")
157 (split-string (or hostname
"localhost")
159 (regexp-quote "."))))))))
160 (fname (url-filename urlobj
)))
162 (expand-file-name checksum
164 (mapconcat 'identity host-components
"/")
165 url-cache-directory
))))))
167 (defcustom url-cache-creation-function
'url-cache-create-filename-using-md5
168 "*What function to use to create a cached filename."
169 :type
'(choice (const :tag
"MD5 of filename (low collision rate)"
170 :value url-cache-create-filename-using-md5
)
171 (const :tag
"Human readable filenames (higher collision rate)"
172 :value url-cache-create-filename-human-readable
)
173 (function :tag
"Other"))
176 (defun url-cache-create-filename (url)
177 (funcall url-cache-creation-function url
))
180 (defun url-cache-extract (fnam)
181 "Extract FNAM from the local disk cache"
183 (insert-file-contents-literally fnam
))
186 (defun url-cache-expired (url mod
)
187 "Return t iff a cached file has expired."
188 (let* ((urlobj (if (vectorp url
) url
(url-generic-parse-url url
)))
189 (type (url-type urlobj
)))
192 (not (file-exists-p (url-cache-create-filename url
))))
193 ((string= type
"http")
195 ((member type
'("file" "ftp"))
196 (if (or (equal mod
'(0 0)) (not mod
))
198 (or (> (nth 0 mod
) (nth 0 (current-time)))
199 (> (nth 1 mod
) (nth 1 (current-time))))))
204 ;;; arch-tag: 95b050a6-8e81-4f23-8e63-191b9d1d657c
205 ;;; url-cache.el ends here