blob: 8c6e2df701e32fa6e90cabca728413370a38aed0 (
plain) (
blame)
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
|
;; -*- lexical-binding: t; -*-
(require 'buildbot-utils)
(defvar buildbot-view-header-regex "^\\[.*\\]$")
(defvar buildbot-view-branch-change-limit 10)
;; 'revision, 'build, 'step, or 'log
(defvar-local buildbot-view-type nil)
(defvar-local buildbot-view-data nil)
(define-derived-mode buildbot-view-mode special-mode "Buildbot view"
"Buildbot view, a base mode")
(defun buildbot-view-next-header (n)
(interactive "p")
(dotimes (_ n)
(end-of-line 1)
(re-search-forward buildbot-view-header-regex)
(beginning-of-line 1)))
(define-key buildbot-view-mode-map "n" 'buildbot-view-next-header)
(defun buildbot-view-previous-header (n)
(interactive "p")
(beginning-of-line 1)
(unless (looking-at buildbot-view-header-regex)
(re-search-backward buildbot-view-header-regex))
(dotimes (_ n)
(re-search-backward buildbot-view-header-regex)))
(define-key buildbot-view-mode-map "p" 'buildbot-view-previous-header)
(defun buildbot-view-format-revision-info (revision-info)
(propertize
(format
"[Commit %s]\nAuthor: %s\nDate: %s\n\n%s"
(alist-get 'revision revision-info)
(alist-get 'author revision-info)
(alist-get 'created-at revision-info)
(alist-get 'comments revision-info))
'revision-id (alist-get 'revision revision-info) 'type 'revision))
(defun buildbot-view-format-build-stats (stats)
(format "Build stats: Success - %d | Failure - %d | Pending - %d"
(alist-get 'success stats)
(alist-get 'failure stats)
(alist-get 'pending stats)))
(defun buildbot-view-format-state-string (state-string)
(propertize state-string
'face (buildbot-get-face-for-state-string (state-string))))
(defun buildbot-view-format-build (build)
(propertize
(format "\n[%s | %s]\n%s"
(buildbot-get-builder-name-by-id (alist-get 'builderid build))
(propertize (alist-get 'state_string build)
'face (buildbot-status-face
(buildbot-build-status build)))
(string-join
(mapcar (lambda (test) (alist-get 'test_name test))
(alist-get 'failed_tests build))
"\n"))
'build build 'type 'build))
(defun buildbot-view-format-change-info (change-info &optional no-branch)
(concat
(unless no-branch
(concat (buildbot-view-format-branch (alist-get 'branch change-info))
"\n"))
(buildbot-view-format-build-stats (alist-get 'build-stats change-info))
"\n"
(string-join
(mapcar
'buildbot-view-format-build
(alist-get 'builds change-info))
"\n")))
(defun buildbot-view-format-step (step)
(propertize
(format "\n[%d. %s | %s]\n"
(alist-get 'number step)
(alist-get 'name step)
(propertize
(alist-get 'state_string step)
'face (buildbot-status-face
(buildbot-step-guess-status step))))
'step step 'type 'step))
(defun buildbot-view-format-log (log)
(propertize
(format "\n[%s]\n"
(alist-get 'name log))
'log log 'type 'log))
(defun buildbot-revision-format (revision-and-changes-info &optional no-branch)
(concat
(buildbot-view-format-revision-info
(alist-get 'revision-info revision-and-changes-info))
"\n\n"
(string-join
(mapcar (lambda (change-info)
(buildbot-view-format-change-info change-info no-branch))
(alist-get 'changes-info revision-and-changes-info))
"\n")))
;; (defun buildbot-revision-get-info (change)
;; (list (cons 'revision (alist-get 'revision change))
;; (cons 'author (alist-get 'author change))
;; (cons 'created-at (buildbot-format-epoch-time
;; (alist-get 'when_timestamp change)))
;; (cons 'comments (alist-get 'comments change))
;; (cons 'build-stats (buildbot-revision-get-build-stats
;; (alist-get 'builds change)))))
(defun buildbot-view-format-branch (branch)
(propertize
(format "[Branch %s]" branch)
'branch branch
'type 'branch))
(defun buildbot-branch-format (branch changes)
(concat
(buildbot-view-format-branch branch)
"\n\n"
(string-join
(mapcar (lambda (change)
(buildbot-revision-format
(buildbot-get-revision-and-changes-info (list change))
t))
changes)
"\n\n")))
(defun buildbot-build-format (revision-info build steps)
(concat
(buildbot-view-format-revision-info revision-info)
"\n"
(buildbot-view-format-build build)
"\n"
(string-join
(mapcar 'buildbot-view-format-step steps)
"\n")))
(defun buildbot-step-format (revision-info build step logs)
(concat
(buildbot-view-format-revision-info revision-info)
"\n"
(buildbot-view-format-build build)
"\n"
(buildbot-view-format-step step)
"\n"
(string-join
(mapcar 'buildbot-view-format-log logs)
"\n")))
(defun buildbot-log-format (revision-info build step log log-text)
(concat
(buildbot-view-format-revision-info revision-info)
"\n"
(buildbot-view-format-build build)
"\n"
(buildbot-view-format-step step)
"\n"
(buildbot-view-format-log log)
"\n"
log-text))
(defun buildbot-view-buffer-name (type data)
(pcase type
('branch (format "*buildbot branch %s*" (alist-get 'branch data)))
('revision (format "*buildbot revision %s*"
(alist-get 'revision-id data)))
('build (format "*buildbot build %d*"
(alist-get 'id (alist-get 'build data))))
('step (format "*buildbot step %d*"
(alist-get 'stepid (alist-get 'step data))))
('log (format "*buildbot log %d*"
(alist-get 'logid (alist-get 'log data))))))
(defun buildbot-view-open (type data &optional force)
(let ((buffer-name (buildbot-view-buffer-name type data)))
(when (or force (not (get-buffer buffer-name)))
(with-current-buffer (get-buffer-create buffer-name)
(buildbot-view-mode)
(setq buildbot-view-type type
buildbot-view-data data)
(buildbot-view-update)))
(switch-to-buffer buffer-name)))
(defun buildbot-view-reload ()
(interactive)
(buildbot-view-update))
(define-key buildbot-view-mode-map "g" 'buildbot-view-reload)
(defun buildbot-view-revision-open (revision-id)
(interactive "sRevision (commit hash): ")
(buildbot-view-open 'revision `((revision-id . ,revision-id))))
(defun buildbot-view-branch-open (branch)
(interactive "sBranch name: ")
(buildbot-view-open 'branch `((branch . ,branch))))
(defun buildbot-view-update ()
(unless (derived-mode-p 'buildbot-view-mode)
(error "Not in buildbot view mode"))
(let ((inhibit-read-only t))
(erase-buffer)
(pcase buildbot-view-type
('branch
(insert (buildbot-branch-format
(alist-get 'branch buildbot-view-data)
(buildbot-get-changes-by-branch
(alist-get 'branch buildbot-view-data)
buildbot-view-branch-change-limit))))
('revision
(let ((revision-and-changes-info
(buildbot-get-revision-and-changes-info
(buildbot-get-changes-by-revision
(alist-get 'revision-id buildbot-view-data)))))
(setf (alist-get 'revision-info buildbot-view-data)
(alist-get 'revision-info revision-and-changes-info))
(insert (buildbot-revision-format revision-and-changes-info))))
('build
(insert (buildbot-build-format
(alist-get 'revision-info buildbot-view-data)
(alist-get 'build buildbot-view-data)
(buildbot-get-steps-by-buildid
(alist-get 'id
(alist-get 'build buildbot-view-data))))))
('step
(insert (buildbot-step-format
(alist-get 'revision-info buildbot-view-data)
(alist-get 'build buildbot-view-data)
(alist-get 'step buildbot-view-data)
(buildbot-get-logs-by-stepid
(alist-get 'stepid
(alist-get 'step buildbot-view-data))))))
('log
(insert (buildbot-log-format
(alist-get 'revision-info buildbot-view-data)
(alist-get 'build buildbot-view-data)
(alist-get 'step buildbot-view-data)
(alist-get 'log buildbot-view-data)
(buildbot-api-log-raw
(alist-get 'logid
(alist-get 'log buildbot-view-data)))))))
(goto-char (point-min))))
(defun buildbot-view-open-thing-at-point (force)
(interactive "P")
(let ((data (copy-tree buildbot-view-data)))
(pcase (get-text-property (point) 'type)
('branch
(setf (alist-get 'branch data)
(get-text-property (point) 'branch))
(buildbot-view-open 'branch data force))
('revision
(setf (alist-get 'revision-id data)
(get-text-property (point) 'revision-id))
(buildbot-view-open 'revision data force))
('build
(setf (alist-get 'build data)
(get-text-property (point) 'build))
(buildbot-view-open 'build data force))
('step
(setf (alist-get 'step data)
(get-text-property (point) 'step))
(buildbot-view-open 'step data force))
('log
(setf (alist-get 'log data)
(get-text-property (point) 'log))
(buildbot-view-open 'log data force)))))
(define-key buildbot-view-mode-map (kbd "<return>")
'buildbot-view-open-thing-at-point)
(provide 'buildbot-view)
|