forked from y-scope/yscope-log-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStateContextProvider.tsx
380 lines (339 loc) · 12.4 KB
/
StateContextProvider.tsx
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
/* eslint max-lines: ["error", 400] */
import React, {
createContext,
useCallback,
useContext,
useEffect,
useRef,
useState,
} from "react";
import LogExportManager, {EXPORT_LOG_PROGRESS_VALUE_MIN} from "../services/LogExportManager";
import {Nullable} from "../typings/common";
import {CONFIG_KEY} from "../typings/config";
import {SEARCH_PARAM_NAMES} from "../typings/url";
import {
BeginLineNumToLogEventNumMap,
ChunkResults,
CURSOR_CODE,
CursorType,
FileSrcType,
MainWorkerRespMessage,
WORKER_REQ_CODE,
WORKER_RESP_CODE,
WorkerReq,
} from "../typings/worker";
import {
EXPORT_LOGS_CHUNK_SIZE,
getConfig,
} from "../utils/config";
import {
clamp,
getChunkNum,
} from "../utils/math";
import {
updateWindowUrlHashParams,
updateWindowUrlSearchParams,
URL_HASH_PARAMS_DEFAULT,
URL_SEARCH_PARAMS_DEFAULT,
UrlContext,
} from "./UrlContextProvider";
interface StateContextType {
beginLineNumToLogEventNum: BeginLineNumToLogEventNumMap,
fileName: string,
exportProgress: Nullable<number>,
logData: string,
numEvents: number,
numPages: number,
pageNum: Nullable<number>,
exportLogs: () => void,
loadFile: (fileSrc: FileSrcType, cursor: CursorType) => void,
loadPage: (newPageNum: number) => void,
queryLogs: (searchString: string, isRegex: boolean, isCaseSensitive: boolean) => void,
}
const StateContext = createContext<StateContextType>({} as StateContextType);
/**
* Default values of the state object.
*/
const STATE_DEFAULT: Readonly<StateContextType> = Object.freeze({
beginLineNumToLogEventNum: new Map<number, number>(),
exportProgress: null,
fileName: "",
logData: "Loading...",
numEvents: 0,
numPages: 0,
pageNum: 0,
exportLogs: () => null,
loadFile: () => null,
loadPage: () => null,
queryLogs: () => null,
});
interface StateContextProviderProps {
children: React.ReactNode
}
/**
* Updates the log event number in the current window's URL hash parameters.
*
* @param lastLogEventNum The last log event number value.
* @param inputLogEventNum The log event number to set. If `null`, the hash parameter log event
* number will be set to `lastLogEventNum`. If it's outside the range `[1, lastLogEventNum]`, the
* hash parameter log event number will be clamped to that range.
*/
const updateLogEventNumInUrl = (
lastLogEventNum: number,
inputLogEventNum: Nullable<number>
) => {
const newLogEventNum = (null === inputLogEventNum) ?
lastLogEventNum :
clamp(inputLogEventNum, 1, lastLogEventNum);
updateWindowUrlHashParams({
logEventNum: newLogEventNum,
});
};
/**
* Gets the last log event number from a map of begin line numbers to log event numbers.
*
* @param beginLineNumToLogEventNum
* @return The last log event number.
*/
const getLastLogEventNum = (beginLineNumToLogEventNum: BeginLineNumToLogEventNumMap) => {
const allLogEventNums = Array.from(beginLineNumToLogEventNum.values());
let lastLogEventNum = allLogEventNums.at(-1);
if ("undefined" === typeof lastLogEventNum) {
lastLogEventNum = 1;
}
return lastLogEventNum;
};
/**
* Sends a post message to a worker with the given code and arguments. This wrapper around
* `worker.postMessage()` ensures type safety for both the request code and its corresponding
* arguments.
*
* @param worker
* @param code
* @param args
*/
const workerPostReq = <T extends WORKER_REQ_CODE>(
worker: Worker,
code: T,
args: WorkerReq<T>
) => {
worker.postMessage({code, args});
};
/**
* Provides state management for the application. This provider must be wrapped by
* UrlContextProvider to function correctly.
*
* @param props
* @param props.children
* @return
*/
// eslint-disable-next-line max-lines-per-function,max-statements
const StateContextProvider = ({children}: StateContextProviderProps) => {
const {filePath, logEventNum} = useContext(UrlContext);
// States
const [fileName, setFileName] = useState<string>(STATE_DEFAULT.fileName);
const [logData, setLogData] = useState<string>(STATE_DEFAULT.logData);
const [numEvents, setNumEvents] = useState<number>(STATE_DEFAULT.numEvents);
const beginLineNumToLogEventNumRef =
useRef<BeginLineNumToLogEventNumMap>(STATE_DEFAULT.beginLineNumToLogEventNum);
const [exportProgress, setExportProgress] =
useState<Nullable<number>>(STATE_DEFAULT.exportProgress);
// Refs
const logEventNumRef = useRef(logEventNum);
const numPagesRef = useRef<number>(STATE_DEFAULT.numPages);
const pageNumRef = useRef<Nullable<number>>(STATE_DEFAULT.pageNum);
const logExportManagerRef = useRef<null|LogExportManager>(null);
const mainWorkerRef = useRef<null|Worker>(null);
const queryResults = useRef<ChunkResults>({});
const handleMainWorkerResp = useCallback((ev: MessageEvent<MainWorkerRespMessage>) => {
const {code, args} = ev.data;
console.log(`[MainWorker -> Renderer] code=${code}`);
switch (code) {
case WORKER_RESP_CODE.CHUNK_DATA:
if (null !== logExportManagerRef.current) {
const progress = logExportManagerRef.current.appendChunk(args.logs);
setExportProgress(progress);
}
break;
case WORKER_RESP_CODE.LOG_FILE_INFO:
setFileName(args.fileName);
setNumEvents(args.numEvents);
break;
case WORKER_RESP_CODE.NOTIFICATION:
// eslint-disable-next-line no-warning-comments
// TODO: notifications should be shown in the UI when the NotificationProvider
// is added
console.error(args.logLevel, args.message);
break;
case WORKER_RESP_CODE.PAGE_DATA: {
setLogData(args.logs);
beginLineNumToLogEventNumRef.current = args.beginLineNumToLogEventNum;
const lastLogEventNum = getLastLogEventNum(args.beginLineNumToLogEventNum);
updateLogEventNumInUrl(lastLogEventNum, logEventNumRef.current);
break;
}
case WORKER_RESP_CODE.CHUNK_RESULT:
console.log(`[MainWorker -> Renderer] CHUNK_RESULT: ${JSON.stringify(args)}`);
for (const [pageNumStr, results] of Object.entries(args)) {
const pageNum = parseInt(pageNumStr, 10);
if (!queryResults.current[pageNum]) {
queryResults.current[pageNum] = [];
}
queryResults.current[pageNum].push(...results);
}
break;
default:
console.error(`Unexpected ev.data: ${JSON.stringify(ev.data)}`);
break;
}
}, []);
const queryLogs = useCallback((
searchString: string,
isRegex: boolean,
isCaseSensitive: boolean
) => {
if (null === mainWorkerRef.current) {
console.error("Unexpected null mainWorkerRef.current");
return;
}
workerPostReq(mainWorkerRef.current, WORKER_REQ_CODE.QUERY_LOG, {
searchString: searchString,
isRegex: isRegex,
isCaseSensitive: isCaseSensitive,
});
}, []);
const exportLogs = useCallback(() => {
if (null === mainWorkerRef.current) {
console.error("Unexpected null mainWorkerRef.current");
return;
}
if (STATE_DEFAULT.numEvents === numEvents && STATE_DEFAULT.fileName === fileName) {
console.error("numEvents and fileName not initialized yet");
return;
}
setExportProgress(EXPORT_LOG_PROGRESS_VALUE_MIN);
logExportManagerRef.current = new LogExportManager(
Math.ceil(numEvents / EXPORT_LOGS_CHUNK_SIZE),
fileName
);
workerPostReq(
mainWorkerRef.current,
WORKER_REQ_CODE.EXPORT_LOG,
{decoderOptions: getConfig(CONFIG_KEY.DECODER_OPTIONS)}
);
}, [
numEvents,
fileName,
]);
const loadFile = useCallback((fileSrc: FileSrcType, cursor: CursorType) => {
if ("string" !== typeof fileSrc) {
updateWindowUrlSearchParams({[SEARCH_PARAM_NAMES.FILE_PATH]: null});
}
if (null !== mainWorkerRef.current) {
mainWorkerRef.current.terminate();
}
mainWorkerRef.current = new Worker(
new URL("../services/MainWorker.ts", import.meta.url)
);
mainWorkerRef.current.onmessage = handleMainWorkerResp;
workerPostReq(mainWorkerRef.current, WORKER_REQ_CODE.LOAD_FILE, {
fileSrc: fileSrc,
pageSize: getConfig(CONFIG_KEY.PAGE_SIZE),
cursor: cursor,
decoderOptions: getConfig(CONFIG_KEY.DECODER_OPTIONS),
});
setExportProgress(STATE_DEFAULT.exportProgress);
}, [
handleMainWorkerResp,
]);
const loadPage = (newPageNum: number) => {
if (null === mainWorkerRef.current) {
console.error("Unexpected null mainWorkerRef.current");
return;
}
workerPostReq(mainWorkerRef.current, WORKER_REQ_CODE.LOAD_PAGE, {
cursor: {code: CURSOR_CODE.PAGE_NUM, args: {pageNum: newPageNum}},
decoderOptions: getConfig(CONFIG_KEY.DECODER_OPTIONS),
});
};
// Synchronize `logEventNumRef` with `logEventNum`.
useEffect(() => {
logEventNumRef.current = logEventNum;
}, [logEventNum]);
// On `numEvents` update, recalculate `numPagesRef`.
useEffect(() => {
if (STATE_DEFAULT.numEvents === numEvents) {
return;
}
numPagesRef.current = getChunkNum(numEvents, getConfig(CONFIG_KEY.PAGE_SIZE));
}, [numEvents]);
// On `logEventNum` update, clamp it then switch page if necessary or simply update the URL.
useEffect(() => {
if (URL_HASH_PARAMS_DEFAULT.logEventNum === logEventNum) {
return;
}
const newPageNum = clamp(
getChunkNum(logEventNum, getConfig(CONFIG_KEY.PAGE_SIZE)),
1,
numPagesRef.current
);
// Request a page switch only if it's not the initial page load.
if (STATE_DEFAULT.pageNum !== pageNumRef.current) {
if (newPageNum === pageNumRef.current) {
// Don't need to switch pages so just update `logEventNum` in the URL.
updateLogEventNumInUrl(numEvents, logEventNumRef.current);
} else {
// NOTE: We don't need to call `updateLogEventNumInUrl()` since it's called when
// handling the `WORKER_RESP_CODE.PAGE_DATA` response (the response to
// `WORKER_REQ_CODE.LOAD_PAGE` requests) .
loadPage(newPageNum);
}
}
pageNumRef.current = newPageNum;
}, [
numEvents,
logEventNum,
]);
// On `filePath` update, load file.
useEffect(() => {
if (URL_SEARCH_PARAMS_DEFAULT.filePath === filePath) {
return;
}
let cursor: CursorType = {code: CURSOR_CODE.LAST_EVENT, args: null};
if (URL_HASH_PARAMS_DEFAULT.logEventNum !== logEventNumRef.current) {
// Set which page to load since the user specified a specific `logEventNum`.
// NOTE: Since we don't know how many pages the log file contains, we only clamp the
// minimum of the page number.
const newPageNum = Math.max(
getChunkNum(logEventNumRef.current, getConfig(CONFIG_KEY.PAGE_SIZE)),
1
);
cursor = {code: CURSOR_CODE.PAGE_NUM, args: {pageNum: newPageNum}};
}
loadFile(filePath, cursor);
}, [
filePath,
loadFile,
]);
return (
<StateContext.Provider
value={{
beginLineNumToLogEventNum: beginLineNumToLogEventNumRef.current,
exportProgress: exportProgress,
fileName: fileName,
logData: logData,
numEvents: numEvents,
numPages: numPagesRef.current,
pageNum: pageNumRef.current,
exportLogs: exportLogs,
loadFile: loadFile,
loadPage: loadPage,
queryLogs: queryLogs,
}}
>
{children}
</StateContext.Provider>
);
};
export default StateContextProvider;
export {StateContext};