-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTaskLogger.js
209 lines (180 loc) · 6.37 KB
/
TaskLogger.js
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
const debug = require('debug')('codefresh:taskLogger');
const _ = require('lodash');
const CFError = require('cf-errors');
const EventEmitter = require('events');
const { STATUS, VISIBILITY } = require('./enums');
/**
* TaskLogger - logging for build/launch/promote jobs
* @param jobid - progress job id
* @param firstStepCreationTime - optional. if provided the first step creationTime will be this value
* @param baseFirebaseUrl - baseFirebaseUrl (pre-quisite authentication to firebase should have been made)
* @param FirebaseLib - a reference to Firebase lib because we must use the same singelton for pre-quisite authentication
* @returns {{create: create, finish: finish}}
*/
class TaskLogger extends EventEmitter {
constructor({ accountId, jobId }, opts) {
super();
this.opts = opts;
if (!accountId && !opts.skipAccountValidation) { // skipAccountValidation is only here to allow downloading a launched-composition single step
throw new CFError('failed to create taskLogger because accountId must be provided');
}
this.accountId = accountId;
if (!jobId) {
throw new CFError('failed to create taskLogger because jobId must be provided');
}
this.jobId = jobId;
this.fatal = false;
this.finished = false;
this.steps = {};
this.rateLimitOptions = opts.rateLimitOptions;
this.origin = opts.origin || 'unknown';
}
create(name, resetStatus, runCreationLogic) {
let step = this.steps[name];
if (!step) {
step = this.createStepLogger(name, this.opts);
step.on('error', (err) => {
this.emit('error', err);
});
this.steps[name] = step;
step.on('finished', () => {
delete this.steps[name];
});
step.onLastUpdateChanged((value) => {
this._reportLastUpdate(value);
});
if (runCreationLogic) {
step.reportName();
step.clearLogs();
step.setStatus(STATUS.PENDING);
this.newStepAdded(step);
}
debug(`Created new step logger for: ${name}`);
} else if (resetStatus) {
debug(`Reusing step logger and resetting for: ${name}`);
step.setStatus(STATUS.PENDING);
step.setFinishTimestamp('');
step.setCreationTimestamp('');
} else {
debug(`Reusing step logger state for: ${name}`);
}
return step;
}
createStepLogger(name, opts) {
const StepClass = require(`./${this.type}/StepLogger`); // eslint-disable-line
const step = new StepClass({
accountId: this.accountId,
jobId: this.jobId,
name,
origin: this.origin
}, {
...opts
}, this);
return step;
}
finish() { // jshint ignore:line
if (this.fatal) {
return;
}
if (_.size(this.steps)) {
_.forEach(this.steps, (step) => {
step.finish(new Error('Unknown error occurred'));
});
}
this.finished = true;
}
fatalError(err) {
if (!err) {
throw new CFError('fatalError was called without an error. not valid.');
}
if (this.fatal) {
return;
}
if (_.size(this.steps)) {
_.forEach(this.steps, (step) => {
step.finish(new Error('Unknown error occurred'));
});
} else {
const errorStep = this.create('Something went wrong');
errorStep.finish(err);
}
_.forEach(this.steps, (step) => {
step.fatal = true;
});
this.fatal = true;
}
updateMemoryUsage(time, memoryUsage) {
this._reportMemoryUsage(time, memoryUsage);
}
setMemoryLimit(memoryLimit) {
this.memoryLimit = memoryLimit.replace('Mi', '');
this._reportMemoryLimit();
}
setLogSize(size) {
this.logSize = size;
this._reportLogSize();
}
setVisibility(visibility) {
if (![VISIBILITY.PRIVATE, VISIBILITY.PUBLIC].includes(visibility)) {
throw new Error(`Visibility: ${visibility} is not supported. use public/private`);
}
this.visibility = visibility;
this._reportVisibility();
}
setData(data) {
this.data = data;
this._reportData();
}
setStatus(status) {
this.status = status;
this._reportStatus();
}
getConfiguration() {
return {
task: {
accountId: this.accountId,
jobId: this.jobId,
},
opts: {
...this.opts
}
};
}
syncStepsByWorkflowContextRevision(contextRevision) {
_.forEach(contextRevision, (step, stepName) => {
if (_.get(step, 'status') !== STATUS.PENDING) {
const stepLogger = this.create(stepName, false, false);
if (stepLogger) {
const { status, finishTime } = this._validateStepDataFromContextRevision({
status: _.get(step, 'status'),
finishTime: _.get(step, 'finishTimestamp'),
});
if (status) {
stepLogger.setStatus(status);
}
if (finishTime) {
const finishTimestamp = parseInt(((finishTime instanceof Date ? finishTime : new Date(finishTime)).getTime()
/ 1000).toFixed(), 10);
stepLogger.setFinishTimestamp(finishTimestamp);
}
}
}
});
}
_validateStepDataFromContextRevision(stepDataFromContextRevision) {
const { status, finishTime } = stepDataFromContextRevision;
if (_.includes([STATUS.RUNNING, STATUS.ELECTED, STATUS.TERMINATING], status)) {
return {
status: STATUS.TERMINATED,
finishTime: new Date(),
};
} else if (status === STATUS.FAILURE) {
return {
status: STATUS.ERROR,
finishTime,
};
}
return stepDataFromContextRevision;
}
}
module.exports = TaskLogger;