-
Notifications
You must be signed in to change notification settings - Fork 74
/
gh-cache.el
132 lines (104 loc) · 4.31 KB
/
gh-cache.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
;;; gh-cache.el --- caching for gh.el -*- lexical-binding: t; -*-
;; Copyright (C) 2011 Yann Hodique
;; Author: Yann Hodique <[email protected]>
;; Keywords:
;; This file 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.
;; This file 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.
;;; Commentary:
;;
;;; Code:
(require 'eieio)
(require 'pcache)
(defconst gh-cache-outdated-expiration-delay (* 60 60 24))
(defconst gh-cache-internal-version-constant 4)
(defconst gh-cache-version-constant
(format "%s/gh-%s" pcache-version-constant gh-cache-internal-version-constant))
(defclass gh-cache (pcache-repository)
((version-constant :allocation :class)
(entries :initarg :entries :initform (make-hash-table :test 'equal))
(safe-methods :allocation :class :initform ("HEAD" "GET" "OPTIONS" "TRACE"))
(invalidation-chain :allocation :class :initform nil)
(entry-cls :initarg :entry-cls :initform gh-cache-entry)))
(oset-default 'gh-cache version-constant gh-cache-version-constant)
(defclass gh-cache-entry (pcache-entry)
((etag :initarg :etag :initform nil)
(outdated :initarg :outdated :initform nil)
;; (ttl :initarg :ttl :initform 0)
))
(cl-defmethod pcache-invalidate :after ((cache gh-cache) key)
(let ((resource (car key)))
(pcache-map cache #'(lambda (k v)
(when (equal (car k) resource)
(pcache-invalidate cache k))))
(dolist (next (oref cache invalidation-chain))
(let ((nextresource
(replace-regexp-in-string (car next) (cdr next) resource)))
(when (not (equal nextresource resource))
(pcache-map cache #'(lambda (k v)
(when (equal (car k) nextresource)
(pcache-invalidate cache k)))))))))
(cl-defmethod pcache-get ((cache gh-cache) key &optional default)
(let* ((table (oref cache :entries))
(entry (gethash key table)))
(if (not entry)
default
(unless (pcache-entry-valid-p entry)
(oset entry :outdated t))
(oref entry :value))))
(cl-defmethod pcache-has ((cache pcache-repository) key)
(let* ((default (make-symbol ":nil"))
(table (oref cache :entries))
(entry (gethash key table default)))
(not (eq entry default))))
(cl-defmethod pcache-purge-invalid ((cache gh-cache))
(let ((table (oref cache :entries)))
(maphash #'(lambda (k e)
(unless (gh-cache-expired-p e)
(remhash k table)))
table)
(pcache-save cache)))
(cl-defmethod gh-cache-outdated-p ((cache gh-cache) key)
(let* ((table (oref cache :entries))
(entry (gethash key table)))
(and entry
(oref entry :outdated))))
(cl-defmethod gh-cache-expired-p ((cache gh-cache) key)
(let* ((table (oref cache :entries))
(entry (gethash key table)))
(and (gh-cache-outdated-p cache key)
(not
(let ((time (float-time (current-time))))
(< time (+ gh-cache-outdated-expiration-delay
(oref entry :timestamp))))))))
(cl-defmethod gh-cache-revive ((cache gh-cache) key)
(let* ((table (oref cache :entries))
(entry (gethash key table)))
(and entry
(oset entry :outdated nil)
(oset entry :timestamp (float-time (current-time)))
t)))
(cl-defmethod gh-cache-etag ((cache gh-cache) key)
(let* ((table (oref cache :entries))
(entry (gethash key table)))
(and entry
(oref entry :etag))))
(cl-defmethod gh-cache-set-etag ((cache gh-cache) key etag)
(let* ((table (oref cache :entries))
(entry (gethash key table)))
(and entry
(oset entry :etag etag))))
(provide 'gh-cache)
;;; gh-cache.el ends here
;; Local Variables:
;; indent-tabs-mode: nil
;; End: