This repository has been archived by the owner on Jul 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
parallelPhase.groovy
391 lines (363 loc) · 11.9 KB
/
parallelPhase.groovy
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
package tci.pipeline
import groovy.time.TimeCategory;
class parallelPhase implements Serializable {
class subJob implements Serializable {
String blockName
def parameters
boolean propagate
boolean wait
int retry
String status
String url
def duration = null
String title
String alias
subJob(String blockName, def parameters, boolean propagate, boolean wait, int retry, String alias ) {
this.blockName = blockName
this.parameters = parameters
this.propagate = propagate
this.wait = wait
this.retry = retry
this.alias = alias
}
}
class stepsSequence implements Serializable {
String blockName
def sequence
boolean propagate
boolean wait
int retry
String status
String url
def duration = null
String title
String alias
stepsSequence(String blockName, def sequence, boolean propagate, int retry, String alias ) {
this.blockName = blockName
this.sequence = sequence
this.propagate = propagate
this.retry = retry
this.alias = alias
}
}
def script
def name = "TCI parallel"
def jobs = []
def stepsSequences = []
boolean failFast = false
boolean failOnError = true
boolean showStages = true
boolean showPhaseStage = false
String overAllStatus = "SUCCESS"
String description = ""
parallelPhase(script, String name = "TCI parallel", boolean failFast = false, boolean failOnError = true, boolean showStages = true, boolean showPhaseStage = false) {
script.echo "Deprecative constructor"
this.script = script
this.name = name
this.failFast = failFast
this.failOnError = failOnError
this.showStages = showStages
this.showPhaseStage = showPhaseStage
}
parallelPhase(script, Map config) {
this.script = script
if (config == null) {
config = [:]
}
if (config.name != null) {
this.name = config.name
}
if (config.failFast != null) {
this.failFast = config.failFast
}
if (config.failOnError != null) {
this.failOnError = config.failOnError
}
if (config.showStages != null) {
this.showStages = config.showStages
}
if (config.showPhaseStage != null) {
this.showPhaseStage = config.showPhaseStage
}
}
void addSubJob(Map config) {
if (config == null) {
config = [:]
}
if (config.job == null) {
script.tciLogger.info ("[ERROR] you must provive a job name to run!!!")
throw Exception
}
if (config.propagate == null) {
config.propagate = true
}
if (config.parameters == null) {
config.parameters = null
}
if (config.wait == null) {
config.wait = true
}
if (config.retry == null) {
config.retry = 1
}
if (config.alias == null) {
config.alias = ""
}
def job = new subJob(config.job, config.parameters, config.propagate, config.wait, config.retry, config.alias)
jobs << job
}
void addStepsSequence(Map config) {
if (config == null) {
config = [:]
}
if (config.sequence == null) {
script.tciLogger.info ("[ERROR] you must provive a block of steps sequence to run!!!")
throw Exception
}
if (config.name == null) {
config.name = "Steps sequence"
}
if (config.propagate == null) {
config.propagate = true
}
if (config.retry == null) {
config.retry = 1
}
if (config.alias == null) {
config.alias = ""
}
def stepsSequence = new stepsSequence(config.name, config.sequence, config.propagate, config.retry, config.alias)
stepsSequences << stepsSequence
}
@NonCPS
def getBuildResult(def build) {
try {
return build.getResult()
}
catch (error) {
script.echo "[ERROR] [getBuildResult] "+error.message
return "N/A"
}
}
@NonCPS
def getBuildUrl(def build) {
try {
return build.getAbsoluteUrl()
}
catch (error) {
script.echo "[ERROR] [getBuildUrl] "+error.message
return "N/A"
}
}
def setOverallStatusByItem(def item) {
if(item.propagate == true) {
if(item.status == "FAILURE") {
overAllStatus="FAILURE"
}
else {
if(item.status == "UNSTABLE") {
if(item.overAllStatus != "FAILURE") {
overAllStatus="UNSTABLE"
}
}
else {
if(item.status == "ABORTED") {
if(item.overAllStatus != "FAILURE" && item.overAllStatus != "UNSTABLE") {
overAllStatus="ABORTED"
}
}
}
}
}
}
def runJob(def item) {
def timeStart = new Date()
if(item.retry < 1) {
item.retry = 1
}
def count=0
try {
while (count < item.retry) {
try {
count++
def currentRun = script.build (job: item.blockName, parameters: item.parameters, propagate: false , wait: item.wait)
if(currentRun!=null) {
item.status = getBuildResult(currentRun)
item.url = getBuildUrl(currentRun)
}
if(item.status=="SUCCESS" || item.status=="ABORTED") {
count=item.retry
}
else {
}
}
catch (error) {
script.echo error.message
item.status = "FAILURE"
}
}
setOverallStatusByItem(item)
}
catch (error) {
}
def timeStop = new Date()
def duration = TimeCategory.minus(timeStop, timeStart)
item.duration = duration.toString()
def currentStatusColor=(item.status=="SUCCESS")?'\033[1;94m':'\033[1;91m'
script.echo(" '\033[1;94m${item.title}\033[0m' (${item.url}) ended with ${currentStatusColor}${item.status}\033[0m status. Duration: \033[1;94m${duration}\033[0m")
if(item.status!="SUCCESS") {
throw new Exception()
}
}
def runStepsSequence(def item) {
def timeStart = new Date()
if(item.retry < 1) {
item.retry = 1
}
def count=0
while (count < item.retry) {
try {
count++
item.sequence()
count=item.retry
}
catch (error) {
script.echo error.message
item.status = "FAILURE"
}
}
setOverallStatusByItem(item)
def timeStop = new Date()
def duration = TimeCategory.minus(timeStop, timeStart)
item.duration = duration.toString()
script.tciLogger.info(" '\033[1;94m${item.title}\033[0m' ended with \033[1;94m${item.status}\033[0m status. Duration: \033[1;94m${duration}\033[0m")
}
void run() {
if(showPhaseStage) {
script.stage(name) {
runImpl()
}
}
else {
runImpl()
}
}
void runImpl() {
def parallelBlocks = [:]
def counter=1
jobs.each { item ->
def index = counter
def title = "[Phase-job #"+counter+"] "+item.blockName
if(item.alias != null && item.alias != "") {
title = "[Phase-job #"+counter+"] "+item.alias
}
item.title = title
item.status = "SUCCESS"
item.url = ""
parallelBlocks[title] = {
if(showStages) {
script.stage(title) {
runJob(item)
}
}
else {
runJob(item)
}
}
counter++
}
counter=1
stepsSequences.each { item ->
def index = counter
def title = "[Phase-sequence #"+counter+"] "+item.blockName
if(item.alias != null && item.alias != "") {
title = "[Phase-sequence #"+counter+"] "+item.alias
}
item.title = title
item.status = "SUCCESS"
parallelBlocks[title] = {
if(showStages) {
script.stage(title) {
runStepsSequence(item)
}
}
else {
runStepsSequence(item)
}
}
counter++
}
parallelBlocks.failFast = failFast
try {
script.parallel parallelBlocks
}
catch (error) {
}
description = "\033[1;94m"+name+'\033[0m\n\n\033[1;92mRun in parallel:\033[0m\n'
def currentFailuesDescription = "\033[1;91mFailed:\033[0m\n'"
boolean failedSteps = false
jobs.each { item ->
def currentDescription = ""
def currentStatusColor=(item.status=="SUCCESS")?'\033[1m':'\033[1;91m'
def currentStatus = currentStatusColor+item.status+'\033[0m'
if(item.propagate == false) {
currentStatus += " (propagate:false)"
}
currentDescription += '\t'+item.title+' - '+currentStatus+' - '+item.url
if(item.duration!=null) {
currentDescription += ' - '+item.duration
}
currentDescription += '\n'
description+=currentDescription
if(item.status!="SUCCESS") {
failedSteps = true
currentFailuesDescription+=currentDescription
}
}
stepsSequences.each { item ->
def currentDescription = ""
def currentStatusColor=(item.status=="SUCCESS")?'\033[1m':'\033[1;91m'
def currentStatus = currentStatusColor+item.status+'\033[0m'
if(item.propagate == false) {
currentStatus += " (propagate:false)"
}
currentDescription += '\t'+item.title+' - '+currentStatus
if(item.duration!=null) {
currentDescription += ' - '+item.duration
}
currentDescription += '\n'
description+=currentDescription
if(item.status!="SUCCESS") {
failedSteps = true
currentFailuesDescription+=currentDescription
}
}
String statusColor="\033[1;92m"
if(overAllStatus=="FAILURE") {
statusColor="\033[1;91m"
}
else {
if(overAllStatus=="UNSTABLE") {
statusColor="\033[0;103m"
}
else {
if(overAllStatus=="ABORTED") {
statusColor="\033[1;90m"
}
else {
}
}
}
description += "\n'\033[1;94m"+name+"\033[0m' parallel phase status: "+statusColor+overAllStatus+"\033[0m\n"
if(failedSteps) {
description += "\n"+currentFailuesDescription
}
script.echo description
if(failOnError) {
script.currentBuild.result = overAllStatus
if(overAllStatus=="FAILURE"|| overAllStatus=="ABORTED") {
script.error ("\n'\033[1;94m"+name+"\033[0m' parallel phase status: "+statusColor+overAllStatus+"\033[0m\n")
}
}
}
}