forked from mario-goulart/chicken-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchicken-uninstall.scm
163 lines (143 loc) · 5.38 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
;;;; chicken-uninstall.scm
;
; Copyright (c) 2008-2014, 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.
(require-library
setup-api
srfi-1 posix data-structures utils ports irregex srfi-13 files)
(module main ()
(import scheme chicken foreign)
(import setup-api)
(import srfi-1 posix data-structures utils ports irregex srfi-13 files)
(define-foreign-variable C_TARGET_LIB_HOME c-string)
(define-foreign-variable C_BINARY_VERSION int)
(define *cross-chicken* (feature? #:cross-chicken))
(define *host-extensions* *cross-chicken*)
(define *target-extensions* *cross-chicken*)
(define (repo-path)
(if (and *cross-chicken* (not *host-extensions*))
(make-pathname C_TARGET_LIB_HOME (sprintf "chicken/~a" C_BINARY_VERSION))
(repository-path)))
(define *force* #f)
(define (grep rx lst)
(filter (cut irregex-search rx <>) lst))
(define (gather-eggs patterns)
(let ((eggs (map pathname-file
(glob (make-pathname (repo-path) "*" "setup-info")))))
(delete-duplicates
(concatenate
(map (cut grep <> eggs) patterns))
string=?)))
(define (fini code)
(print "aborted.")
(exit code))
(define (ask eggs)
(handle-exceptions ex
(if (eq? ex 'aborted)
(fini 1)
(signal ex))
(yes-or-no?
(string-concatenate
(append
'("About to delete the following extensions:\n\n")
(map (cut string-append " " <> "\n") eggs)
'("\nDo you want to proceed?")))
default: "no"
abort: (abort-setup))))
(define (uninstall pats)
(let ((eggs (gather-eggs pats)))
(cond ((null? eggs)
(print "nothing to remove.") )
((or *force* (ask eggs))
(for-each
(lambda (e)
(print "removing " e)
(cond ((and *host-extensions* *target-extensions*)
(remove-extension e)
(fluid-let ((*host-extensions* #f))
(remove-extension e (repo-path)) ))
(else (remove-extension e (repo-path)))))
eggs)))))
(define (usage code)
(print #<<EOF
usage: chicken-uninstall [OPTION | PATTERN] ...
-h -help show this message and exit
-version show version and exit
-force don't ask, delete whatever matches
-exact treat PATTERN as exact match (not a pattern)
-s -sudo use sudo(1) for deleting files
-host when cross-compiling, uninstall host extensions only
-target when cross-compiling, uninstall target extensions only
EOF
);| (sic)
(exit code))
(define *short-options* '(#\h #\s))
(define (main args)
(let ((exact #f))
(let loop ((args args) (pats '()))
(cond ((null? args)
(when (null? pats) (usage 1))
(uninstall
(reverse
(map
(lambda (p)
(if exact
(irregex (string-append "^" (irregex-quote p) "$"))
(##sys#glob->regexp p)))
pats))))
(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* #t)
(loop (cdr args) pats))
((string=? arg "-exact")
(set! exact #t)
(loop (cdr args) pats))
((or (string=? arg "-s") (string=? arg "-sudo"))
(sudo-install #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))
)