Commit f29da12559f8381973b4f7442ed50978711188fe

Thomas de Grivel 2017-01-26T13:31:27

Fix repo install.

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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
diff --git a/repo.lisp b/repo.lisp
index 82170d4..a0c165f 100644
--- a/repo.lisp
+++ b/repo.lisp
@@ -8,13 +8,16 @@
 
 (defpackage :repo
   (:use :common-lisp)
-  (:export #:repo
-	   #:manifest
+  (:export #:boot
+	   #:clear-repos
+	   #:find-repo
 	   #:install
-	   #:update
+	   #:manifest
+	   #:*manifest*
+	   #:repo
 	   #:*repo-dir*
 	   #:*repos*
-	   #:clear-repos))
+	   #:update))
 
 (in-package :repo)
 
@@ -39,6 +42,19 @@
 	       (string= x string :start2 dl))
       dl)))
 
+(defun string-split (s x)
+  (let ((p (search s x)))
+    (if p
+	(cons (subseq x 0 p)
+	      (string-split s (subseq x (+ (length s) p))))
+	(cons x nil))))
+
+(defun first-line (x)
+  (let ((newline (position #\Newline x)))
+    (if newline
+	(subseq x 0 newline)
+	x)))
+
 (defun dirname (x)
   (let ((slash (position #\/ x :from-end t
 			 :end (or (string-ends-with "/" x) (length x)))))
@@ -55,17 +71,24 @@
 	       (string x)
 	       (null "")
 	       (cons (apply 'str x))
+	       (pathname (namestring x))
 	       (t (prin1-to-string x)))))
     (apply 'concatenate 'string (mapcar #'to-str parts))))
 
 (defun kw (x)
   (intern (string-upcase x) (find-package :keyword)))
 
+(defun translate-home (x)
+  (if (string-starts-with "~/" x)
+      (str (user-homedir-pathname) (subseq x 2))
+      x))
+
 ;;  shell commands
 
 ;;  TODO: run-program for all lisp implementations
 #+sbcl
 (defun run-program (cmd &rest args)
+  (format t "~&$ ~A~{ ~A~}~%" cmd args)
   (let ((out (make-string-output-stream))
 	(err (make-string-output-stream)))
     (let* ((process (sb-ext:run-program cmd args
@@ -77,19 +100,16 @@
       (close err)
       (let ((out (get-output-stream-string out))
 	    (err (get-output-stream-string err)))
-	(values exit-code out err)))))
+	(format t "~&~A~&" out)
+	(format t "~&~A~&" err)
+	(unless (= 0 exit-code)
+	  (with-simple-restart (continue "Ignore command error")
+	    (error "~&$ ~A~{ ~A~}~%~A" cmd args err)))
+	(values out err exit-code)))))
 
 #-windows
 (defun sh (&rest parts)
-  (let ((cmd (str parts)))
-    (format t "~&$ ~A~%" cmd)
-    (multiple-value-bind (exit-code out err) (run-program "/bin/sh" "-c" cmd)
-      (format t "~&~A~&" out)
-      (format t "~&~A~&" err)
-      (unless (= 0 exit-code)
-	(with-simple-restart (continue "Ignore shell error")
-	  (error "$ ~A~%~A" cmd err)))
-      (values out err exit-code))))
+  (run-program "/bin/sh" "-c" (str parts)))
 
 (defvar *sh-unquoted-chars*
   "+,-./0123456789:=ABCDEFGHIJKLMNOPQRSTUVWXYZ^_abcdefghijklmnopqrstuvwxyz")
@@ -145,6 +165,10 @@
    (name :initarg :name
 	 :reader repo-name
 	 :type string)
+   (head :initarg :head
+	 :initform nil
+	 :reader repo-head
+	 :type string)
    (uri :initarg :uri
 	:reader repo-uri
 	:type string)
@@ -158,10 +182,9 @@
 	     :reader repo-packages
 	     :type list)))
 
+(defgeneric repo-asd (repo &optional package))
 (defgeneric repo-dir/name (repo))
-
-(defmethod repo-dir/name ((repo repo))
-  (str (repo-dir repo) "/" (repo-name repo)))
+(defgeneric repo-package-p (x repo))
 
 (defmethod print-object ((obj repo) stream)
   (print-unreadable-object (obj stream :type t :identity t)
@@ -174,13 +197,42 @@
     (setf (slot-value repo 'local-dir)
 	  (format nil "~A/~A/~A" *repo-dir* dir name))))
 
+(defmethod repo-asd ((repo repo) &optional
+				   (package (first (repo-packages repo))))
+  (str (translate-home (repo-local-dir repo)) "/"
+       (string-downcase package) ".asd"))
+
+(defmethod repo-dir/name ((repo repo))
+  (str (repo-dir repo) "/" (repo-name repo)))
+
+(defmethod repo-package-p (x repo)
+  (find x (repo-packages repo) :test #'string-equal))
+
+;;  git command
+
+(defvar *git*
+  #+unix (or (probe-file "/usr/bin/git")
+	     (probe-file "/usr/local/bin/git")
+	     (first-line (sh "which git"))))
+
+(defun git (&rest args)
+  (apply 'run-program *git* args))
+
 ;;  git repository class
 
 (defclass git-repo (repo) ())
 
+(defgeneric git-checkout (repo))
 (defgeneric git-clone (repo))
+(defgeneric git-fetch (repo))
 (defgeneric git-pull (repo))
 
+(defmethod git-checkout ((repo git-repo))
+  (let ((local (repo-local-dir repo))
+	(head (repo-head repo)))
+    (git "-C" (translate-home local) "checkout" (str head))
+    nil))
+
 (defmethod git-clone ((repo git-repo))
   (let ((local (repo-local-dir repo))
 	(url (repo-url repo)))
@@ -188,25 +240,44 @@
       (error "git clone: not overwriting existing local directory~&~S" local))
     (let ((parent (dirname local)))
       (ensure-directories-exist (str parent "/") :verbose t)
-      (sh "cd " (sh-quote-dir parent) " && git clone " (sh-quote url))
+      (git "-C" (translate-home parent) "clone" url)
       nil)))
 
-(defmethod install ((repo git-repo))
+(defmethod git-fetch ((repo git-repo))
   (let ((local (repo-local-dir repo)))
-    (if (probe-dir local)
-	(git-pull repo)
-	(git-clone repo))))
+    (git "-C" (translate-home local) "fetch")
+    nil))
 
 (defmethod git-pull ((repo git-repo))
   (let ((local (repo-local-dir repo)))
-    (unless (probe-dir local)
-      (error "git pull: ~S: no such file or directory" local))
-    (sh "cd " (sh-quote-dir local) " && git pull")
+    (git "-C" (translate-home local) "pull")
     nil))
 
+(defmethod install ((repo git-repo))
+  (let ((local (repo-local-dir repo)))
+    (unless (probe-dir local)
+      (git-clone repo))
+    (asdf:load-asd (repo-asd repo))))
+
 (defmethod update ((repo git-repo))
   (when (probe-dir (repo-local-dir repo))
-    (git-pull repo)))
+    (git-fetch repo)
+    (git-checkout repo)))
+
+(defun git-repo-uri-handler (uri)
+  (let ((uri (first (string-split "#" uri))))
+    (let ((start (or (string-starts-with "git://" uri)
+		     (string-starts-with "http://" uri)
+		     (string-starts-with "https://" uri))))
+      (when start
+	(let* ((dot (search ".git" uri :from-end t))
+	       (slash (position #\/ uri :end dot :from-end t))
+	       (slash2 (position #\/ uri :end slash :from-end t))
+	       (dir (subseq uri (1+ slash2) slash))
+	       (name (subseq uri (1+ slash) dot)))
+	  `(git-repo :dir ,dir :name ,name
+		     :uri ,uri
+		     :url ,uri))))))
 
 ;;  github repository class
 
@@ -217,33 +288,37 @@
     (with-slots (dir name local-dir packages) obj
       (format stream "~A/~A ~S ~S" dir name local-dir packages))))
 
-(defun github-uri (user name)
-  (format nil "github:~A/~A" user name))
+(defun github-uri (user name &optional head package)
+  (str "github:" user "/" name
+       (when head "?") head
+       (when package "#") package))
 
 (defun github-url (user name)
-  (format nil "http://github.com/~A/~A.git" user name))
+  (str "http://github.com/" user "/" name ".git"))
 
 (defun github-repo-uri-handler (uri)
-  (let ((start (or (string-starts-with "github:" uri)
-		   (string-starts-with "git://github.com/" uri)
-		   (string-starts-with "http://github.com/" uri)
-		   (string-starts-with "https://github.com/" uri))))
-    (when start
-      (let* ((slash (or (position #\/ uri :start start)
-			(error "Invalid repo uri ~S" uri)))
-	     (dot (or (string-ends-with ".git/" uri)
-		      (string-ends-with ".git" uri)
-		      (string-ends-with "/" uri)))
-	     (user (subseq uri start slash))
-	     (name (subseq uri (1+ slash) dot)))
-	`(github-repo :dir ,user :name ,name
-		      :uri ,(github-uri user name)
-		      :url ,(github-url user name))))))
+  (let ((uri (first (string-split "#" uri))))
+    (let ((start (or (string-starts-with "github:" uri)
+		     (string-starts-with "git://github.com/" uri)
+		     (string-starts-with "http://github.com/" uri)
+		     (string-starts-with "https://github.com/" uri))))
+      (when start
+	(let* ((slash (or (position #\/ uri :start start)
+			  (error "Invalid repo uri ~S" uri)))
+	       (dot (or (string-ends-with ".git/" uri)
+			(string-ends-with ".git" uri)
+			(string-ends-with "/" uri)))
+	       (user (subseq uri start slash))
+	       (name (subseq uri (1+ slash) dot)))
+	  `(github-repo :dir ,user :name ,name
+			:uri ,(github-uri user name)
+			:url ,(github-url user name)))))))
 
 ;;  repo uri handler
 
-(defvar *repo-uri-handlers*
-  '(github-repo-uri-handler))
+(defparameter *repo-uri-handlers*
+  '(github-repo-uri-handler
+    git-repo-uri-handler))
 
 (defvar *repos* ())
 
@@ -251,29 +326,40 @@
   (setf *repos* nil))
 
 (defun find-repo (uri)
-  (or (find uri *repos* :key 'repo-uri :test 'string=)
-      (if (position #\/ uri)
-	  (find uri *repos* :key 'repo-dir/name :test 'string=)
-	  (find uri *repos* :key 'repo-name :test 'string=))))
+  (let ((uri (string uri)))
+    (or (find uri *repos* :key 'repo-uri :test 'string=)
+	(if (position #\/ uri)
+	    (find uri *repos* :key 'repo-dir/name :test 'string-equal)
+	    (find uri *repos* :key 'repo-name :test 'string-equal)))))
+
+(defun find-repo-by-package (x)
+  (find x *repos* :test #'repo-package-p))
+
+(defun uri-fragment (x)
+  (second (string-split "#" x)))
 
-(defun repo (uri &rest args &key packages &allow-other-keys)
+(defun repo (uri)
   "Factory function for repository classes using *REPO-URI-HANDLERS*."
-  (labels ((do-handlers (handlers)
-	     (when handlers
-	       (or (funcall (first handlers) uri)
-		   (do-handlers (rest handlers))))))
-    (let ((spec (do-handlers *repo-uri-handlers*)))
-      (when spec
-	(let* ((class (first spec))
-	       (initargs (rest spec))
-	       (uri (getf initargs :uri))
-	       (kw (kw (getf initargs :name)))
-	       (initargs (plist-merge initargs args
-				      `(:packages ,(or packages `(,kw))))))
-	  (or (find-repo uri)
-	      (let ((repo (apply 'make-instance class initargs)))
-		(push repo *repos*)
-		repo)))))))
+  (destructuring-bind (uri &rest packages) (string-split " " uri)
+    (or (find-repo uri)
+	(when (stringp uri)
+	  (labels ((do-handlers (handlers)
+		     (when handlers
+		       (or (funcall (first handlers) uri)
+			   (do-handlers (rest handlers))))))
+	    (let ((spec (do-handlers *repo-uri-handlers*)))
+	      (when spec
+		(let* ((class (first spec))
+		       (initargs (rest spec))
+		       (uri (getf initargs :uri))
+		       (kw (kw (getf initargs :name)))
+		       (initargs (plist-merge initargs
+					      `(:packages ,(or packages
+							       `(,kw))))))
+		  (or (find-repo uri)
+		      (let ((repo (apply 'make-instance class initargs)))
+			(push repo *repos*)
+			repo))))))))))
 
 (defun repo-or-die (x)
   (or (repo x)
@@ -307,6 +393,8 @@
 
 ;;  manifest
 
+(defvar *manifest*)
+
 (defclass manifest ()
   ((write-date :initarg :write-date
 	       :accessor manifest-write-date
@@ -322,6 +410,12 @@
 (defgeneric reload-manifest (manifest))
 (defgeneric maybe-reload-manifest (manifest))
 
+(defmethod print-object ((obj manifest) stream)
+  (print-unreadable-object (obj stream :type t :identity t)
+    (format stream "~S ~A repos"
+	    (manifest-file obj)
+	    (length (manifest-repos obj)))))
+
 (defmethod manifest-file ((manifest manifest))
   (str (manifest-dir manifest) "/repo.manifest"))
 
@@ -389,11 +483,52 @@
 ;;  install and update commands
 
 (defmethod install ((x string))
+  (when *manifest*
+    (maybe-reload-manifest *manifest*))
   (if (manifest-file-p x)
       (install (manifest-or-die x))
       (install (repo-or-die x))))
 
+(defmethod install ((x null))
+  nil)
+
+(defmethod install ((x symbol))
+  (when *manifest*
+    (maybe-reload-manifest *manifest*))
+  (install (repo-or-die x)))
+
 (defmethod update ((x string))
+  (when *manifest*
+    (maybe-reload-manifest *manifest*))
   (if (manifest-file-p x)
       (update (manifest-or-die x))
       (update (repo-or-die x))))
+
+(defmethod update ((x null))
+  nil)
+
+(defmethod update ((x symbol))
+  (when *manifest*
+    (maybe-reload-manifest *manifest*))
+  (update (repo-or-die x)))
+
+;;  system-definition
+
+(defun sysdef (x)
+  (when *manifest*
+    (maybe-reload-manifest *manifest*))
+  (let ((repo (or (find-repo-by-package x)
+		  (repo x))))
+    (when repo
+      (install repo)
+      (pathname (repo-asd repo x)))))
+
+;;  setup
+
+(defun boot ()
+  (let ((manifest-file (str *repo-dir* "/repo.manifest")))
+    (when (probe-file manifest-file)
+      (setq *manifest* (manifest manifest-file)
+	    *repos* (manifest-repos *manifest*))
+      (when (find-package :asdf)
+	(pushnew 'sysdef asdf:*system-definition-search-functions*)))))