-
Notifications
You must be signed in to change notification settings - Fork 0
/
chicken-uninstall.scm
201 lines (180 loc) · 7.51 KB
/
chicken-uninstall.scm
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
;;;; chicken-uninstall.scm
;
; Copyright (c) 2008-2021, The CHICKEN Team
; All rights reserved.
;
; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
; conditions are met:
;
; Redistributions of source code must retain the above copyright notice, this list of conditions and the following
; disclaimer.
; Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
; disclaimer in the documentation and/or other materials provided with the distribution.
; Neither the name of the author nor the names of its contributors may be used to endorse or promote
; products derived from this software without specific prior written permission.
;
; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
; AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
; CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
; SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
; OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
; POSSIBILITY OF SUCH DAMAGE.
(module main ()
(import (scheme)
(chicken base)
(chicken file)
(chicken fixnum)
(chicken foreign)
(chicken format)
(chicken io)
(chicken irregex)
(chicken port)
(chicken pathname)
(chicken platform)
(chicken process)
(chicken process-context)
(chicken string))
(include "mini-srfi-1.scm")
(include "egg-environment.scm")
(include "egg-information.scm")
(define host-extensions #t)
(define target-extensions #t)
(define force-uninstall #f)
(define sudo-uninstall #f)
(define sudo-program (or (get-environment-variable "SUDO")
"sudo"))
(define (repo-path)
(destination-repository
(if (and cross-chicken (not host-extensions))
'target
'host)))
(define (grep rx lst)
(filter (cut irregex-search rx <>) lst))
(define (gather-eggs patterns mtch)
(let* ((eggs (map pathname-file
(glob (make-pathname (repo-path) "*" +egg-info-extension+))))
(pats (if mtch
(concatenate
(map (lambda (pat)
(grep (irregex (glob->sre pat)) eggs))
patterns))
(filter
(lambda (egg)
(any (cut string=? <> egg) patterns))
eggs))))
(delete-duplicates pats string=?)))
(define (fini code)
(print "aborted.")
(exit code))
(define (ask eggs)
(print (string-intersperse
(append (list "About to delete the following extensions:\n\n")
(map (cut string-append " " <> "\n") eggs))
""))
(let loop ()
(display "Do you want to proceed? (yes/no) ")
(flush-output)
(let ((a (read-line)))
(when (eof-object? a)
(error "EOF - use `-force' to proceed anyway"))
(let ((r (trim a)))
(cond ((string=? r "yes"))
((string=? r "no") (fini 1))
(else (loop)))))))
(define (trim str)
(define (left lst)
(cond ((null? lst) '())
((char-whitespace? (car lst)) (left (cdr lst)))
(else (cons (car lst) (left (cdr lst))))))
(list->string (reverse (left (reverse (left (string->list str)))))))
(define (remove-extension egg)
(and-let* ((ifile (file-exists?
(make-pathname (repo-path) egg +egg-info-extension+)))
(files (get-egg-property* (load-egg-info ifile)
'installed-files)))
(for-each
(lambda (f)
(when (file-exists? f) (delete-installed-file f)))
files)
(delete-installed-file ifile)))
(define (delete-installed-file fname)
(cond ((not (file-exists? fname))
(warning "file does not exist" fname))
((and sudo-uninstall (eq? 'unix default-platform))
(let ((r (system (string-append sudo-program " rm -f -r -- " (qs fname)))))
(unless (zero? r)
(warning "deleting file failed" fname))))
((directory-exists? fname)
(delete-directory fname #t))
(else
(delete-file fname))))
(define (uninstall pats mtch)
(let ((eggs (gather-eggs pats mtch)))
(cond ((null? eggs)
(print "nothing to remove.") )
((or force-uninstall (ask eggs))
(for-each
(lambda (e)
(print "removing " e)
(remove-extension e))
eggs)))))
(define (usage code)
(print #<<EOF
usage: chicken-uninstall [OPTION ...] [NAME ...]
-h -help show this message and exit
-version show version and exit
-force don't ask, delete whatever matches
-match treat NAME as a glob pattern
-s -sudo use external command to elevate privileges for deleting files
-host when cross-compiling, uninstall host extensions only
-target when cross-compiling, uninstall target extensions only
EOF
)
(exit code))
(define short-options '(#\h #\s #\p))
(define (main args)
(let ((mtch #f))
(let loop ((args args) (pats '()))
(cond ((null? args)
(when (null? pats) (usage 1))
(validate-environment)
(uninstall (reverse pats) mtch))
(else
(let ((arg (car args)))
(cond ((or (string=? arg "-help")
(string=? arg "-h")
(string=? arg "--help"))
(usage 0))
((string=? arg "-version")
(print (chicken-version))
(exit 0))
((string=? arg "-target")
(set! host-extensions #f)
(loop (cdr args) pats))
((string=? arg "-host")
(set! target-extensions #f)
(loop (cdr args) pats))
((string=? arg "-force")
(set! force-uninstall #t)
(loop (cdr args) pats))
((string=? arg "-match")
(set! mtch #t)
(loop (cdr args) pats))
((or (string=? arg "-s") (string=? arg "-sudo"))
(set! sudo-uninstall #t)
(loop (cdr args) pats))
((and (positive? (string-length arg))
(char=? #\- (string-ref arg 0)))
(if (> (string-length arg) 2)
(let ((sos (string->list (substring arg 1))))
(if (every (cut memq <> short-options) sos)
(loop (append (map (cut string #\- <>) sos)
(cdr args)) pats)
(usage 1)))
(usage 1)))
(else (loop (cdr args) (cons arg pats))))))))))
(main (command-line-arguments))
)