-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrorHandler.js
More file actions
414 lines (371 loc) · 12.4 KB
/
errorHandler.js
File metadata and controls
414 lines (371 loc) · 12.4 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
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
/**
* 統一されたエラーハンドリングシステム
* アプリケーション全体のエラー管理とロギングを担当
*/
/**
* エラーレベル定義
*/
const ErrorLevel = {
DEBUG: 'debug',
INFO: 'info',
WARN: 'warn',
ERROR: 'error',
FATAL: 'fatal'
};
/**
* エラーカテゴリ定義
*/
const ErrorCategory = {
SYSTEM: 'system',
SOUND: 'sound',
GRAPHICS: 'graphics',
USER_INPUT: 'user_input',
PERFORMANCE: 'performance',
NETWORK: 'network'
};
/**
* アプリケーション固有のエラークラス
*/
class AppError extends Error {
/**
* @param {string} message - エラーメッセージ
* @param {string} category - エラーカテゴリ
* @param {string} level - エラーレベル
* @param {Object} context - 追加のコンテキスト情報
*/
constructor(message, category = ErrorCategory.SYSTEM, level = ErrorLevel.ERROR, context = {}) {
super(message);
this.name = 'AppError';
this.category = category;
this.level = level;
this.context = context;
this.timestamp = new Date().toISOString();
this.stack = Error.captureStackTrace ? Error.captureStackTrace(this, AppError) : this.stack;
}
}
/**
* 統一エラーハンドラークラス
*/
class ErrorHandler {
constructor() {
this.errors = [];
this.maxErrorHistory = 100;
this.errorCallbacks = new Map();
this.consoleEnabled = true;
this.uiNotificationEnabled = true;
// グローバルエラーハンドラーの設定
this.setupGlobalHandlers();
}
/**
* グローバルエラーハンドラーの設定
*/
setupGlobalHandlers() {
// 未処理のJavaScriptエラー
window.addEventListener('error', (event) => {
this.handleError(new AppError(
event.message,
ErrorCategory.SYSTEM,
ErrorLevel.ERROR,
{
filename: event.filename,
lineno: event.lineno,
colno: event.colno,
error: event.error
}
));
});
// Promise rejection
window.addEventListener('unhandledrejection', (event) => {
this.handleError(new AppError(
`Unhandled Promise Rejection: ${event.reason}`,
ErrorCategory.SYSTEM,
ErrorLevel.ERROR,
{ reason: event.reason }
));
});
// p5.js特有のエラー(もし存在すれば)
if (typeof window.p5 !== 'undefined') {
// p5.jsのエラーハンドリング拡張可能
}
}
/**
* エラーの処理
* @param {Error|AppError} error - 処理するエラー
* @param {Object} additionalContext - 追加のコンテキスト
*/
handleError(error, additionalContext = {}) {
const appError = error instanceof AppError ? error : new AppError(
error.message,
ErrorCategory.SYSTEM,
ErrorLevel.ERROR,
{ originalError: error, ...additionalContext }
);
// エラー履歴に追加
this.addToHistory(appError);
// コンソールへの出力
if (this.consoleEnabled) {
this.logToConsole(appError);
}
// UIへの通知
if (this.uiNotificationEnabled) {
this.notifyUI(appError);
}
// 登録されたコールバックの実行
this.executeCallbacks(appError);
// 重大なエラーの場合は追加処理
if (appError.level === ErrorLevel.FATAL) {
this.handleFatalError(appError);
}
}
/**
* エラー履歴への追加
* @param {AppError} error - 追加するエラー
*/
addToHistory(error) {
this.errors.push(error);
// 履歴サイズの制限
if (this.errors.length > this.maxErrorHistory) {
this.errors.splice(0, this.errors.length - this.maxErrorHistory);
}
}
/**
* コンソールへのログ出力
* @param {AppError} error - 出力するエラー
*/
logToConsole(error) {
const prefix = `[${error.level.toUpperCase()}] [${error.category}]`;
const message = `${prefix} ${error.message}`;
switch (error.level) {
case ErrorLevel.DEBUG:
console.debug(message, error.context);
break;
case ErrorLevel.INFO:
console.info(message, error.context);
break;
case ErrorLevel.WARN:
console.warn(message, error.context);
break;
case ErrorLevel.ERROR:
case ErrorLevel.FATAL:
console.error(message, error.context);
if (error.stack) {
console.error('Stack trace:', error.stack);
}
break;
default:
console.log(message, error.context);
}
}
/**
* UIへの通知
* @param {AppError} error - 通知するエラー
*/
notifyUI(error) {
try {
// サウンドシステムエラーの場合は特別な処理
if (error.category === ErrorCategory.SOUND) {
this.updateSoundStatus(error);
}
// 重要なエラーの場合は画面に表示
if (error.level === ErrorLevel.ERROR || error.level === ErrorLevel.FATAL) {
this.showErrorNotification(error);
}
} catch (notificationError) {
console.error('Failed to notify UI about error:', notificationError);
}
}
/**
* サウンドステータスの更新
* @param {AppError} error - サウンド関連エラー
*/
updateSoundStatus(error) {
const statusElement = document.getElementById('sound-status-text');
const statusContainer = document.getElementById('sound-status');
if (statusElement && statusContainer) {
const message = `🔴 サウンドエラー: ${error.message}`;
statusElement.textContent = message;
statusContainer.style.backgroundColor = Config.UI.STATUS_COLORS.ERROR;
}
}
/**
* エラー通知の表示
* @param {AppError} error - 表示するエラー
*/
showErrorNotification(error) {
// シンプルなエラー通知の実装
// 実際のプロダクションでは、より洗練されたUI通知システムを使用
if (error.level === ErrorLevel.FATAL) {
// 致命的エラーの場合はアラート表示も検討
console.error('FATAL ERROR:', error.message);
}
}
/**
* エラーコールバックの実行
* @param {AppError} error - エラー
*/
executeCallbacks(error) {
const callbacks = this.errorCallbacks.get(error.category) || [];
callbacks.forEach(callback => {
try {
callback(error);
} catch (callbackError) {
console.error('Error in error callback:', callbackError);
}
});
}
/**
* 致命的エラーの処理
* @param {AppError} error - 致命的エラー
*/
handleFatalError(error) {
console.error('FATAL ERROR DETECTED:', error);
// アプリケーションの安全な停止処理
try {
// グローバルな停止フラグの設定など
if (typeof window.isPaused !== 'undefined') {
window.isPaused = true;
}
} catch (stopError) {
console.error('Failed to stop application safely:', stopError);
}
}
/**
* エラーコールバックの登録
* @param {string} category - エラーカテゴリ
* @param {Function} callback - コールバック関数
*/
registerCallback(category, callback) {
if (!this.errorCallbacks.has(category)) {
this.errorCallbacks.set(category, []);
}
this.errorCallbacks.get(category).push(callback);
}
/**
* エラー履歴の取得
* @param {string} category - 取得するカテゴリ(省略時は全て)
* @param {number} limit - 取得件数制限
* @returns {AppError[]} エラー履歴
*/
getErrorHistory(category = null, limit = null) {
let filtered = category ?
this.errors.filter(error => error.category === category) :
this.errors;
if (limit) {
filtered = filtered.slice(-limit);
}
return filtered;
}
/**
* エラー統計の取得
* @returns {Object} エラー統計情報
*/
getErrorStats() {
const stats = {
total: this.errors.length,
byCategory: {},
byLevel: {},
recent: this.errors.filter(error =>
new Date() - new Date(error.timestamp) < 300000 // 5分以内
).length
};
this.errors.forEach(error => {
stats.byCategory[error.category] = (stats.byCategory[error.category] || 0) + 1;
stats.byLevel[error.level] = (stats.byLevel[error.level] || 0) + 1;
});
return stats;
}
/**
* エラー履歴のクリア
*/
clearHistory() {
this.errors = [];
}
/**
* コンソール出力の有効/無効切り替え
* @param {boolean} enabled - 有効かどうか
*/
setConsoleEnabled(enabled) {
this.consoleEnabled = enabled;
}
/**
* UI通知の有効/無効切り替え
* @param {boolean} enabled - 有効かどうか
*/
setUINotificationEnabled(enabled) {
this.uiNotificationEnabled = enabled;
}
}
/**
* 便利なヘルパー関数群
*/
const ErrorUtils = {
/**
* 安全な関数実行(エラーを自動処理)
* @param {Function} fn - 実行する関数
* @param {string} context - エラー時のコンテキスト情報
* @param {*} defaultValue - エラー時のデフォルト戻り値
* @returns {*} 関数の戻り値またはデフォルト値
*/
safeExecute(fn, context = 'Unknown operation', defaultValue = null) {
try {
return fn();
} catch (error) {
errorHandler.handleError(new AppError(
`${context}: ${error.message}`,
ErrorCategory.SYSTEM,
ErrorLevel.WARN,
{ originalError: error }
));
return defaultValue;
}
},
/**
* 非同期関数の安全な実行
* @param {Function} asyncFn - 実行する非同期関数
* @param {string} context - エラー時のコンテキスト情報
* @returns {Promise} プロミス
*/
async safeExecuteAsync(asyncFn, context = 'Unknown async operation') {
try {
return await asyncFn();
} catch (error) {
errorHandler.handleError(new AppError(
`${context}: ${error.message}`,
ErrorCategory.SYSTEM,
ErrorLevel.WARN,
{ originalError: error }
));
return null;
}
},
/**
* パフォーマンス監視付きの関数実行
* @param {Function} fn - 実行する関数
* @param {string} name - 処理名
* @param {number} warningThreshold - 警告閾値(ms)
* @returns {*} 関数の戻り値
*/
executeWithPerformanceMonitoring(fn, name, warningThreshold = 16) { // 60fps基準
const startTime = performance.now();
const result = this.safeExecute(fn, `Performance monitoring: ${name}`);
const duration = performance.now() - startTime;
if (duration > warningThreshold) {
errorHandler.handleError(new AppError(
`Slow operation detected: ${name} took ${duration.toFixed(2)}ms`,
ErrorCategory.PERFORMANCE,
ErrorLevel.WARN,
{ duration, name, warningThreshold }
));
}
return result;
}
};
// グローバルインスタンスの作成
const errorHandler = new ErrorHandler();
// グローバルアクセス用
window.errorHandler = errorHandler;
window.ErrorHandler = ErrorHandler;
window.AppError = AppError;
window.ErrorLevel = ErrorLevel;
window.ErrorCategory = ErrorCategory;
window.ErrorUtils = ErrorUtils;