diff options
author | Po Lu <luangruo@yahoo.com> | 2021-12-18 20:58:44 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2021-12-18 20:58:44 +0800 |
commit | 4ff3a70153ac1716bf0767fbbf92b04fdb3b1c80 (patch) | |
tree | e89cdddc6e7a923bb99998f75ed974883f002272 /lisp | |
parent | 7ab1b71c0dd878daa6806ce3a01d429dc5af646c (diff) | |
parent | 4544651b3f62ce4a104a058e8c6aee42c23b76bc (diff) | |
download | emacs-4ff3a70153ac1716bf0767fbbf92b04fdb3b1c80.tar.gz emacs-4ff3a70153ac1716bf0767fbbf92b04fdb3b1c80.tar.bz2 emacs-4ff3a70153ac1716bf0767fbbf92b04fdb3b1c80.zip |
Merge remote-tracking branch 'origin/master' into feature/pgtk
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emacs-lisp/multisession.el | 45 |
1 files changed, 26 insertions, 19 deletions
diff --git a/lisp/emacs-lisp/multisession.el b/lisp/emacs-lisp/multisession.el index bce888acc68..6ef0da10f77 100644 --- a/lisp/emacs-lisp/multisession.el +++ b/lisp/emacs-lisp/multisession.el @@ -250,23 +250,30 @@ DOC should be a doc string, and ARGS are keywords as applicable to (defun multisession--encode-file-name (name) (url-hexify-string name)) -(defun multisession--update-file-value (file object) - (condition-case nil - (with-temp-buffer - (let* ((time (file-attribute-modification-time - (file-attributes file))) - (coding-system-for-read 'utf-8)) - (insert-file-contents file) - (let ((stored (read (current-buffer)))) - (setf (multisession--cached-value object) stored - (multisession--cached-sequence object) time) - stored))) - ;; If the file is contended (could happen with file locking in - ;; Windws) or unreadable, just return the current value. - (error - (if (eq (multisession--cached-value object) multisession--unbound) - (multisession--initial-value object) - (multisession--cached-value object))))) +(defun multisession--read-file-value (file object) + (catch 'done + (let ((i 0) + last-error) + (while (< i 10) + (condition-case err + (throw 'done + (with-temp-buffer + (let* ((time (file-attribute-modification-time + (file-attributes file))) + (coding-system-for-read 'utf-8)) + (insert-file-contents file) + (let ((stored (read (current-buffer)))) + (setf (multisession--cached-value object) stored + (multisession--cached-sequence object) time) + stored)))) + ;; Windows uses OS-level file locking that may preclude + ;; reading the file in some circumstances. So when that + ;; happens, wait a bit and try again. + (file-error + (setq i (1+ i) + last-error err) + (sleep-for (+ 0.1 (/ (float (random 10)) 10)))))) + (signal (car last-error) (cdr last-error))))) (defun multisession--object-file-name (object) (expand-file-name @@ -283,7 +290,7 @@ DOC should be a doc string, and ARGS are keywords as applicable to ;; We have no value yet; see whether it's stored. ((eq (multisession--cached-value object) multisession--unbound) (if (file-exists-p file) - (multisession--update-file-value file object) + (multisession--read-file-value file object) ;; Nope; return the initial value. (multisession--initial-value object))) ;; We have a value, but we want to update in case some other @@ -293,7 +300,7 @@ DOC should be a doc string, and ARGS are keywords as applicable to (time-less-p (multisession--cached-sequence object) (file-attribute-modification-time (file-attributes file)))) - (multisession--update-file-value file object) + (multisession--read-file-value file object) ;; Nothing, return the cached value. (multisession--cached-value object))) ;; Just return the cached value. |