-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
elsa-dependencies.el
236 lines (199 loc) · 8.78 KB
/
elsa-dependencies.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
;;; elsa-dependencies.el --- Dependency resolver -*- lexical-binding: t -*-
;; Copyright (C) 2023 Matúš Goljer
;; Author: Matúš Goljer <[email protected]>
;; Maintainer: Matúš Goljer <[email protected]>
;; Created: 9th March 2023
;; This program 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 3
;; of the License, or (at your option) any later version.
;; This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
(require 'dash)
(defun elsa--get-deps-with-no-deps (deps)
"Return dependencies from DEPS with zero dependencies.
DEPS is an alist of (LIBRARY . DEPENDENCIES). Here we select all
those DEPENDENCIES which themselves are not present in the
alist."
(let ((scanned-files (mapcar #'car deps))
(deps-all (-mapcat #'cdr deps)))
(->> deps-all
(-uniq)
(--remove (member it scanned-files))
(--remove (string-match-p ":" it)))))
(defun elsa--alist-to-layers (deps)
"Transform the dependencies alist DEPS to list of layers.
Each layer can be processed in parallel because it only depends
on the lower layers.
The bottom layer is the last in the list."
(let* (;; initial files with no dependencies
(empty-deps (elsa--get-deps-with-no-deps deps))
(processed nil)
(layers nil)
(current-layer)
(remaining-deps (append deps (mapcar #'list empty-deps)))
(i 0))
(catch 'done
(while t
(cl-incf i)
(when (= i 1000) (error "Dependency resolution overflow"))
(setq current-layer (apply #'append (--filter (= 1 (length it)) remaining-deps)))
(unless current-layer
(throw 'done layers))
(push current-layer layers)
(setq processed (-uniq (append current-layer processed)))
;; remove current layer because those are heads with no dependencies
(setq remaining-deps (--remove (member (car it) current-layer) remaining-deps))
;; remove current layer from remaining packages' dependencies
(setq remaining-deps
(mapcar (-lambda ((head . tail))
(cons head (--remove (member it processed) tail)))
remaining-deps))))))
(defun elsa--get-requires (file-or-buffer)
"Return all requires from FILE-OR-BUFFER."
(let ((this-file-requires nil))
(with-temp-buffer
(if (bufferp file-or-buffer)
(set-buffer file-or-buffer)
(let ((jka-compr-verbose nil)) (insert-file-contents file-or-buffer))
(let ((emacs-lisp-mode-hook nil)) (emacs-lisp-mode)))
(save-excursion
(goto-char (point-min))
(while (re-search-forward
(rx
"(" (*? whitespace)
"require" (*? whitespace)
"'" (group (+? (or word (syntax symbol))))
(*? whitespace) ")")
nil t)
(unless (or (nth 4 (syntax-ppss))
(and (< 0 (car (syntax-ppss)))
(not (and (= 1 (car (syntax-ppss)))
(save-excursion
(backward-up-list)
(down-list)
(looking-at-p "eval-"))))) )
(let* ((library-name (match-string 1))
(library (elsa--find-dependency library-name)))
(when library
(push (list library library-name) this-file-requires)))))))
(nreverse this-file-requires)))
(defun elsa--get-dep-alist (file &optional current-library state)
"Get dependencies of FILE and all its dependencies recursively.
STATE is a plist with two keys:
- :visited is a list that keeps track of visited files so we do not
add the same library multiple times.
- :deps is an alist of dependencies with `car' being the library name
and `cdr' its requires.
Return the state."
(unless state
(setq state (list :visited nil :deps nil)))
(setq current-library (or current-library file))
;; (this-file-requires :: (string string))
(let ((this-file-requires (elsa--get-requires file)))
(dolist (req (nreverse this-file-requires))
(let ((library (car req))
(library-name (cadr req)))
(let ((deps (plist-get state :deps)))
(push library-name (alist-get current-library deps nil nil #'equal))
(setq state (plist-put state :deps deps)))
(unless (assoc library-name (plist-get state :visited))
(setq state (plist-put state :visited
(cons (cons library-name library)
(plist-get state :visited))))
(setq state (elsa--get-dep-alist library library-name state))))))
state)
;; (elsa--fold-alist-to-tree :: (function (list string (or (list string) nil) (or (list string) nil) (or int nil)) mixed))
(defun elsa--fold-alist-to-tree (deps start &optional visited parents depth)
"Fold DEPS alist to tree from START.
Repeated dependencies are not expanded, that is, each feature
only lists its dependencies exactly once.
Circular dependencies are disambiguated to prevent infinite
loops."
(setq visited (or visited (list nil)))
(setq parents (or parents nil))
(setq depth (or depth 0))
(if (member start (car visited))
(if (member start parents)
(list (concat start "-CIRCULAR"))
(list start))
(push start (car visited))
(let ((dependencies (cdr (assoc start deps))))
(cons start
(--map (elsa--fold-alist-to-tree
deps it
visited
(cons start parents)
(1+ depth))
(reverse dependencies))))))
;; (elsa-get-dep-tree :: (function (string) mixed))
(defun elsa-get-dep-tree (file)
"Recursively crawl require forms starting from FILE.
Only top-level `require' forms are considered."
(elsa--fold-alist-to-tree
(plist-get (elsa--get-dep-alist file) :deps)
file))
(defun elsa--tree-to-deps (tree &optional deps)
(setq deps (or deps nil))
(when (and (listp tree) (< 1 (length tree)))
(progn
(let ((head-dependencies (-map #'car (cdr tree))))
(dolist (hd head-dependencies)
(push hd (alist-get (car tree) deps))))
(dolist (p (cdr tree))
(setq deps (elsa--tree-to-deps p deps)))))
deps)
(defun elsa-tree-to-deps (tree)
"Convert TREE of dependencies to adjacency list graph representationn."
(let ((deps (elsa--tree-to-deps tree)))
(mapcar
(lambda (dep)
(cons (car dep) (-uniq (cdr dep))))
deps)))
;; (elsa-get-dependencies :: (function (string) mixed))
(defun elsa-get-dependencies (file)
"Get all recursive dependencies of FILE.
The order is such that if we load the features in order we will
satisfy all inclusion relationships.
This function is deprecated."
(let ((folded-deps (elsa-get-dep-tree file)))
(elsa-topo-sort (elsa-tree-to-deps folded-deps) file)))
(defun elsa-get-dependencies-as-layers (file)
"Get dependencies of FILE as layers for parallel processing.
This is the main way to obtain dependencies of files. The older
`elsa-get-dependencies' is soft deprecated and will be removed in
the future when the parallel processing is deemed stable."
(let* ((dep-alist (elsa--get-dep-alist file))
(deps (plist-get dep-alist :deps))
(visited (plist-get dep-alist :visited)))
(list :layers (elsa--alist-to-layers deps) :visited visited)))
;; (elsa--find-dependency :: (function (string) (or nil string)))
(defun elsa--find-dependency (library-name)
"Find the implementation file of dependency LIBRARY-NAME.
LIBRARY-NAME should be the feature name (not symbol)."
(let* ((load-suffixes (list ".el" ".el.gz"))
(load-file-rep-suffixes (list "")))
(when-let ((lib-file (locate-library library-name)))
(file-truename lib-file))))
(defun elsa-topo-sort (deps start)
"Topologically sort DEPS starting at START node."
(let ((candidates (list start))
(result nil)
(deps (copy-sequence deps)))
(while candidates
(let* ((current (pop candidates))
(current-deps (cdr (assoc current deps))))
(setq deps (assoc-delete-all current deps))
(push current result)
(dolist (dependency current-deps)
(unless (--some (member dependency (cdr it)) deps)
(push dependency candidates)))))
result))
(provide 'elsa-dependencies)
;;; elsa-dependencies.el ends here