-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit.rkt
274 lines (226 loc) · 7.94 KB
/
git.rkt
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
(define (exec-system command)
(with-output-to-string (lambda () (system command))))
(define (git-status)
(exec-system "git status --short --untracked"))
(define status-hash (make-hash))
(define sorted-status (make-hash))
(define staged (make-hash))
(define unstaged (make-hash))
(define untracked (make-hash))
(hash-set! sorted-status "staged" staged)
(hash-set! sorted-status "unstaged" unstaged)
(hash-set! sorted-status "untracked" untracked)
(define (find-alist sym alist)
(filter (lambda (id) (member sym id)) alist))
(define line-seperator "\n# ")
(define color-defs
'(("esc" "\x1b[0")
("sep" ";")
("tail" "m")
("head" "37m")
("staged" "33m")
("deleted" "31m")
("changes" "\x1b[38;5;93m")
("unstaged" "32m")
("untracked" "36m")
("mod-staged" "35m")))
(define (get-color sym)
(last (last (find-alist sym color-defs))))
(define (color name msg)
(string-append (get-color "esc")(get-color "sep")(get-color name) msg
(get-color "esc")(get-color "tail")))
(define status-list
'(("??" \ untracked "untracked")
(" M" \ \ modified "unstaged")
("A " \ new\ file "staged")
("M " \ modified "staged")
(" D" \ \ \ deleted "unstaged")
("D " \ \ deleted "staged")
("R " \ \ renamed "staged")
("MM" mod-staged "mod-staged")))
(define header-msg
'(("staged" "➤ Changes to be committed")
("unstaged" "➤ Changes not staged for commit")
("untracked" "➤ Untracked files")))
(define (get-header-msg sym)
(let [[header (find-alist sym header-msg)]]
(last header)))
(define (mod-stat status)
(cond
[(string=? "mod-staged" status) " <= Re-stage or commit this file"]
[""]))
(define (colorify stat sym)
(cond
[(string=? " deleted" stat) (color "deleted" stat)]
[(color sym stat)]))
(define (current-branch)
(let ([branch (exec-system "git rev-parse --abbrev-ref HEAD")])
(cond
[(non-empty-string? branch) (first (string-split branch "\n"))]
[""])))
(define (staged-files?)
(non-empty-string? (exec-system "git diff --cached --name-status")))
(define (get-file-status-and-name number)
(hash-ref status-hash number))
(define (get-file-status number)
(car (get-file-status-and-name number)))
(define (get-file-name number)
(cdr (get-file-status-and-name number)))
(define (process-statuses statuses)
(let [[step 1]]
(for-each
(lambda [file-status]
(let ([statcol (substring file-status 0 2)]
[file (substring file-status 3 (string-length file-status))])
(hash-set! status-hash step (cons statcol file))
(set! step (+ step 1)))) statuses)))
(define (set-status-hash)
(process-statuses (string-split (git-status) "\n")))
(define (reset-status-hash)
(hash-clear! status-hash)
(set-status-hash))
(define (set-sorted-status key numb stat-pair)
(let ([stage-hash (hash-ref sorted-status key)])
(hash-set! stage-hash numb stat-pair)))
(define (status-seperator number msg file)
(let [[stat-pair (list file msg)]
[numb (string->number number)]]
(set-sorted-status (last msg) numb stat-pair)))
(define (segregate-status status-pair numb)
(let ([status (car status-pair)]
[file (cdr status-pair)]
[number (number->string numb)])
(let ([msg-list (find-alist status status-list)])
(cond
[(list? msg-list) (status-seperator number (last msg-list) file)]
[(list status number file)]))))
(define (sort-status-hash)
(hash-for-each
status-hash (lambda [numb pair] (segregate-status pair numb))))
(define (process-sort-table sort-list sym)
(let [[keys (sort (hash-keys sort-list) <)]]
(map
(lambda [key]
(let [[stat-pair (hash-ref sort-list key)]]
(let [[status (symbol->string (cadadr stat-pair))]
[number (number->string key)]
[file (color sym (car stat-pair))]
[lbrace (color "head" " [")]
[rbrace (color "head" "] ")]]
(let [[msg (mod-stat status)]
[stat (colorify status sym)]]
(display (color sym line-seperator))
(display (string-append stat ": " lbrace number rbrace file msg)))))) keys)))
(define (show-status-files sym)
(let [[sort-table (hash-ref sorted-status sym)]]
(cond
[(not (hash-empty? sort-table))
(begin
(display (color sym (last (get-header-msg sym))))
(display (color sym line-seperator))
(process-sort-table sort-table sym)
(displayln (color sym line-seperator)))])))
(define (branch-status count)
(display
(string-append
(color "head" "# ") "On branch: " (current-branch) " | " count)))
(define (print-statuses)
(let [[count (hash-count status-hash)]]
(branch-status (color "changes" (format "[+~S]" count)))
(display (string-append (color "head" line-seperator) "\n"))
(show-status-files "staged")
(show-status-files "unstaged")
(show-status-files "untracked")))
(define (show-status)
(cond
[(non-empty-string? (git-status))
(set-status-hash)
(sort-status-hash)
(print-statuses)]
[(branch-status "Working directory clean\n")]))
(define (add-file name)
(system (format "git add ~S" name)))
(define (range->number-list str)
(map (lambda (n) (string->number n))
(string-split (vector-ref str 0) #px"\\-")))
(define (range->list str)
(let [[file-numb (range->number-list str)]]
(map (lambda (n) (number->string n))
(range (first file-numb) (last file-numb)))))
(define (add-file-from-list file-numbers)
(for-each
(lambda [number]
(if (string? number)
(let [[file (get-file-name (string->number number))]]
(add-file file))
(add-file (get-file-name number)))) file-numbers))
(define (add-files status-range)
(set-status-hash)
(for [[n status-range]]
(if (string-contains? n "-")
(let [[file-list (range->list status-range)]]
(add-file-from-list file-list))
(add-file-from-list (vector->list status-range))))
(reset-status-hash)
(show-status))
(define (diff file-names)
(system (format "git diff ~S" file-names)))
(define (git-diff file-numbers)
(cond
[(eq? 0 (vector-length file-numbers)) (diff ".")]
[(set-status-hash)
(diff (string-join (map get-file-name (vector->list file-numbers)) " "))]))
(define (commit)
(display "Commit Message: ")
(let [[message (read-line)]]
(system (format "git commit -m ~S" message))))
(define (unstage file-names)
(let [[files (string-join file-names " ")]]
(cond
[(non-empty-string? files) (system (string-append "git reset " files))]
[(system "git reset .")])))
(define (git-reset file-numbers)
(set-status-hash)
(unstage (map get-file-name (vector->list file-numbers))))
(define (checkout file)
(system (format "git checkout ~S" file)))
(define (git-checkout numbers)
(set-status-hash)
(let [[file-list (map get-file-name (vector->list numbers))]]
(checkout (string-join file-list " "))))
(define (rm-files numbers)
(display "Are you sure you want to delete files [Y/n] ? : ")
(let [[reader (read-line)]]
(cond
((string=? reader "Y")
(set-status-hash)
(let [[file-list (map get-file-name numbers)]]
(map delete-file file-list))))))
(define (commit-all)
(set-status-hash)
(add-file-from-list (hash-keys status-hash))
(show-status)
(commit))
(define (get-untracked-file file-number)
(car (hash-ref untracked (string->number file-number))))
(define (ignored-files file-number)
(let [[file-name (get-untracked-file file-number)]]
file-name))
(define (append-file-to-ignore-list file-number)
(let [[file-name (ignored-files file-number)]]
(system (format "echo ~S >> .gitignore" file-name))
(display (format "~S added to .gitignore\n" file-name))))
(define (append-to status-range)
(let loop [(stat-range status-range)]
(cond (not (null? stat-range))
[(begin
(append-file-to-ignore-list (car stat-range))
(loop (cdr stat-range)))])))
(define (git-ignore status-range)
(set-status-hash)
(sort-status-hash)
(if (string-contains? "-" (car status-range))
;;check if any numbers in range exist in untracked list.
(let [[file-range (range->list status-range)]]
(append-to file-range))
(append-to status-range)))