-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup-status.ts
More file actions
282 lines (254 loc) · 8.64 KB
/
setup-status.ts
File metadata and controls
282 lines (254 loc) · 8.64 KB
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
import { watch } from "chokidar";
import ms from "ms";
import type { Disposable, LogOutputChannel } from "vscode";
import {
checkIsAuthenticated,
LOCALSTACK_AUTH_FILENAME,
} from "./authenticate.ts";
import {
AWS_CONFIG_FILENAME,
AWS_CREDENTIALS_FILENAME,
checkIsProfileConfigured,
} from "./configure-aws.ts";
import { createEmitter } from "./emitter.ts";
import { immediateOnce } from "./immediate-once.ts";
import { checkIsLicenseValid, LICENSE_FILENAME } from "./license.ts";
import type { UnwrapPromise } from "./promises.ts";
import { checkSetupStatus } from "./setup.ts";
import type { TimeTracker } from "./time-tracker.ts";
export type SetupStatus = "ok" | "setup_required";
export interface SetupStatusTracker extends Disposable {
status(): SetupStatus;
statuses(): UnwrapPromise<ReturnType<typeof checkSetupStatus>>;
onChange(callback: (status: SetupStatus) => void): void;
}
/**
* Checks the status of the LocalStack installation.
*/
export async function createSetupStatusTracker(
outputChannel: LogOutputChannel,
timeTracker: TimeTracker,
): Promise<SetupStatusTracker> {
const start = Date.now();
let statuses: UnwrapPromise<ReturnType<typeof checkSetupStatus>> | undefined;
let status: SetupStatus | undefined;
const emitter = createEmitter<SetupStatus>(outputChannel);
const awsProfileTracker = createAwsProfileStatusTracker(outputChannel);
const localStackAuthenticationTracker =
createLocalStackAuthenticationStatusTracker(outputChannel);
const licenseTracker = createLicenseStatusTracker(outputChannel);
const end = Date.now();
outputChannel.trace(
`[setup-status]: Initialized dependencies in ${ms(end - start, { long: true })}`,
);
const checkStatusNow = async () => {
const allStatusesInitialized = Object.values({
awsProfileTracker: awsProfileTracker.status(),
authTracker: localStackAuthenticationTracker.status(),
licenseTracker: licenseTracker.status(),
}).every((check) => check !== undefined);
if (!allStatusesInitialized) {
outputChannel.trace(
`[setup-status] File watchers not initialized yet, skipping status check : ${JSON.stringify(
{
awsProfileTracker: awsProfileTracker.status() ?? "undefined",
authTracker:
localStackAuthenticationTracker.status() ?? "undefined",
licenseTracker: licenseTracker.status() ?? "undefined",
},
)}`,
);
return;
}
statuses = await checkSetupStatus(outputChannel);
const setupRequired = [
...Object.values(statuses),
awsProfileTracker.status() === "ok",
localStackAuthenticationTracker.status() === "ok",
licenseTracker.status() === "ok",
].some((check) => check === false);
const newStatus = setupRequired ? "setup_required" : "ok";
if (status !== newStatus) {
status = newStatus;
outputChannel.trace(
`[setup-status] Status changed to ${JSON.stringify({
...statuses,
awsProfileTracker: awsProfileTracker.status() ?? "undefined",
authTracker: localStackAuthenticationTracker.status() ?? "undefined",
licenseTracker: licenseTracker.status() ?? "undefined",
})}`,
);
await emitter.emit(status);
}
};
const checkStatus = immediateOnce(async () => {
await checkStatusNow();
});
awsProfileTracker.onChange(() => {
checkStatus();
});
localStackAuthenticationTracker.onChange(() => {
checkStatus();
});
licenseTracker.onChange(() => {
checkStatus();
});
let timeout: NodeJS.Timeout | undefined;
const startChecking = () => {
checkStatus();
// TODO: Find a smarter way to check the status (e.g. watch for changes in AWS credentials or LocalStack installation)
timeout = setTimeout(() => void startChecking(), 1_000);
};
await timeTracker.run("setup-status.checkIsSetupRequired", () => {
startChecking();
return Promise.resolve();
});
await checkStatusNow();
return {
status() {
// biome-ignore lint/style/noNonNullAssertion: false positive
return status!;
},
statuses() {
// biome-ignore lint/style/noNonNullAssertion: false positive
return statuses!;
},
onChange(callback) {
emitter.on(callback);
if (status) {
callback(status);
}
},
async dispose() {
clearTimeout(timeout);
await Promise.all([
awsProfileTracker.dispose(),
localStackAuthenticationTracker.dispose(),
]);
},
};
}
interface StatusTracker {
status(): SetupStatus | undefined;
onChange(callback: (status: SetupStatus) => void): void;
dispose(): Promise<void>;
}
/**
* Creates a status tracker that monitors the given files for changes.
* When a file is added, changed, or deleted, the provided check function is called
* to determine the current setup status. Emits status changes to registered listeners.
*
* @param outputChannel - Channel for logging output and trace messages.
* @param outputChannelPrefix - Prefix for log messages.
* @param files - Array of file paths to watch.
* @param check - Function that returns the current SetupStatus (sync or async).
* @returns A {@link StatusTracker} instance for querying status, subscribing to changes, and disposing resources.
*/
function createFileStatusTracker(
outputChannel: LogOutputChannel,
outputChannelPrefix: string,
files: string[],
check: () => Promise<SetupStatus> | SetupStatus,
): StatusTracker {
let status: SetupStatus | undefined;
const emitter = createEmitter<SetupStatus>(outputChannel);
const updateStatus = immediateOnce(async () => {
const newStatus = await Promise.resolve(check());
if (status !== newStatus) {
status = newStatus;
outputChannel.trace(
`${outputChannelPrefix} File status changed to ${status}`,
);
await emitter.emit(status);
}
});
const watcher = watch(files)
.on("change", (path) => {
outputChannel.trace(`${outputChannelPrefix} ${path} changed`);
updateStatus();
})
.on("unlink", (path) => {
outputChannel.trace(`${outputChannelPrefix} ${path} deleted`);
updateStatus();
})
.on("add", (path) => {
outputChannel.trace(`${outputChannelPrefix} ${path} added`);
updateStatus();
})
.on("error", (error) => {
outputChannel.error(`${outputChannelPrefix} Error watching file`);
outputChannel.error(error instanceof Error ? error : String(error));
});
// Update the status immediately on file tracker initialization
void updateStatus();
return {
status() {
return status;
},
onChange(callback) {
emitter.on(callback);
if (status) {
callback(status);
}
},
async dispose() {
await watcher.close();
},
};
}
/**
* Creates a status tracker that monitors the AWS profile files for changes.
* When the file is changed, the provided check function is called to determine the current setup status.
* Emits status changes to registered listeners.
*
* @param outputChannel - Channel for logging output and trace messages.
* @returns A {@link StatusTracker} instance for querying status, subscribing to changes, and disposing resources.
*/
function createAwsProfileStatusTracker(
outputChannel: LogOutputChannel,
): StatusTracker {
return createFileStatusTracker(
outputChannel,
"[setup-status.aws-profile]",
[AWS_CONFIG_FILENAME, AWS_CREDENTIALS_FILENAME],
async () => ((await checkIsProfileConfigured()) ? "ok" : "setup_required"),
);
}
/**
* Creates a status tracker that monitors the LocalStack authentication file for changes.
* When the file is changed, the provided check function is called to determine the current setup status.
* Emits status changes to registered listeners.
*
* @param outputChannel - Channel for logging output and trace messages.
* @param outputChannel
* @returns A {@link StatusTracker} instance for querying status, subscribing to changes, and disposing resources.
*/
function createLocalStackAuthenticationStatusTracker(
outputChannel: LogOutputChannel,
): StatusTracker {
return createFileStatusTracker(
outputChannel,
"[setup-status.localstack-authentication]",
[LOCALSTACK_AUTH_FILENAME],
async () => ((await checkIsAuthenticated()) ? "ok" : "setup_required"),
);
}
/**
* Creates a status tracker that monitors the LocalStack license file for changes.
* When the file is changed, the provided check function is called to determine the current setup status.
* Emits status changes to registered listeners.
*
* @param outputChannel - Channel for logging output and trace messages.
* @returns A {@link StatusTracker} instance for querying status, subscribing to changes, and disposing resources.
*/
function createLicenseStatusTracker(
outputChannel: LogOutputChannel,
): StatusTracker {
return createFileStatusTracker(
outputChannel,
"[setup-status.license]",
[LOCALSTACK_AUTH_FILENAME, LICENSE_FILENAME], //TODO rewrite to depend on change in localStackAuthenticationTracker
async () =>
(await checkIsLicenseValid(outputChannel)) ? "ok" : "setup_required",
);
}