@l-v-yonsama/multi-platform-database-drivers 0.11.14 → 0.13.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/built/schema/log-parse-config.schema.json +406 -0
- package/built/src/drivers/RDSBaseDriver.d.ts +2 -1
- package/built/src/drivers/RDSBaseDriver.js +9 -0
- package/built/src/drivers/RDSBaseDriver.js.map +1 -1
- package/built/src/drivers/memcache/helper.js +1 -1
- package/built/src/drivers/memcache/helper.js.map +1 -1
- package/built/src/helpers/SQLHelper.d.ts +11 -1
- package/built/src/helpers/SQLHelper.js +94 -1
- package/built/src/helpers/SQLHelper.js.map +1 -1
- package/built/src/types/helpers/index.d.ts +9 -1
- package/built/src/types/helpers/index.js +3 -1
- package/built/src/types/helpers/index.js.map +1 -1
- package/built/src/types/index.d.ts +1 -0
- package/built/src/types/index.js +1 -0
- package/built/src/types/index.js.map +1 -1
- package/built/src/types/utils/index.d.ts +186 -0
- package/built/src/types/utils/index.js +29 -0
- package/built/src/types/utils/index.js.map +1 -0
- package/built/src/utils/index.d.ts +1 -0
- package/built/src/utils/index.js +1 -0
- package/built/src/utils/index.js.map +1 -1
- package/built/src/utils/log/LogParser.d.ts +8 -0
- package/built/src/utils/log/LogParser.js +162 -0
- package/built/src/utils/log/LogParser.js.map +1 -0
- package/built/src/utils/log/buildSqlExecutions.d.ts +7 -0
- package/built/src/utils/log/buildSqlExecutions.js +267 -0
- package/built/src/utils/log/buildSqlExecutions.js.map +1 -0
- package/built/src/utils/log/classify/classifyEvent.d.ts +3 -0
- package/built/src/utils/log/classify/classifyEvent.js +91 -0
- package/built/src/utils/log/classify/classifyEvent.js.map +1 -0
- package/built/src/utils/log/constant/base.d.ts +97 -0
- package/built/src/utils/log/constant/base.js +136 -0
- package/built/src/utils/log/constant/base.js.map +1 -0
- package/built/src/utils/log/constant/index.d.ts +3 -0
- package/built/src/utils/log/constant/index.js +7 -0
- package/built/src/utils/log/constant/index.js.map +1 -0
- package/built/src/utils/log/constant/logEventSplitPreset.d.ts +34 -0
- package/built/src/utils/log/constant/logEventSplitPreset.js +299 -0
- package/built/src/utils/log/constant/logEventSplitPreset.js.map +1 -0
- package/built/src/utils/log/constant/sqlLogParsePreset.d.ts +328 -0
- package/built/src/utils/log/constant/sqlLogParsePreset.js +383 -0
- package/built/src/utils/log/constant/sqlLogParsePreset.js.map +1 -0
- package/built/src/utils/log/detect/presetDetector.d.ts +11 -0
- package/built/src/utils/log/detect/presetDetector.js +140 -0
- package/built/src/utils/log/detect/presetDetector.js.map +1 -0
- package/built/src/utils/log/extract/runExtractors.d.ts +2 -0
- package/built/src/utils/log/extract/runExtractors.js +105 -0
- package/built/src/utils/log/extract/runExtractors.js.map +1 -0
- package/built/src/utils/log/index.d.ts +10 -0
- package/built/src/utils/log/index.js +14 -0
- package/built/src/utils/log/index.js.map +1 -0
- package/built/src/utils/log/logSummary.d.ts +6 -0
- package/built/src/utils/log/logSummary.js +91 -0
- package/built/src/utils/log/logSummary.js.map +1 -0
- package/built/src/utils/log/pattern/logEventPattern.d.ts +3 -0
- package/built/src/utils/log/pattern/logEventPattern.js +123 -0
- package/built/src/utils/log/pattern/logEventPattern.js.map +1 -0
- package/built/src/utils/log/rdh/convertExtractedSqlRdhResult.d.ts +11 -0
- package/built/src/utils/log/rdh/convertExtractedSqlRdhResult.js +161 -0
- package/built/src/utils/log/rdh/convertExtractedSqlRdhResult.js.map +1 -0
- package/built/src/utils/log/split/splitLogEvents.d.ts +2 -0
- package/built/src/utils/log/split/splitLogEvents.js +38 -0
- package/built/src/utils/log/split/splitLogEvents.js.map +1 -0
- package/built/src/utils/log/sql/removeSqlComments.d.ts +1 -0
- package/built/src/utils/log/sql/removeSqlComments.js +11 -0
- package/built/src/utils/log/sql/removeSqlComments.js.map +1 -0
- package/built/src/utils/log/validator.d.ts +6 -0
- package/built/src/utils/log/validator.js +272 -0
- package/built/src/utils/log/validator.js.map +1 -0
- package/package.json +15 -7
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { LogParseConfig } from '../../../types';
|
|
2
|
+
export declare const LOG_LEVELS: readonly ["trace", "debug", "info", "warn", "warning", "error", "fatal", "severe"];
|
|
3
|
+
export type LogLevel = (typeof LOG_LEVELS)[number];
|
|
4
|
+
export declare const LOG_FIELD_PATTERNS: {
|
|
5
|
+
LEVEL: {
|
|
6
|
+
type: "LEVEL";
|
|
7
|
+
label: string;
|
|
8
|
+
pattern: string;
|
|
9
|
+
description: string;
|
|
10
|
+
example: string;
|
|
11
|
+
};
|
|
12
|
+
ISO8601_STRICT: {
|
|
13
|
+
type: "ISO8601_STRICT";
|
|
14
|
+
label: string;
|
|
15
|
+
pattern: string;
|
|
16
|
+
description: string;
|
|
17
|
+
example: string;
|
|
18
|
+
};
|
|
19
|
+
ISO8601_LENIENT: {
|
|
20
|
+
type: "ISO8601_LENIENT";
|
|
21
|
+
label: string;
|
|
22
|
+
pattern: string;
|
|
23
|
+
description: string;
|
|
24
|
+
example: string;
|
|
25
|
+
};
|
|
26
|
+
JUL_TIMESTAMP: {
|
|
27
|
+
type: "JUL_TIMESTAMP";
|
|
28
|
+
label: string;
|
|
29
|
+
pattern: string;
|
|
30
|
+
description: string;
|
|
31
|
+
example: string;
|
|
32
|
+
};
|
|
33
|
+
SLASH_TIMESTAMP: {
|
|
34
|
+
type: "SLASH_TIMESTAMP";
|
|
35
|
+
label: string;
|
|
36
|
+
pattern: string;
|
|
37
|
+
description: string;
|
|
38
|
+
example: string;
|
|
39
|
+
};
|
|
40
|
+
EPOCH_TIMESTAMP: {
|
|
41
|
+
type: "EPOCH_TIMESTAMP";
|
|
42
|
+
label: string;
|
|
43
|
+
pattern: string;
|
|
44
|
+
description: string;
|
|
45
|
+
example: string;
|
|
46
|
+
};
|
|
47
|
+
LOGGER: {
|
|
48
|
+
type: "LOGGER";
|
|
49
|
+
label: string;
|
|
50
|
+
pattern: string;
|
|
51
|
+
description: string;
|
|
52
|
+
example: string;
|
|
53
|
+
};
|
|
54
|
+
INT: {
|
|
55
|
+
type: "INT";
|
|
56
|
+
label: string;
|
|
57
|
+
pattern: string;
|
|
58
|
+
description: string;
|
|
59
|
+
example: string;
|
|
60
|
+
};
|
|
61
|
+
NUMBER: {
|
|
62
|
+
type: "NUMBER";
|
|
63
|
+
label: string;
|
|
64
|
+
pattern: string;
|
|
65
|
+
description: string;
|
|
66
|
+
example: string;
|
|
67
|
+
};
|
|
68
|
+
WORD: {
|
|
69
|
+
type: "WORD";
|
|
70
|
+
label: string;
|
|
71
|
+
pattern: string;
|
|
72
|
+
description: string;
|
|
73
|
+
example: string;
|
|
74
|
+
};
|
|
75
|
+
DATA: {
|
|
76
|
+
type: "DATA";
|
|
77
|
+
label: string;
|
|
78
|
+
pattern: string;
|
|
79
|
+
description: string;
|
|
80
|
+
example: string;
|
|
81
|
+
};
|
|
82
|
+
GREEDY_DATA: {
|
|
83
|
+
type: "GREEDY_DATA";
|
|
84
|
+
label: string;
|
|
85
|
+
pattern: string;
|
|
86
|
+
description: string;
|
|
87
|
+
example: string;
|
|
88
|
+
};
|
|
89
|
+
GREEDY_MULTILINE: {
|
|
90
|
+
type: "GREEDY_MULTILINE";
|
|
91
|
+
label: string;
|
|
92
|
+
pattern: string;
|
|
93
|
+
description: string;
|
|
94
|
+
example: string;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
export declare const SIMPLE_LOG_PARSE_CONFIG: LogParseConfig;
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SIMPLE_LOG_PARSE_CONFIG = exports.LOG_FIELD_PATTERNS = exports.LOG_LEVELS = void 0;
|
|
4
|
+
const ISO_DATE = '\\d{4}-\\d{2}-\\d{2}';
|
|
5
|
+
const ISO_TIME_STRICT = '\\d{2}:\\d{2}' + '(:\\d{2})?' + '(\\.\\d+)?';
|
|
6
|
+
const ISO_TIME_LENIENT = '\\d{2}:\\d{2}' + '(:\\d{2})?' + '([.,]\\d+)?';
|
|
7
|
+
const ISO_TZ = '(Z|[+-]\\d{2}:?\\d{2})?';
|
|
8
|
+
const ISO_DATE_TIME_STRICT = ISO_DATE + '[T ]' + ISO_TIME_STRICT + ISO_TZ;
|
|
9
|
+
const ISO_DATE_TIME_LENIENT = ISO_DATE + '[T ]' + ISO_TIME_LENIENT + ISO_TZ;
|
|
10
|
+
const ISO_TIME_ONLY_STRICT = ISO_TIME_STRICT;
|
|
11
|
+
const ISO_TIME_ONLY_LENIENT = ISO_TIME_LENIENT;
|
|
12
|
+
exports.LOG_LEVELS = [
|
|
13
|
+
'trace',
|
|
14
|
+
'debug',
|
|
15
|
+
'info',
|
|
16
|
+
'warn',
|
|
17
|
+
'warning',
|
|
18
|
+
'error',
|
|
19
|
+
'fatal',
|
|
20
|
+
'severe',
|
|
21
|
+
];
|
|
22
|
+
exports.LOG_FIELD_PATTERNS = {
|
|
23
|
+
LEVEL: {
|
|
24
|
+
type: 'LEVEL',
|
|
25
|
+
label: 'Log level',
|
|
26
|
+
pattern: `(?:${exports.LOG_LEVELS.join('|')})`,
|
|
27
|
+
description: 'Common log levels such as trace, debug, info, warn, error, fatal.',
|
|
28
|
+
example: 'INFO',
|
|
29
|
+
},
|
|
30
|
+
ISO8601_STRICT: {
|
|
31
|
+
type: 'ISO8601_STRICT',
|
|
32
|
+
label: 'ISO8601 timestamp (strict)',
|
|
33
|
+
pattern: '(?:' + ISO_DATE_TIME_STRICT + '|' + ISO_TIME_ONLY_STRICT + ')',
|
|
34
|
+
description: 'Strict ISO8601 timestamp using "." for milliseconds.',
|
|
35
|
+
example: '2025-01-01 10:11:22.333',
|
|
36
|
+
},
|
|
37
|
+
ISO8601_LENIENT: {
|
|
38
|
+
type: 'ISO8601_LENIENT',
|
|
39
|
+
label: 'ISO8601 timestamp (lenient)',
|
|
40
|
+
pattern: '(?:' + ISO_DATE_TIME_LENIENT + '|' + ISO_TIME_ONLY_LENIENT + ')',
|
|
41
|
+
description: 'Lenient ISO8601-like timestamp allowing "." or "," for milliseconds.',
|
|
42
|
+
example: '2025-01-01 10:11:22,333',
|
|
43
|
+
},
|
|
44
|
+
JUL_TIMESTAMP: {
|
|
45
|
+
type: 'JUL_TIMESTAMP',
|
|
46
|
+
label: 'Java Util Logging timestamp',
|
|
47
|
+
pattern: '[A-Z][a-z]{2}\\s+\\d{1,2},\\s+\\d{4}\\s+\\d{2}:\\d{2}:\\d{2}\\s+(AM|PM)',
|
|
48
|
+
description: 'Timestamp used by java.util.logging SimpleFormatter.',
|
|
49
|
+
example: 'Mar 12, 2026 10:11:22 AM',
|
|
50
|
+
},
|
|
51
|
+
SLASH_TIMESTAMP: {
|
|
52
|
+
type: 'SLASH_TIMESTAMP',
|
|
53
|
+
label: 'Slash separated timestamp (legacy log4j / Seasar style)',
|
|
54
|
+
pattern: '\\d{4}\\/\\d{1,2}\\/\\d{1,2}\\s+\\d{2}:\\d{2}:\\d{2}\\s+\\d{3,6}',
|
|
55
|
+
description: 'Timestamp using slash date and space separated milliseconds. Often seen in legacy log4j layouts and Seasar applications.',
|
|
56
|
+
example: '1999/01/01 14:52:34 0502',
|
|
57
|
+
},
|
|
58
|
+
EPOCH_TIMESTAMP: {
|
|
59
|
+
type: 'EPOCH_TIMESTAMP',
|
|
60
|
+
label: 'Unix epoch timestamp (milliseconds)',
|
|
61
|
+
pattern: '\\d{13}',
|
|
62
|
+
description: 'Unix epoch timestamp in milliseconds since 1970-01-01 UTC. Common in cloud and structured logs.',
|
|
63
|
+
example: '1710241882000',
|
|
64
|
+
},
|
|
65
|
+
LOGGER: {
|
|
66
|
+
type: 'LOGGER',
|
|
67
|
+
label: 'Logger name',
|
|
68
|
+
pattern: '[a-zA-Z0-9_.$:/-]+',
|
|
69
|
+
description: 'Typical logger or class name.',
|
|
70
|
+
example: 'org.example.service.UserService',
|
|
71
|
+
},
|
|
72
|
+
INT: {
|
|
73
|
+
type: 'INT',
|
|
74
|
+
label: 'Integer',
|
|
75
|
+
pattern: '[+-]?\\d+',
|
|
76
|
+
description: 'Signed integer number.',
|
|
77
|
+
example: '42',
|
|
78
|
+
},
|
|
79
|
+
NUMBER: {
|
|
80
|
+
type: 'NUMBER',
|
|
81
|
+
label: 'Number',
|
|
82
|
+
pattern: '[+-]?\\d+(\\.\\d+)?',
|
|
83
|
+
description: 'Integer or decimal number.',
|
|
84
|
+
example: '3.14',
|
|
85
|
+
},
|
|
86
|
+
WORD: {
|
|
87
|
+
type: 'WORD',
|
|
88
|
+
label: 'Word',
|
|
89
|
+
pattern: '\\b\\w+\\b',
|
|
90
|
+
description: 'Single word consisting of letters, digits or underscore.',
|
|
91
|
+
example: 'Thread-1',
|
|
92
|
+
},
|
|
93
|
+
DATA: {
|
|
94
|
+
type: 'DATA',
|
|
95
|
+
label: 'Data',
|
|
96
|
+
pattern: `[^\\s]+`,
|
|
97
|
+
description: 'Single field (until whitespace)',
|
|
98
|
+
example: '%{Hello}%',
|
|
99
|
+
},
|
|
100
|
+
GREEDY_DATA: {
|
|
101
|
+
type: 'GREEDY_DATA',
|
|
102
|
+
label: 'Greedy data',
|
|
103
|
+
pattern: '.*',
|
|
104
|
+
description: 'Any characters except newline.',
|
|
105
|
+
example: 'Full log message',
|
|
106
|
+
},
|
|
107
|
+
GREEDY_MULTILINE: {
|
|
108
|
+
type: 'GREEDY_MULTILINE',
|
|
109
|
+
label: 'Greedy multiline',
|
|
110
|
+
pattern: '[\\s\\S]*',
|
|
111
|
+
description: 'Matches any characters including line breaks.',
|
|
112
|
+
example: 'Full log message<Line breaks> next line message',
|
|
113
|
+
},
|
|
114
|
+
};
|
|
115
|
+
const DEFAULT_SIMPLE_LOG_SPLIT_CONFIG = {
|
|
116
|
+
fields: [
|
|
117
|
+
{
|
|
118
|
+
name: 'timestamp',
|
|
119
|
+
type: 'builtin',
|
|
120
|
+
pattern: 'ISO8601_STRICT',
|
|
121
|
+
eventStartMarker: true,
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
name: 'message',
|
|
125
|
+
type: 'builtin',
|
|
126
|
+
pattern: 'GREEDY_MULTILINE',
|
|
127
|
+
eventStartMarker: false,
|
|
128
|
+
},
|
|
129
|
+
],
|
|
130
|
+
};
|
|
131
|
+
exports.SIMPLE_LOG_PARSE_CONFIG = {
|
|
132
|
+
split: DEFAULT_SIMPLE_LOG_SPLIT_CONFIG,
|
|
133
|
+
classify: [],
|
|
134
|
+
extractors: [],
|
|
135
|
+
};
|
|
136
|
+
//# sourceMappingURL=base.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base.js","sourceRoot":"","sources":["../../../../../src/utils/log/constant/base.ts"],"names":[],"mappings":";;;AAWA,MAAM,QAAQ,GAAG,sBAAsB,CAAC;AAIxC,MAAM,eAAe,GAAG,eAAe,GAAG,YAAY,GAAG,YAAY,CAAC;AAItE,MAAM,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,aAAa,CAAC;AAGxE,MAAM,MAAM,GAAG,yBAAyB,CAAC;AAGzC,MAAM,oBAAoB,GAAG,QAAQ,GAAG,MAAM,GAAG,eAAe,GAAG,MAAM,CAAC;AAG1E,MAAM,qBAAqB,GAAG,QAAQ,GAAG,MAAM,GAAG,gBAAgB,GAAG,MAAM,CAAC;AAG5E,MAAM,oBAAoB,GAAG,eAAe,CAAC;AAC7C,MAAM,qBAAqB,GAAG,gBAAgB,CAAC;AAMlC,QAAA,UAAU,GAAG;IACxB,OAAO;IACP,OAAO;IACP,MAAM;IACN,MAAM;IACN,SAAS;IACT,OAAO;IACP,OAAO;IACP,QAAQ;CACA,CAAC;AAQE,QAAA,kBAAkB,GAAG;IAChC,KAAK,EAAE;QACL,IAAI,EAAE,OAAO;QACb,KAAK,EAAE,WAAW;QAClB,OAAO,EAAE,MAAM,kBAAU,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG;QACtC,WAAW,EACT,mEAAmE;QACrE,OAAO,EAAE,MAAM;KAChB;IACD,cAAc,EAAE;QACd,IAAI,EAAE,gBAAgB;QACtB,KAAK,EAAE,4BAA4B;QACnC,OAAO,EAAE,KAAK,GAAG,oBAAoB,GAAG,GAAG,GAAG,oBAAoB,GAAG,GAAG;QACxE,WAAW,EAAE,sDAAsD;QACnE,OAAO,EAAE,yBAAyB;KACnC;IACD,eAAe,EAAE;QACf,IAAI,EAAE,iBAAiB;QACvB,KAAK,EAAE,6BAA6B;QACpC,OAAO,EAAE,KAAK,GAAG,qBAAqB,GAAG,GAAG,GAAG,qBAAqB,GAAG,GAAG;QAC1E,WAAW,EACT,sEAAsE;QACxE,OAAO,EAAE,yBAAyB;KACnC;IACD,aAAa,EAAE;QACb,IAAI,EAAE,eAAe;QACrB,KAAK,EAAE,6BAA6B;QACpC,OAAO,EACL,yEAAyE;QAC3E,WAAW,EAAE,sDAAsD;QACnE,OAAO,EAAE,0BAA0B;KACpC;IACD,eAAe,EAAE;QACf,IAAI,EAAE,iBAAiB;QACvB,KAAK,EAAE,yDAAyD;QAChE,OAAO,EAAE,kEAAkE;QAC3E,WAAW,EACT,0HAA0H;QAC5H,OAAO,EAAE,0BAA0B;KACpC;IACD,eAAe,EAAE;QACf,IAAI,EAAE,iBAAiB;QACvB,KAAK,EAAE,qCAAqC;QAC5C,OAAO,EAAE,SAAS;QAClB,WAAW,EACT,iGAAiG;QACnG,OAAO,EAAE,eAAe;KACzB;IAED,MAAM,EAAE;QACN,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,aAAa;QACpB,OAAO,EAAE,oBAAoB;QAC7B,WAAW,EAAE,+BAA+B;QAC5C,OAAO,EAAE,iCAAiC;KAC3C;IAED,GAAG,EAAE;QACH,IAAI,EAAE,KAAK;QACX,KAAK,EAAE,SAAS;QAChB,OAAO,EAAE,WAAW;QACpB,WAAW,EAAE,wBAAwB;QACrC,OAAO,EAAE,IAAI;KACd;IAED,MAAM,EAAE;QACN,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,QAAQ;QACf,OAAO,EAAE,qBAAqB;QAC9B,WAAW,EAAE,4BAA4B;QACzC,OAAO,EAAE,MAAM;KAChB;IAED,IAAI,EAAE;QACJ,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,MAAM;QACb,OAAO,EAAE,YAAY;QACrB,WAAW,EAAE,0DAA0D;QACvE,OAAO,EAAE,UAAU;KACpB;IAED,IAAI,EAAE;QACJ,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,MAAM;QACb,OAAO,EAAE,SAAS;QAClB,WAAW,EAAE,iCAAiC;QAC9C,OAAO,EAAE,WAAW;KACrB;IACD,WAAW,EAAE;QACX,IAAI,EAAE,aAAa;QACnB,KAAK,EAAE,aAAa;QACpB,OAAO,EAAE,IAAI;QACb,WAAW,EAAE,gCAAgC;QAC7C,OAAO,EAAE,kBAAkB;KAC5B;IACD,gBAAgB,EAAE;QAChB,IAAI,EAAE,kBAAkB;QACxB,KAAK,EAAE,kBAAkB;QACzB,OAAO,EAAE,WAAW;QACpB,WAAW,EAAE,+CAA+C;QAC5D,OAAO,EAAE,kDAAkD;KAC5D;CACkD,CAAC;AAKtD,MAAM,+BAA+B,GAAwB;IAC3D,MAAM,EAAE;QACN;YACE,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,gBAAgB;YACzB,gBAAgB,EAAE,IAAI;SACvB;QACD;YACE,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,kBAAkB;YAC3B,gBAAgB,EAAE,KAAK;SACxB;KACF;CACF,CAAC;AAEW,QAAA,uBAAuB,GAAmB;IACrD,KAAK,EAAE,+BAA+B;IACtC,QAAQ,EAAE,EAAE;IACZ,UAAU,EAAE,EAAE;CACf,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./base"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./logEventSplitPreset"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./sqlLogParsePreset"), exports);
|
|
7
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/utils/log/constant/index.ts"],"names":[],"mappings":";;;AAAA,iDAAuB;AACvB,gEAAsC;AACtC,8DAAoC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { LogEventSplitConfig } from '../../../types';
|
|
2
|
+
export declare const DEFAULT_SIMPLE_SPLIT_CONFIG: LogEventSplitConfig;
|
|
3
|
+
export declare const DEFAULT_LOGBACK_SPLIT_CONFIG: LogEventSplitConfig;
|
|
4
|
+
export declare const DEFAULT_LOG4J_SPLIT_CONFIG: LogEventSplitConfig;
|
|
5
|
+
export declare const DEFAULT_LOG4J_MDC_SPLIT_CONFIG: LogEventSplitConfig;
|
|
6
|
+
export declare const DEFAULT_JUL_SPLIT_CONFIG: LogEventSplitConfig;
|
|
7
|
+
export declare const DEFAULT_SPRING_BOOT_SPLIT_CONFIG: LogEventSplitConfig;
|
|
8
|
+
export declare const LOG_EVENT_SPLIT_PRESETS: {
|
|
9
|
+
readonly Simple: {
|
|
10
|
+
readonly split: LogEventSplitConfig;
|
|
11
|
+
readonly logExample: "2026-03-12 10:11:22 DEBUG com.example.UserService - Executing query\n2026-03-12 10:11:22 INFO com.example.UserService - Query finished\n2026-03-12 10:11:23 ERROR com.example.UserService - SQL execution failed";
|
|
12
|
+
};
|
|
13
|
+
readonly Logback: {
|
|
14
|
+
readonly split: LogEventSplitConfig;
|
|
15
|
+
readonly logExample: "10:11:22.333 [http-nio-8080-exec-1] DEBUG com.example.UserService - Executing query\n10:11:22.444 [http-nio-8080-exec-1] INFO com.example.UserService - Query finished\n10:11:22.555 [http-nio-8080-exec-1] ERROR com.example.UserService - SQL execution failed";
|
|
16
|
+
};
|
|
17
|
+
readonly Log4j: {
|
|
18
|
+
readonly split: LogEventSplitConfig;
|
|
19
|
+
readonly logExample: "2026-03-12 10:11:22,333 [http-nio-8080-exec-1] DEBUG com.example.UserService - Executing query\n2026-03-12 10:11:22,444 [http-nio-8080-exec-1] INFO com.example.UserService - Query finished\n2026-03-12 10:11:22,555 [http-nio-8080-exec-1] ERROR com.example.UserService - SQL execution failed";
|
|
20
|
+
};
|
|
21
|
+
readonly Log4jMdc: {
|
|
22
|
+
readonly split: LogEventSplitConfig;
|
|
23
|
+
readonly logExample: "[1999/01/01 14:52:34 0502] [DEBUG] [http-nio-8080-exec-1] [30] com.example.UserService - Executing query\n[1999/01/01 14:52:34 0503] [INFO ] [http-nio-8080-exec-1] [30] com.example.UserService - Query finished\n[1999/01/01 14:52:34 0510] [ERROR] [http-nio-8080-exec-1] [30] com.example.UserService - SQL execution failed";
|
|
24
|
+
};
|
|
25
|
+
readonly JavaUtilLogging: {
|
|
26
|
+
readonly split: LogEventSplitConfig;
|
|
27
|
+
readonly logExample: "Mar 12, 2026 10:11:22 AM com.example.UserService execute\nINFO: Executing query\nMar 12, 2026 10:11:22 AM com.example.UserService execute\nSEVERE: SQL execution failed";
|
|
28
|
+
};
|
|
29
|
+
readonly SpringBoot: {
|
|
30
|
+
readonly split: LogEventSplitConfig;
|
|
31
|
+
readonly logExample: "2026-03-12 10:11:22.333 INFO 12345 --- [nio-8080-exec-1] c.example.demo.UserService : Executing query\n2026-03-12 10:11:22.444 DEBUG 12345 --- [nio-8080-exec-1] c.example.demo.UserService : Binding parameters\n2026-03-12 10:11:22.555 ERROR 12345 --- [nio-8080-exec-1] c.example.demo.UserService : SQL execution failed";
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export type LogEventSplitPresetName = keyof typeof LOG_EVENT_SPLIT_PRESETS;
|
|
@@ -0,0 +1,299 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LOG_EVENT_SPLIT_PRESETS = exports.DEFAULT_SPRING_BOOT_SPLIT_CONFIG = exports.DEFAULT_JUL_SPLIT_CONFIG = exports.DEFAULT_LOG4J_MDC_SPLIT_CONFIG = exports.DEFAULT_LOG4J_SPLIT_CONFIG = exports.DEFAULT_LOGBACK_SPLIT_CONFIG = exports.DEFAULT_SIMPLE_SPLIT_CONFIG = void 0;
|
|
4
|
+
exports.DEFAULT_SIMPLE_SPLIT_CONFIG = {
|
|
5
|
+
fields: [
|
|
6
|
+
{
|
|
7
|
+
name: 'timestamp',
|
|
8
|
+
type: 'builtin',
|
|
9
|
+
pattern: 'ISO8601_STRICT',
|
|
10
|
+
eventStartMarker: true,
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
name: 'level',
|
|
14
|
+
type: 'builtin',
|
|
15
|
+
pattern: 'LEVEL',
|
|
16
|
+
eventStartMarker: false,
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
name: 'logger',
|
|
20
|
+
type: 'builtin',
|
|
21
|
+
pattern: 'DATA',
|
|
22
|
+
eventStartMarker: false,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
type: 'literal',
|
|
26
|
+
pattern: '-',
|
|
27
|
+
eventStartMarker: false,
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
name: 'message',
|
|
31
|
+
type: 'builtin',
|
|
32
|
+
pattern: 'GREEDY_MULTILINE',
|
|
33
|
+
eventStartMarker: false,
|
|
34
|
+
},
|
|
35
|
+
],
|
|
36
|
+
};
|
|
37
|
+
exports.DEFAULT_LOGBACK_SPLIT_CONFIG = {
|
|
38
|
+
fields: [
|
|
39
|
+
{
|
|
40
|
+
name: 'timestamp',
|
|
41
|
+
type: 'builtin',
|
|
42
|
+
pattern: 'ISO8601_STRICT',
|
|
43
|
+
eventStartMarker: true,
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'thread',
|
|
47
|
+
type: 'builtin',
|
|
48
|
+
pattern: 'DATA',
|
|
49
|
+
enclosure: '[]',
|
|
50
|
+
eventStartMarker: false,
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: 'level',
|
|
54
|
+
type: 'builtin',
|
|
55
|
+
pattern: 'LEVEL',
|
|
56
|
+
eventStartMarker: false,
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
name: 'logger',
|
|
60
|
+
type: 'builtin',
|
|
61
|
+
pattern: 'LOGGER',
|
|
62
|
+
eventStartMarker: false,
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
type: 'literal',
|
|
66
|
+
pattern: '-',
|
|
67
|
+
eventStartMarker: false,
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
name: 'message',
|
|
71
|
+
type: 'builtin',
|
|
72
|
+
pattern: 'GREEDY_MULTILINE',
|
|
73
|
+
eventStartMarker: false,
|
|
74
|
+
},
|
|
75
|
+
],
|
|
76
|
+
};
|
|
77
|
+
exports.DEFAULT_LOG4J_SPLIT_CONFIG = {
|
|
78
|
+
fields: [
|
|
79
|
+
{
|
|
80
|
+
name: 'timestamp',
|
|
81
|
+
type: 'builtin',
|
|
82
|
+
pattern: 'ISO8601_LENIENT',
|
|
83
|
+
eventStartMarker: true,
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
name: 'thread',
|
|
87
|
+
type: 'builtin',
|
|
88
|
+
pattern: 'DATA',
|
|
89
|
+
enclosure: '[]',
|
|
90
|
+
eventStartMarker: false,
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
name: 'level',
|
|
94
|
+
type: 'builtin',
|
|
95
|
+
pattern: 'LEVEL',
|
|
96
|
+
eventStartMarker: false,
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
name: 'logger',
|
|
100
|
+
type: 'builtin',
|
|
101
|
+
pattern: 'DATA',
|
|
102
|
+
eventStartMarker: false,
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
type: 'literal',
|
|
106
|
+
pattern: '-',
|
|
107
|
+
eventStartMarker: false,
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
name: 'message',
|
|
111
|
+
type: 'builtin',
|
|
112
|
+
pattern: 'GREEDY_MULTILINE',
|
|
113
|
+
eventStartMarker: false,
|
|
114
|
+
},
|
|
115
|
+
],
|
|
116
|
+
};
|
|
117
|
+
exports.DEFAULT_LOG4J_MDC_SPLIT_CONFIG = {
|
|
118
|
+
fields: [
|
|
119
|
+
{
|
|
120
|
+
name: 'timestamp',
|
|
121
|
+
type: 'builtin',
|
|
122
|
+
pattern: 'SLASH_TIMESTAMP',
|
|
123
|
+
enclosure: '[]',
|
|
124
|
+
eventStartMarker: true,
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
name: 'level',
|
|
128
|
+
type: 'builtin',
|
|
129
|
+
pattern: 'LEVEL',
|
|
130
|
+
enclosure: '[]',
|
|
131
|
+
eventStartMarker: false,
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
name: 'thread',
|
|
135
|
+
type: 'builtin',
|
|
136
|
+
pattern: 'DATA',
|
|
137
|
+
enclosure: '[]',
|
|
138
|
+
eventStartMarker: false,
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
name: 'logNo',
|
|
142
|
+
type: 'builtin',
|
|
143
|
+
pattern: 'INT',
|
|
144
|
+
enclosure: '[]',
|
|
145
|
+
eventStartMarker: false,
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
name: 'logger',
|
|
149
|
+
type: 'builtin',
|
|
150
|
+
pattern: 'LOGGER',
|
|
151
|
+
eventStartMarker: false,
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
type: 'literal',
|
|
155
|
+
pattern: '-',
|
|
156
|
+
eventStartMarker: false,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
name: 'message',
|
|
160
|
+
type: 'builtin',
|
|
161
|
+
pattern: 'GREEDY_MULTILINE',
|
|
162
|
+
eventStartMarker: false,
|
|
163
|
+
},
|
|
164
|
+
],
|
|
165
|
+
};
|
|
166
|
+
exports.DEFAULT_JUL_SPLIT_CONFIG = {
|
|
167
|
+
fields: [
|
|
168
|
+
{
|
|
169
|
+
name: 'timestamp',
|
|
170
|
+
type: 'builtin',
|
|
171
|
+
pattern: 'JUL_TIMESTAMP',
|
|
172
|
+
eventStartMarker: true,
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
name: 'logger',
|
|
176
|
+
type: 'builtin',
|
|
177
|
+
pattern: 'LOGGER',
|
|
178
|
+
eventStartMarker: false,
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
name: 'method',
|
|
182
|
+
type: 'builtin',
|
|
183
|
+
pattern: 'WORD',
|
|
184
|
+
eventStartMarker: false,
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
type: 'line-break-literal',
|
|
188
|
+
eventStartMarker: false,
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
name: 'level',
|
|
192
|
+
type: 'builtin',
|
|
193
|
+
pattern: 'LEVEL',
|
|
194
|
+
eventStartMarker: false,
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
type: 'literal',
|
|
198
|
+
pattern: ':',
|
|
199
|
+
eventStartMarker: false,
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
name: 'message',
|
|
203
|
+
type: 'builtin',
|
|
204
|
+
pattern: 'GREEDY_MULTILINE',
|
|
205
|
+
eventStartMarker: false,
|
|
206
|
+
},
|
|
207
|
+
],
|
|
208
|
+
};
|
|
209
|
+
exports.DEFAULT_SPRING_BOOT_SPLIT_CONFIG = {
|
|
210
|
+
fields: [
|
|
211
|
+
{
|
|
212
|
+
name: 'timestamp',
|
|
213
|
+
type: 'builtin',
|
|
214
|
+
pattern: 'ISO8601_STRICT',
|
|
215
|
+
eventStartMarker: true,
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
name: 'level',
|
|
219
|
+
type: 'builtin',
|
|
220
|
+
pattern: 'LEVEL',
|
|
221
|
+
eventStartMarker: false,
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
name: 'pid',
|
|
225
|
+
type: 'builtin',
|
|
226
|
+
pattern: 'INT',
|
|
227
|
+
eventStartMarker: false,
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
type: 'literal',
|
|
231
|
+
pattern: '---',
|
|
232
|
+
eventStartMarker: false,
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
name: 'thread',
|
|
236
|
+
type: 'builtin',
|
|
237
|
+
pattern: 'DATA',
|
|
238
|
+
enclosure: '[]',
|
|
239
|
+
eventStartMarker: false,
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
name: 'logger',
|
|
243
|
+
type: 'builtin',
|
|
244
|
+
pattern: 'LOGGER',
|
|
245
|
+
eventStartMarker: false,
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
type: 'literal',
|
|
249
|
+
pattern: ':',
|
|
250
|
+
eventStartMarker: false,
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
name: 'message',
|
|
254
|
+
type: 'builtin',
|
|
255
|
+
pattern: 'GREEDY_MULTILINE',
|
|
256
|
+
eventStartMarker: false,
|
|
257
|
+
},
|
|
258
|
+
],
|
|
259
|
+
};
|
|
260
|
+
exports.LOG_EVENT_SPLIT_PRESETS = {
|
|
261
|
+
Simple: {
|
|
262
|
+
split: exports.DEFAULT_SIMPLE_SPLIT_CONFIG,
|
|
263
|
+
logExample: `2026-03-12 10:11:22 DEBUG com.example.UserService - Executing query
|
|
264
|
+
2026-03-12 10:11:22 INFO com.example.UserService - Query finished
|
|
265
|
+
2026-03-12 10:11:23 ERROR com.example.UserService - SQL execution failed`,
|
|
266
|
+
},
|
|
267
|
+
Logback: {
|
|
268
|
+
split: exports.DEFAULT_LOGBACK_SPLIT_CONFIG,
|
|
269
|
+
logExample: `10:11:22.333 [http-nio-8080-exec-1] DEBUG com.example.UserService - Executing query
|
|
270
|
+
10:11:22.444 [http-nio-8080-exec-1] INFO com.example.UserService - Query finished
|
|
271
|
+
10:11:22.555 [http-nio-8080-exec-1] ERROR com.example.UserService - SQL execution failed`,
|
|
272
|
+
},
|
|
273
|
+
Log4j: {
|
|
274
|
+
split: exports.DEFAULT_LOG4J_SPLIT_CONFIG,
|
|
275
|
+
logExample: `2026-03-12 10:11:22,333 [http-nio-8080-exec-1] DEBUG com.example.UserService - Executing query
|
|
276
|
+
2026-03-12 10:11:22,444 [http-nio-8080-exec-1] INFO com.example.UserService - Query finished
|
|
277
|
+
2026-03-12 10:11:22,555 [http-nio-8080-exec-1] ERROR com.example.UserService - SQL execution failed`,
|
|
278
|
+
},
|
|
279
|
+
Log4jMdc: {
|
|
280
|
+
split: exports.DEFAULT_LOG4J_MDC_SPLIT_CONFIG,
|
|
281
|
+
logExample: `[1999/01/01 14:52:34 0502] [DEBUG] [http-nio-8080-exec-1] [30] com.example.UserService - Executing query
|
|
282
|
+
[1999/01/01 14:52:34 0503] [INFO ] [http-nio-8080-exec-1] [30] com.example.UserService - Query finished
|
|
283
|
+
[1999/01/01 14:52:34 0510] [ERROR] [http-nio-8080-exec-1] [30] com.example.UserService - SQL execution failed`,
|
|
284
|
+
},
|
|
285
|
+
JavaUtilLogging: {
|
|
286
|
+
split: exports.DEFAULT_JUL_SPLIT_CONFIG,
|
|
287
|
+
logExample: `Mar 12, 2026 10:11:22 AM com.example.UserService execute
|
|
288
|
+
INFO: Executing query
|
|
289
|
+
Mar 12, 2026 10:11:22 AM com.example.UserService execute
|
|
290
|
+
SEVERE: SQL execution failed`,
|
|
291
|
+
},
|
|
292
|
+
SpringBoot: {
|
|
293
|
+
split: exports.DEFAULT_SPRING_BOOT_SPLIT_CONFIG,
|
|
294
|
+
logExample: `2026-03-12 10:11:22.333 INFO 12345 --- [nio-8080-exec-1] c.example.demo.UserService : Executing query
|
|
295
|
+
2026-03-12 10:11:22.444 DEBUG 12345 --- [nio-8080-exec-1] c.example.demo.UserService : Binding parameters
|
|
296
|
+
2026-03-12 10:11:22.555 ERROR 12345 --- [nio-8080-exec-1] c.example.demo.UserService : SQL execution failed`,
|
|
297
|
+
},
|
|
298
|
+
};
|
|
299
|
+
//# sourceMappingURL=logEventSplitPreset.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logEventSplitPreset.js","sourceRoot":"","sources":["../../../../../src/utils/log/constant/logEventSplitPreset.ts"],"names":[],"mappings":";;;AAOa,QAAA,2BAA2B,GAAwB;IAC9D,MAAM,EAAE;QACN;YACE,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,gBAAgB;YACzB,gBAAgB,EAAE,IAAI;SACvB;QACD;YACE,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,OAAO;YAChB,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,MAAM;YACf,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,GAAG;YACZ,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,kBAAkB;YAC3B,gBAAgB,EAAE,KAAK;SACxB;KACF;CACF,CAAC;AAOW,QAAA,4BAA4B,GAAwB;IAC/D,MAAM,EAAE;QACN;YACE,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,gBAAgB;YACzB,gBAAgB,EAAE,IAAI;SACvB;QACD;YACE,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,MAAM;YACf,SAAS,EAAE,IAAI;YACf,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,OAAO;YAChB,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,QAAQ;YACjB,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,GAAG;YACZ,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,kBAAkB;YAC3B,gBAAgB,EAAE,KAAK;SACxB;KACF;CACF,CAAC;AAOW,QAAA,0BAA0B,GAAwB;IAC7D,MAAM,EAAE;QACN;YACE,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,iBAAiB;YAC1B,gBAAgB,EAAE,IAAI;SACvB;QACD;YACE,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,MAAM;YACf,SAAS,EAAE,IAAI;YACf,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,OAAO;YAChB,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,MAAM;YACf,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,GAAG;YACZ,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,kBAAkB;YAC3B,gBAAgB,EAAE,KAAK;SACxB;KACF;CACF,CAAC;AAEW,QAAA,8BAA8B,GAAwB;IACjE,MAAM,EAAE;QACN;YACE,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,iBAAiB;YAC1B,SAAS,EAAE,IAAI;YACf,gBAAgB,EAAE,IAAI;SACvB;QACD;YACE,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,OAAO;YAChB,SAAS,EAAE,IAAI;YACf,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,MAAM;YACf,SAAS,EAAE,IAAI;YACf,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,KAAK;YACd,SAAS,EAAE,IAAI;YACf,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,QAAQ;YACjB,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,GAAG;YACZ,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,kBAAkB;YAC3B,gBAAgB,EAAE,KAAK;SACxB;KACF;CACF,CAAC;AAQW,QAAA,wBAAwB,GAAwB;IAC3D,MAAM,EAAE;QACN;YACE,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,eAAe;YACxB,gBAAgB,EAAE,IAAI;SACvB;QACD;YACE,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,QAAQ;YACjB,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,MAAM;YACf,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,oBAAoB;YAC1B,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,OAAO;YAChB,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,GAAG;YACZ,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,kBAAkB;YAC3B,gBAAgB,EAAE,KAAK;SACxB;KACF;CACF,CAAC;AAEW,QAAA,gCAAgC,GAAwB;IACnE,MAAM,EAAE;QACN;YACE,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,gBAAgB;YACzB,gBAAgB,EAAE,IAAI;SACvB;QAED;YACE,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,OAAO;YAChB,gBAAgB,EAAE,KAAK;SACxB;QAGD;YACE,IAAI,EAAE,KAAK;YACX,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,KAAK;YACd,gBAAgB,EAAE,KAAK;SACxB;QAGD;YACE,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,KAAK;YACd,gBAAgB,EAAE,KAAK;SACxB;QAED;YACE,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,MAAM;YACf,SAAS,EAAE,IAAI;YACf,gBAAgB,EAAE,KAAK;SACxB;QAED;YACE,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,QAAQ;YACjB,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,GAAG;YACZ,gBAAgB,EAAE,KAAK;SACxB;QACD;YACE,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,kBAAkB;YAC3B,gBAAgB,EAAE,KAAK;SACxB;KACF;CACF,CAAC;AAMW,QAAA,uBAAuB,GAAG;IACrC,MAAM,EAAE;QACN,KAAK,EAAE,mCAA2B;QAClC,UAAU,EAAE;;yEAEyD;KACtE;IACD,OAAO,EAAE;QACP,KAAK,EAAE,oCAA4B;QACnC,UAAU,EAAE;;yFAEyE;KACtF;IACD,KAAK,EAAE;QACL,KAAK,EAAE,kCAA0B;QACjC,UAAU,EAAE;;oGAEoF;KACjG;IACD,QAAQ,EAAE;QACR,KAAK,EAAE,sCAA8B;QACrC,UAAU,EAAE;;8GAE8F;KAC3G;IACD,eAAe,EAAE;QACf,KAAK,EAAE,gCAAwB;QAC/B,UAAU,EAAE;;;6BAGa;KAC1B;IACD,UAAU,EAAE;QACV,KAAK,EAAE,wCAAgC;QACvC,UAAU,EAAE;;4GAE4F;KACzG;CAIF,CAAC"}
|