Mercurial > hg > xemacs-beta
view lisp/w3/url-cache.el @ 118:7d55a9ba150c r20-1b11
Import from CVS: tag r20-1b11
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:24:17 +0200 |
parents | e04119814345 |
children | 9b50b4588a93 |
line wrap: on
line source
;;; url-cache.el --- Uniform Resource Locator retrieval tool ;; Author: wmperry ;; Created: 1997/04/03 21:04:08 ;; Version: 1.11 ;; Keywords: comm, data, processes, hypermedia ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Copyright (c) 1993-1996 by William M. Perry (wmperry@cs.indiana.edu) ;;; Copyright (c) 1996, 1997 Free Software Foundation, Inc. ;;; ;;; This file is not part of GNU Emacs, but the same permissions apply. ;;; ;;; GNU Emacs is free software; you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 2, or (at your option) ;;; any later version. ;;; ;;; GNU Emacs is distributed in the hope that it will be useful, ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Emacs; see the file COPYING. If not, write to the ;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;;; Boston, MA 02111-1307, USA. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (require 'md5) (defvar url-cache-directory "~/.w3/cache/" "*The directory where cache files should be stored.") ;; Cache manager (defun url-cache-file-writable-p (file) "Follows the documentation of file-writable-p, unlike file-writable-p." (and (file-writable-p file) (if (file-exists-p file) (not (file-directory-p file)) (file-directory-p (file-name-directory file))))) (defun url-cache-prepare (file) "Makes it possible to cache data in FILE. Creates any necessary parent directories, deleting any non-directory files that would stop this. Returns nil if parent directories can not be created. If FILE already exists as a non-directory, it changes permissions of FILE or deletes FILE to make it possible to write a new version of FILE. Returns nil if this can not be done. Returns nil if FILE already exists as a directory. Otherwise, returns t, indicating that FILE can be created or overwritten." (cond ((url-cache-file-writable-p file) t) ((file-directory-p file) nil) (t (condition-case () (or (make-directory (file-name-directory file) t) t) (error nil))))) (defvar url-cache-ignored-protocols '("www" "about" "https" "mailto") "*A list of protocols that we should never cache.") (defun url-cache-cachable-p (obj) ;; return t iff the current buffer is cachable (cond ((not url-automatic-caching) ; User doesn't want to cache nil) ((null obj) ; Something horribly confused nil) ((member (url-type obj) url-cache-ignored-protocols) ;; We have been told to ignore this type of object nil) ((and (member (url-type obj) '("file" "ftp")) (not (url-host obj))) ;; We never want to cache local files... what's the point? nil) ((member (url-type obj) '("http" "https")) (let* ((status (cdr-safe (assoc "status" url-current-mime-headers))) (class (if status (/ status 100) 0))) (cond ((string-match (eval-when-compile (regexp-quote "?")) (url-filename obj)) nil) ((= class 2) (memq status '(200))) (t nil)))) (t nil))) ;;;###autoload (defun url-store-in-cache (&optional buff) "Store buffer BUFF in the cache" (if (not (and buff (get-buffer buff))) nil (save-excursion (and buff (set-buffer buff)) (if (not (url-cache-cachable-p url-current-object)) nil (let* ((fname (url-cache-create-filename (url-view-url t))) (fname-hdr (concat fname ".hdr")) (info (mapcar (function (lambda (var) (cons (symbol-name var) (symbol-value var)))) '( url-current-content-length url-current-object url-current-isindex url-current-mime-encoding url-current-mime-headers url-current-mime-type )))) (cond ((and (url-cache-prepare fname) (url-cache-prepare fname-hdr)) (write-region (point-min) (point-max) fname nil 5) (set-buffer (get-buffer-create " *cache-tmp*")) (erase-buffer) (insert "(setq ") (mapcar (function (lambda (x) (insert (car x) " " (cond ((null (setq x (cdr x))) "nil") ((stringp x) (prin1-to-string x)) ((listp x) (concat "'" (prin1-to-string x))) ((vectorp x) (prin1-to-string x)) ((numberp x) (int-to-string x)) (t "'???")) "\n"))) info) (insert ")\n") (write-region (point-min) (point-max) fname-hdr nil 5)))))))) ;;;###autoload (defun url-is-cached (url) "Return non-nil if the URL is cached." (let* ((fname (url-cache-create-filename url)) (attribs (file-attributes fname))) (and fname ; got a filename (file-exists-p fname) ; file exists (not (eq (nth 0 attribs) t)) ; Its not a directory (nth 5 attribs)))) ; Can get last mod-time (defun url-cache-create-filename-human-readable (url) "Return a filename in the local cache for URL" (if url (let* ((url (if (vectorp url) (url-recreate-url url) url)) (urlobj (url-generic-parse-url url)) (protocol (url-type urlobj)) (hostname (url-host urlobj)) (host-components (cons (user-real-login-name) (cons (or protocol "file") (reverse (split-string (or hostname "localhost") (eval-when-compile (regexp-quote "."))))))) (fname (url-filename urlobj))) (if (and fname (/= (length fname) 0) (= (aref fname 0) ?/)) (setq fname (substring fname 1 nil))) (if fname (let ((slash nil)) (setq fname (mapconcat (function (lambda (x) (cond ((and (= ?/ x) slash) (setq slash nil) "%2F") ((= ?/ x) (setq slash t) "/") (t (setq slash nil) (char-to-string x))))) fname "")))) (setq fname (and fname (mapconcat (function (lambda (x) (if (= x ?~) "" (char-to-string x)))) fname "")) fname (cond ((null fname) nil) ((or (string= "" fname) (string= "/" fname)) url-directory-index-file) ((= (string-to-char fname) ?/) (if (string= (substring fname -1 nil) "/") (concat fname url-directory-index-file) (substring fname 1 nil))) (t (if (string= (substring fname -1 nil) "/") (concat fname url-directory-index-file) fname)))) (and fname (expand-file-name fname (expand-file-name (mapconcat 'identity host-components "/") url-cache-directory)))))) (defun url-cache-create-filename-using-md5 (url) "Create a cached filename using MD5. Very fast if you are in XEmacs, suitably fast otherwise." (if url (let* ((checksum (md5 url)) (url (if (vectorp url) (url-recreate-url url) url)) (urlobj (url-generic-parse-url url)) (protocol (url-type urlobj)) (hostname (url-host urlobj)) (host-components (cons (user-real-login-name) (cons (or protocol "file") (nreverse (delq nil (split-string (or hostname "localhost") (eval-when-compile (regexp-quote ".")))))))) (fname (url-filename urlobj))) (and fname (expand-file-name checksum (expand-file-name (mapconcat 'identity host-components "/") url-cache-directory)))))) (defvar url-cache-creation-function 'url-cache-create-filename-using-md5 "*What function to use to create a cached filename.") (defun url-cache-create-filename (url) (funcall url-cache-creation-function url)) ;;;###autoload (defun url-cache-extract (fnam) "Extract FNAM from the local disk cache" (set-buffer (get-buffer-create url-working-buffer)) (erase-buffer) (setq url-current-mime-viewer nil) (insert-file-contents-literally fnam) (load (concat (if (memq system-type '(ms-windows ms-dos os2)) (url-file-extension fnam t) fnam) ".hdr") t t)) ;;;###autoload (defun url-cache-expired (url mod) "Return t iff a cached file has expired." (let* ((urlobj (if (vectorp url) url (url-generic-parse-url url))) (type (url-type urlobj))) (cond (url-standalone-mode (not (file-exists-p (url-cache-create-filename url)))) ((string= type "http") t) ((member type '("file" "ftp")) (if (or (equal mod '(0 0)) (not mod)) (return t) (or (> (nth 0 mod) (nth 0 (current-time))) (> (nth 1 mod) (nth 1 (current-time)))))) (t nil)))) (provide 'url-cache)