pino-testkit 10.4.5

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.
Files changed (196) hide show
  1. package/.nojekyll +0 -0
  2. package/.prettierignore +1 -0
  3. package/CNAME +1 -0
  4. package/CONTRIBUTING.md +30 -0
  5. package/LICENSE +21 -0
  6. package/README.md +175 -0
  7. package/SECURITY.md +87 -0
  8. package/benchmarks/basic.bench.js +95 -0
  9. package/benchmarks/child-child.bench.js +52 -0
  10. package/benchmarks/child-creation.bench.js +73 -0
  11. package/benchmarks/child.bench.js +62 -0
  12. package/benchmarks/deep-object.bench.js +88 -0
  13. package/benchmarks/formatters.bench.js +50 -0
  14. package/benchmarks/internal/custom-levels.js +67 -0
  15. package/benchmarks/internal/just-pino-heavy.bench.js +76 -0
  16. package/benchmarks/internal/just-pino.bench.js +182 -0
  17. package/benchmarks/internal/parent-vs-child.bench.js +75 -0
  18. package/benchmarks/internal/redact.bench.js +86 -0
  19. package/benchmarks/long-string.bench.js +81 -0
  20. package/benchmarks/multi-arg.bench.js +193 -0
  21. package/benchmarks/multistream.js +98 -0
  22. package/benchmarks/object.bench.js +82 -0
  23. package/benchmarks/utils/generate-benchmark-doc.js +36 -0
  24. package/benchmarks/utils/runbench.js +138 -0
  25. package/benchmarks/utils/wrap-log-level.js +55 -0
  26. package/bin.js +6 -0
  27. package/browser.js +547 -0
  28. package/build/sync-version.js +25 -0
  29. package/docs/api.md +1593 -0
  30. package/docs/asynchronous.md +40 -0
  31. package/docs/benchmarks.md +55 -0
  32. package/docs/browser.md +278 -0
  33. package/docs/bundling.md +40 -0
  34. package/docs/child-loggers.md +95 -0
  35. package/docs/diagnostics.md +16 -0
  36. package/docs/ecosystem.md +86 -0
  37. package/docs/help.md +345 -0
  38. package/docs/lts.md +64 -0
  39. package/docs/pretty.md +35 -0
  40. package/docs/redaction.md +135 -0
  41. package/docs/transports.md +1376 -0
  42. package/docs/web.md +309 -0
  43. package/eslint.config.js +28 -0
  44. package/examples/basic.js +43 -0
  45. package/examples/transport.js +68 -0
  46. package/favicon.ico +0 -0
  47. package/file.js +12 -0
  48. package/inc-version.sh +42 -0
  49. package/index.html +55 -0
  50. package/lib/caller.js +30 -0
  51. package/lib/constants.js +28 -0
  52. package/lib/contract.js +8 -0
  53. package/lib/deprecations.js +8 -0
  54. package/lib/levels.js +241 -0
  55. package/lib/meta.js +3 -0
  56. package/lib/multistream.js +203 -0
  57. package/lib/proto.js +256 -0
  58. package/lib/redaction.js +114 -0
  59. package/lib/symbols.js +74 -0
  60. package/lib/time.js +39 -0
  61. package/lib/tools.js +427 -0
  62. package/lib/transport-stream.js +56 -0
  63. package/lib/transport.js +289 -0
  64. package/lib/worker.js +194 -0
  65. package/package.json +119 -0
  66. package/pino.d.ts +908 -0
  67. package/pino.js +240 -0
  68. package/test/basic.test.js +886 -0
  69. package/test/broken-pipe.test.js +59 -0
  70. package/test/browser-child.test.js +132 -0
  71. package/test/browser-disabled.test.js +87 -0
  72. package/test/browser-early-console-freeze.test.js +12 -0
  73. package/test/browser-is-level-enabled.test.js +101 -0
  74. package/test/browser-levels.test.js +241 -0
  75. package/test/browser-serializers.test.js +352 -0
  76. package/test/browser-timestamp.test.js +88 -0
  77. package/test/browser-transmit.test.js +417 -0
  78. package/test/browser.test.js +698 -0
  79. package/test/complex-objects.test.js +36 -0
  80. package/test/crlf.test.js +34 -0
  81. package/test/custom-levels.test.js +267 -0
  82. package/test/diagnostics.test.js +107 -0
  83. package/test/error-key.test.js +37 -0
  84. package/test/error.test.js +403 -0
  85. package/test/escaping.test.js +93 -0
  86. package/test/esm/esm.mjs +14 -0
  87. package/test/esm/index.test.js +21 -0
  88. package/test/esm/named-exports.mjs +29 -0
  89. package/test/exit.test.js +79 -0
  90. package/test/fixtures/broken-pipe/basic.js +9 -0
  91. package/test/fixtures/broken-pipe/destination.js +10 -0
  92. package/test/fixtures/broken-pipe/syncfalse.js +12 -0
  93. package/test/fixtures/console-transport.js +13 -0
  94. package/test/fixtures/crashing-transport.js +13 -0
  95. package/test/fixtures/default-exit.js +8 -0
  96. package/test/fixtures/destination-exit.js +8 -0
  97. package/test/fixtures/eval/index.js +13 -0
  98. package/test/fixtures/eval/node_modules/14-files.js +3 -0
  99. package/test/fixtures/eval/node_modules/2-files.js +3 -0
  100. package/test/fixtures/eval/node_modules/file1.js +5 -0
  101. package/test/fixtures/eval/node_modules/file10.js +5 -0
  102. package/test/fixtures/eval/node_modules/file11.js +5 -0
  103. package/test/fixtures/eval/node_modules/file12.js +5 -0
  104. package/test/fixtures/eval/node_modules/file13.js +5 -0
  105. package/test/fixtures/eval/node_modules/file14.js +11 -0
  106. package/test/fixtures/eval/node_modules/file2.js +5 -0
  107. package/test/fixtures/eval/node_modules/file3.js +5 -0
  108. package/test/fixtures/eval/node_modules/file4.js +5 -0
  109. package/test/fixtures/eval/node_modules/file5.js +5 -0
  110. package/test/fixtures/eval/node_modules/file6.js +5 -0
  111. package/test/fixtures/eval/node_modules/file7.js +5 -0
  112. package/test/fixtures/eval/node_modules/file8.js +5 -0
  113. package/test/fixtures/eval/node_modules/file9.js +5 -0
  114. package/test/fixtures/noop-transport.js +10 -0
  115. package/test/fixtures/pretty/null-prototype.js +8 -0
  116. package/test/fixtures/stdout-hack-protection.js +11 -0
  117. package/test/fixtures/syncfalse-child.js +6 -0
  118. package/test/fixtures/syncfalse-exit.js +9 -0
  119. package/test/fixtures/syncfalse-flush-exit.js +10 -0
  120. package/test/fixtures/syncfalse.js +6 -0
  121. package/test/fixtures/syntax-error-esm.mjs +2 -0
  122. package/test/fixtures/to-file-transport-with-transform.js +20 -0
  123. package/test/fixtures/to-file-transport.js +13 -0
  124. package/test/fixtures/to-file-transport.mjs +8 -0
  125. package/test/fixtures/transport/index.js +12 -0
  126. package/test/fixtures/transport/package.json +5 -0
  127. package/test/fixtures/transport-exit-immediately-with-async-dest.js +16 -0
  128. package/test/fixtures/transport-exit-immediately.js +11 -0
  129. package/test/fixtures/transport-exit-on-ready.js +12 -0
  130. package/test/fixtures/transport-invalid-node-options.js +26 -0
  131. package/test/fixtures/transport-main.js +9 -0
  132. package/test/fixtures/transport-many-lines.js +29 -0
  133. package/test/fixtures/transport-preload-main.mjs +13 -0
  134. package/test/fixtures/transport-preload.mjs +13 -0
  135. package/test/fixtures/transport-string-stdout.js +9 -0
  136. package/test/fixtures/transport-transform.js +21 -0
  137. package/test/fixtures/transport-uses-pino-config.js +33 -0
  138. package/test/fixtures/transport-with-on-exit.js +12 -0
  139. package/test/fixtures/transport-worker-data.js +19 -0
  140. package/test/fixtures/transport-worker-name.js +24 -0
  141. package/test/fixtures/transport-worker.js +15 -0
  142. package/test/fixtures/transport-wrong-export-type.js +3 -0
  143. package/test/fixtures/ts/to-file-transport-native.mts +15 -0
  144. package/test/fixtures/ts/to-file-transport-with-transform.ts +18 -0
  145. package/test/fixtures/ts/to-file-transport.ts +11 -0
  146. package/test/fixtures/ts/transpile.cjs +36 -0
  147. package/test/fixtures/ts/transport-exit-immediately-with-async-dest.ts +15 -0
  148. package/test/fixtures/ts/transport-exit-immediately.ts +10 -0
  149. package/test/fixtures/ts/transport-exit-on-ready.ts +11 -0
  150. package/test/fixtures/ts/transport-main.ts +8 -0
  151. package/test/fixtures/ts/transport-string-stdout.ts +8 -0
  152. package/test/fixtures/ts/transport-worker.ts +14 -0
  153. package/test/formatters.test.js +364 -0
  154. package/test/helper.d.ts +4 -0
  155. package/test/helper.js +155 -0
  156. package/test/hooks.test.js +114 -0
  157. package/test/http.test.js +214 -0
  158. package/test/internals/version.test.js +17 -0
  159. package/test/is-level-enabled.test.js +179 -0
  160. package/test/jest/basic.spec.js +10 -0
  161. package/test/levels.test.js +810 -0
  162. package/test/metadata.test.js +120 -0
  163. package/test/mixin-merge-strategy.test.js +57 -0
  164. package/test/mixin.test.js +241 -0
  165. package/test/multistream.test.js +729 -0
  166. package/test/redact.test.js +893 -0
  167. package/test/serializers.test.js +257 -0
  168. package/test/stdout-protection.test.js +41 -0
  169. package/test/syncfalse.test.js +186 -0
  170. package/test/timestamp-nano.test.js +37 -0
  171. package/test/timestamp.test.js +124 -0
  172. package/test/transport/big.test.js +42 -0
  173. package/test/transport/bundlers-support.test.js +99 -0
  174. package/test/transport/caller.test.js +24 -0
  175. package/test/transport/core.test.js +733 -0
  176. package/test/transport/core.transpiled.test.ts +114 -0
  177. package/test/transport/crash.test.js +36 -0
  178. package/test/transport/module-link.test.js +241 -0
  179. package/test/transport/native-type-stripping.test.mjs +151 -0
  180. package/test/transport/node-options.test.js +116 -0
  181. package/test/transport/pipeline.test.js +137 -0
  182. package/test/transport/preload.test.js +54 -0
  183. package/test/transport/repl.test.js +15 -0
  184. package/test/transport/sync-false.test.js +67 -0
  185. package/test/transport/sync-true.test.js +57 -0
  186. package/test/transport/targets.test.js +48 -0
  187. package/test/transport/uses-pino-config.test.js +166 -0
  188. package/test/transport-stream.test.js +40 -0
  189. package/test/types/pino-import.test-d.cts +30 -0
  190. package/test/types/pino-multistream.test-d.ts +28 -0
  191. package/test/types/pino-top-export.test-d.ts +34 -0
  192. package/test/types/pino-transport.test-d.ts +156 -0
  193. package/test/types/pino-type-only.test-d.ts +75 -0
  194. package/test/types/pino.test-d.ts +683 -0
  195. package/test/types/pino.ts +91 -0
  196. package/tsconfig.json +14 -0
package/lib/levels.js ADDED
@@ -0,0 +1,241 @@
1
+ 'use strict'
2
+ /* eslint no-prototype-builtins: 0 */
3
+ const {
4
+ lsCacheSym,
5
+ levelValSym,
6
+ useOnlyCustomLevelsSym,
7
+ streamSym,
8
+ formattersSym,
9
+ hooksSym,
10
+ levelCompSym
11
+ } = require('./symbols')
12
+ const { noop, genLog } = require('./tools')
13
+ const { DEFAULT_LEVELS, SORTING_ORDER } = require('./constants')
14
+
15
+ const levelMethods = {
16
+ fatal: (hook) => {
17
+ const logFatal = genLog(DEFAULT_LEVELS.fatal, hook)
18
+ return function (...args) {
19
+ const stream = this[streamSym]
20
+ logFatal.call(this, ...args)
21
+ if (typeof stream.flushSync === 'function') {
22
+ try {
23
+ stream.flushSync()
24
+ } catch (e) {
25
+ // https://github.com/pinojs/pino/pull/740#discussion_r346788313
26
+ }
27
+ }
28
+ }
29
+ },
30
+ error: (hook) => genLog(DEFAULT_LEVELS.error, hook),
31
+ warn: (hook) => genLog(DEFAULT_LEVELS.warn, hook),
32
+ info: (hook) => genLog(DEFAULT_LEVELS.info, hook),
33
+ debug: (hook) => genLog(DEFAULT_LEVELS.debug, hook),
34
+ trace: (hook) => genLog(DEFAULT_LEVELS.trace, hook)
35
+ }
36
+
37
+ const nums = Object.keys(DEFAULT_LEVELS).reduce((o, k) => {
38
+ o[DEFAULT_LEVELS[k]] = k
39
+ return o
40
+ }, {})
41
+
42
+ const initialLsCache = Object.keys(nums).reduce((o, k) => {
43
+ o[k] = '{"level":' + Number(k)
44
+ return o
45
+ }, {})
46
+
47
+ function genLsCache (instance) {
48
+ const formatter = instance[formattersSym].level
49
+ const { labels } = instance.levels
50
+ const cache = {}
51
+ for (const label in labels) {
52
+ const level = formatter(labels[label], Number(label))
53
+ cache[label] = JSON.stringify(level).slice(0, -1)
54
+ }
55
+ instance[lsCacheSym] = cache
56
+ return instance
57
+ }
58
+
59
+ function isStandardLevel (level, useOnlyCustomLevels) {
60
+ if (useOnlyCustomLevels) {
61
+ return false
62
+ }
63
+
64
+ switch (level) {
65
+ case 'fatal':
66
+ case 'error':
67
+ case 'warn':
68
+ case 'info':
69
+ case 'debug':
70
+ case 'trace':
71
+ return true
72
+ default:
73
+ return false
74
+ }
75
+ }
76
+
77
+ function setLevel (level) {
78
+ const { labels, values } = this.levels
79
+ if (typeof level === 'number') {
80
+ if (labels[level] === undefined) throw Error('unknown level value' + level)
81
+ level = labels[level]
82
+ }
83
+ if (values[level] === undefined) throw Error('unknown level ' + level)
84
+ const preLevelVal = this[levelValSym]
85
+ const levelVal = this[levelValSym] = values[level]
86
+ const useOnlyCustomLevelsVal = this[useOnlyCustomLevelsSym]
87
+ const levelComparison = this[levelCompSym]
88
+ const hook = this[hooksSym].logMethod
89
+
90
+ for (const key in values) {
91
+ if (levelComparison(values[key], levelVal) === false) {
92
+ this[key] = noop
93
+ continue
94
+ }
95
+ this[key] = isStandardLevel(key, useOnlyCustomLevelsVal) ? levelMethods[key](hook) : genLog(values[key], hook)
96
+ }
97
+
98
+ this.emit(
99
+ 'level-change',
100
+ level,
101
+ levelVal,
102
+ labels[preLevelVal],
103
+ preLevelVal,
104
+ this
105
+ )
106
+ }
107
+
108
+ function getLevel (level) {
109
+ const { levels, levelVal } = this
110
+ // protection against potential loss of Pino scope from serializers (edge case with circular refs - https://github.com/pinojs/pino/issues/833)
111
+ return (levels && levels.labels) ? levels.labels[levelVal] : ''
112
+ }
113
+
114
+ function isLevelEnabled (logLevel) {
115
+ const { values } = this.levels
116
+ const logLevelVal = values[logLevel]
117
+ return logLevelVal !== undefined && this[levelCompSym](logLevelVal, this[levelValSym])
118
+ }
119
+
120
+ /**
121
+ * Determine if the given `current` level is enabled by comparing it
122
+ * against the current threshold (`expected`).
123
+ *
124
+ * @param {SORTING_ORDER} direction comparison direction "ASC" or "DESC"
125
+ * @param {number} current current log level number representation
126
+ * @param {number} expected threshold value to compare with
127
+ * @returns {boolean}
128
+ */
129
+ function compareLevel (direction, current, expected) {
130
+ if (direction === SORTING_ORDER.DESC) {
131
+ return current <= expected
132
+ }
133
+
134
+ return current >= expected
135
+ }
136
+
137
+ /**
138
+ * Create a level comparison function based on `levelComparison`
139
+ * it could a default function which compares levels either in "ascending" or "descending" order or custom comparison function
140
+ *
141
+ * @param {SORTING_ORDER | Function} levelComparison sort levels order direction or custom comparison function
142
+ * @returns Function
143
+ */
144
+ function genLevelComparison (levelComparison) {
145
+ if (typeof levelComparison === 'string') {
146
+ return compareLevel.bind(null, levelComparison)
147
+ }
148
+
149
+ return levelComparison
150
+ }
151
+
152
+ function mappings (customLevels = null, useOnlyCustomLevels = false) {
153
+ const customNums = customLevels
154
+ /* eslint-disable */
155
+ ? Object.keys(customLevels).reduce((o, k) => {
156
+ o[customLevels[k]] = k
157
+ return o
158
+ }, {})
159
+ : null
160
+ /* eslint-enable */
161
+
162
+ const labels = Object.assign(
163
+ Object.create(Object.prototype, { Infinity: { value: 'silent' } }),
164
+ useOnlyCustomLevels ? null : nums,
165
+ customNums
166
+ )
167
+ const values = Object.assign(
168
+ Object.create(Object.prototype, { silent: { value: Infinity } }),
169
+ useOnlyCustomLevels ? null : DEFAULT_LEVELS,
170
+ customLevels
171
+ )
172
+ return { labels, values }
173
+ }
174
+
175
+ function assertDefaultLevelFound (defaultLevel, customLevels, useOnlyCustomLevels) {
176
+ if (typeof defaultLevel === 'number') {
177
+ const values = [].concat(
178
+ Object.keys(customLevels || {}).map(key => customLevels[key]),
179
+ useOnlyCustomLevels ? [] : Object.keys(nums).map(level => +level),
180
+ Infinity
181
+ )
182
+ if (!values.includes(defaultLevel)) {
183
+ throw Error(`default level:${defaultLevel} must be included in custom levels`)
184
+ }
185
+ return
186
+ }
187
+
188
+ const labels = Object.assign(
189
+ Object.create(Object.prototype, { silent: { value: Infinity } }),
190
+ useOnlyCustomLevels ? null : DEFAULT_LEVELS,
191
+ customLevels
192
+ )
193
+ if (!(defaultLevel in labels)) {
194
+ throw Error(`default level:${defaultLevel} must be included in custom levels`)
195
+ }
196
+ }
197
+
198
+ function assertNoLevelCollisions (levels, customLevels) {
199
+ const { labels, values } = levels
200
+ for (const k in customLevels) {
201
+ if (k in values) {
202
+ throw Error('levels cannot be overridden')
203
+ }
204
+ if (customLevels[k] in labels) {
205
+ throw Error('pre-existing level values cannot be used for new levels')
206
+ }
207
+ }
208
+ }
209
+
210
+ /**
211
+ * Validates whether `levelComparison` is correct
212
+ *
213
+ * @throws Error
214
+ * @param {SORTING_ORDER | Function} levelComparison - value to validate
215
+ * @returns
216
+ */
217
+ function assertLevelComparison (levelComparison) {
218
+ if (typeof levelComparison === 'function') {
219
+ return
220
+ }
221
+
222
+ if (typeof levelComparison === 'string' && Object.values(SORTING_ORDER).includes(levelComparison)) {
223
+ return
224
+ }
225
+
226
+ throw new Error('Levels comparison should be one of "ASC", "DESC" or "function" type')
227
+ }
228
+
229
+ module.exports = {
230
+ initialLsCache,
231
+ genLsCache,
232
+ levelMethods,
233
+ getLevel,
234
+ setLevel,
235
+ isLevelEnabled,
236
+ mappings,
237
+ assertNoLevelCollisions,
238
+ assertDefaultLevelFound,
239
+ genLevelComparison,
240
+ assertLevelComparison
241
+ }
package/lib/meta.js ADDED
@@ -0,0 +1,3 @@
1
+ 'use strict'
2
+
3
+ module.exports = { version: '10.4.5' }
@@ -0,0 +1,203 @@
1
+ 'use strict'
2
+
3
+ const metadata = Symbol.for('pino.metadata')
4
+ const { DEFAULT_LEVELS } = require('./constants')
5
+
6
+ const DEFAULT_INFO_LEVEL = DEFAULT_LEVELS.info
7
+
8
+ function multistream (streamsArray, opts) {
9
+ streamsArray = streamsArray || []
10
+ opts = opts || { dedupe: false }
11
+
12
+ const streamLevels = Object.create(DEFAULT_LEVELS)
13
+ streamLevels.silent = Infinity
14
+ if (opts.levels && typeof opts.levels === 'object') {
15
+ Object.keys(opts.levels).forEach(i => {
16
+ streamLevels[i] = opts.levels[i]
17
+ })
18
+ }
19
+
20
+ const res = {
21
+ write,
22
+ add,
23
+ remove,
24
+ emit,
25
+ flushSync,
26
+ end,
27
+ minLevel: 0,
28
+ lastId: 0,
29
+ streams: [],
30
+ clone,
31
+ [metadata]: true,
32
+ streamLevels
33
+ }
34
+
35
+ if (Array.isArray(streamsArray)) {
36
+ streamsArray.forEach(add, res)
37
+ } else {
38
+ add.call(res, streamsArray)
39
+ }
40
+
41
+ // clean this object up
42
+ // or it will stay allocated forever
43
+ // as it is closed on the following closures
44
+ streamsArray = null
45
+
46
+ return res
47
+
48
+ // we can exit early because the streams are ordered by level
49
+ function write (data) {
50
+ let dest
51
+ const level = this.lastLevel
52
+ const { streams } = this
53
+ // for handling situation when several streams has the same level
54
+ let recordedLevel = 0
55
+ let stream
56
+
57
+ // if dedupe set to true we send logs to the stream with the highest level
58
+ // therefore, we have to change sorting order
59
+ for (let i = initLoopVar(streams.length, opts.dedupe); checkLoopVar(i, streams.length, opts.dedupe); i = adjustLoopVar(i, opts.dedupe)) {
60
+ dest = streams[i]
61
+ if (dest.level <= level) {
62
+ if (recordedLevel !== 0 && recordedLevel !== dest.level) {
63
+ break
64
+ }
65
+ stream = dest.stream
66
+ if (stream[metadata]) {
67
+ const { lastTime, lastMsg, lastObj, lastLogger } = this
68
+ stream.lastLevel = level
69
+ stream.lastTime = lastTime
70
+ stream.lastMsg = lastMsg
71
+ stream.lastObj = lastObj
72
+ stream.lastLogger = lastLogger
73
+ }
74
+ stream.write(data)
75
+ if (opts.dedupe) {
76
+ recordedLevel = dest.level
77
+ }
78
+ } else if (!opts.dedupe) {
79
+ break
80
+ }
81
+ }
82
+ }
83
+
84
+ function emit (...args) {
85
+ for (const { stream } of this.streams) {
86
+ if (typeof stream.emit === 'function') {
87
+ stream.emit(...args)
88
+ }
89
+ }
90
+ }
91
+
92
+ function flushSync () {
93
+ for (const { stream } of this.streams) {
94
+ if (typeof stream.flushSync === 'function') {
95
+ stream.flushSync()
96
+ }
97
+ }
98
+ }
99
+
100
+ function add (dest) {
101
+ if (!dest) {
102
+ return res
103
+ }
104
+
105
+ // Check that dest implements either StreamEntry or DestinationStream
106
+ const isStream = typeof dest.write === 'function' || dest.stream
107
+ const stream_ = dest.write ? dest : dest.stream
108
+ // This is necessary to provide a meaningful error message, otherwise it throws somewhere inside write()
109
+ if (!isStream) {
110
+ throw Error('stream object needs to implement either StreamEntry or DestinationStream interface')
111
+ }
112
+
113
+ const { streams, streamLevels } = this
114
+
115
+ let level
116
+ if (typeof dest.levelVal === 'number') {
117
+ level = dest.levelVal
118
+ } else if (typeof dest.level === 'string') {
119
+ level = streamLevels[dest.level]
120
+ } else if (typeof dest.level === 'number') {
121
+ level = dest.level
122
+ } else {
123
+ level = DEFAULT_INFO_LEVEL
124
+ }
125
+
126
+ const dest_ = {
127
+ stream: stream_,
128
+ level,
129
+ levelVal: undefined,
130
+ id: ++res.lastId
131
+ }
132
+
133
+ streams.unshift(dest_)
134
+ streams.sort(compareByLevel)
135
+
136
+ this.minLevel = streams[0].level
137
+
138
+ return res
139
+ }
140
+
141
+ function remove (id) {
142
+ const { streams } = this
143
+ const index = streams.findIndex(s => s.id === id)
144
+
145
+ if (index >= 0) {
146
+ streams.splice(index, 1)
147
+ streams.sort(compareByLevel)
148
+ this.minLevel = streams.length > 0 ? streams[0].level : -1
149
+ }
150
+
151
+ return res
152
+ }
153
+
154
+ function end () {
155
+ for (const { stream } of this.streams) {
156
+ if (typeof stream.flushSync === 'function') {
157
+ stream.flushSync()
158
+ }
159
+ stream.end()
160
+ }
161
+ }
162
+
163
+ function clone (level) {
164
+ const streams = new Array(this.streams.length)
165
+
166
+ for (let i = 0; i < streams.length; i++) {
167
+ streams[i] = {
168
+ level,
169
+ stream: this.streams[i].stream
170
+ }
171
+ }
172
+
173
+ return {
174
+ write,
175
+ add,
176
+ remove,
177
+ minLevel: level,
178
+ streams,
179
+ clone,
180
+ emit,
181
+ flushSync,
182
+ [metadata]: true
183
+ }
184
+ }
185
+ }
186
+
187
+ function compareByLevel (a, b) {
188
+ return a.level - b.level
189
+ }
190
+
191
+ function initLoopVar (length, dedupe) {
192
+ return dedupe ? length - 1 : 0
193
+ }
194
+
195
+ function adjustLoopVar (i, dedupe) {
196
+ return dedupe ? i - 1 : i + 1
197
+ }
198
+
199
+ function checkLoopVar (i, length, dedupe) {
200
+ return dedupe ? i >= 0 : i < length
201
+ }
202
+
203
+ module.exports = multistream
package/lib/proto.js ADDED
@@ -0,0 +1,256 @@
1
+ 'use strict'
2
+
3
+ /* eslint no-prototype-builtins: 0 */
4
+
5
+ const { EventEmitter } = require('node:events')
6
+ const {
7
+ lsCacheSym,
8
+ levelValSym,
9
+ setLevelSym,
10
+ getLevelSym,
11
+ chindingsSym,
12
+ mixinSym,
13
+ asJsonSym,
14
+ writeSym,
15
+ mixinMergeStrategySym,
16
+ timeSym,
17
+ timeSliceIndexSym,
18
+ streamSym,
19
+ serializersSym,
20
+ formattersSym,
21
+ errorKeySym,
22
+ messageKeySym,
23
+ useOnlyCustomLevelsSym,
24
+ needsMetadataGsym,
25
+ redactFmtSym,
26
+ stringifySym,
27
+ formatOptsSym,
28
+ stringifiersSym,
29
+ msgPrefixSym,
30
+ hooksSym
31
+ } = require('./symbols')
32
+ const {
33
+ getLevel,
34
+ setLevel,
35
+ isLevelEnabled,
36
+ mappings,
37
+ initialLsCache,
38
+ genLsCache,
39
+ assertNoLevelCollisions
40
+ } = require('./levels')
41
+ const {
42
+ asChindings,
43
+ asJson,
44
+ buildFormatters,
45
+ stringify,
46
+ noop
47
+ } = require('./tools')
48
+ const {
49
+ version
50
+ } = require('./meta')
51
+ const redaction = require('./redaction')
52
+
53
+ // note: use of class is satirical
54
+ // https://github.com/pinojs/pino/pull/433#pullrequestreview-127703127
55
+ const constructor = class Pino {}
56
+ const prototype = {
57
+ constructor,
58
+ child,
59
+ bindings,
60
+ setBindings,
61
+ flush,
62
+ isLevelEnabled,
63
+ version,
64
+ get level () { return this[getLevelSym]() },
65
+ set level (lvl) { this[setLevelSym](lvl) },
66
+ get levelVal () { return this[levelValSym] },
67
+ set levelVal (n) { throw Error('levelVal is read-only') },
68
+ get msgPrefix () { return this[msgPrefixSym] },
69
+ get [Symbol.toStringTag] () { return 'Pino' },
70
+ [lsCacheSym]: initialLsCache,
71
+ [writeSym]: write,
72
+ [asJsonSym]: asJson,
73
+ [getLevelSym]: getLevel,
74
+ [setLevelSym]: setLevel
75
+ }
76
+
77
+ Object.setPrototypeOf(prototype, EventEmitter.prototype)
78
+
79
+ // exporting and consuming the prototype object using factory pattern fixes scoping issues with getters when serializing
80
+ module.exports = function () {
81
+ return Object.create(prototype)
82
+ }
83
+
84
+ const resetChildingsFormatter = bindings => bindings
85
+ function child (bindings, options) {
86
+ if (!bindings) {
87
+ throw Error('missing bindings for child Pino')
88
+ }
89
+ const serializers = this[serializersSym]
90
+ const formatters = this[formattersSym]
91
+ const instance = Object.create(this)
92
+
93
+ // If an `options` object was not supplied, we can improve
94
+ // the performance of child creation by skipping
95
+ // the checks for set options and simply return
96
+ // a baseline instance.
97
+ if (options == null) {
98
+ if (instance[formattersSym].bindings !== resetChildingsFormatter) {
99
+ instance[formattersSym] = buildFormatters(
100
+ formatters.level,
101
+ resetChildingsFormatter,
102
+ formatters.log
103
+ )
104
+ }
105
+
106
+ instance[chindingsSym] = asChindings(instance, bindings)
107
+
108
+ if (this.onChild !== noop) {
109
+ this.onChild(instance)
110
+ }
111
+
112
+ return instance
113
+ }
114
+
115
+ if (options.hasOwnProperty('serializers') === true) {
116
+ instance[serializersSym] = Object.create(null)
117
+
118
+ for (const k in serializers) {
119
+ instance[serializersSym][k] = serializers[k]
120
+ }
121
+ const parentSymbols = Object.getOwnPropertySymbols(serializers)
122
+ /* eslint no-var: off */
123
+ for (var i = 0; i < parentSymbols.length; i++) {
124
+ const ks = parentSymbols[i]
125
+ instance[serializersSym][ks] = serializers[ks]
126
+ }
127
+
128
+ for (const bk in options.serializers) {
129
+ instance[serializersSym][bk] = options.serializers[bk]
130
+ }
131
+ const bindingsSymbols = Object.getOwnPropertySymbols(options.serializers)
132
+ for (var bi = 0; bi < bindingsSymbols.length; bi++) {
133
+ const bks = bindingsSymbols[bi]
134
+ instance[serializersSym][bks] = options.serializers[bks]
135
+ }
136
+ } else instance[serializersSym] = serializers
137
+ if (options.hasOwnProperty('formatters')) {
138
+ const { level, bindings: chindings, log } = options.formatters
139
+ instance[formattersSym] = buildFormatters(
140
+ level || formatters.level,
141
+ chindings || resetChildingsFormatter,
142
+ log || formatters.log
143
+ )
144
+ } else {
145
+ instance[formattersSym] = buildFormatters(
146
+ formatters.level,
147
+ resetChildingsFormatter,
148
+ formatters.log
149
+ )
150
+ }
151
+ if (options.hasOwnProperty('customLevels') === true) {
152
+ assertNoLevelCollisions(this.levels, options.customLevels)
153
+ instance.levels = mappings(options.customLevels, instance[useOnlyCustomLevelsSym])
154
+ genLsCache(instance)
155
+ }
156
+
157
+ // redact must place before asChindings and only replace if exist
158
+ if ((typeof options.redact === 'object' && options.redact !== null) || Array.isArray(options.redact)) {
159
+ instance.redact = options.redact // replace redact directly
160
+ const stringifiers = redaction(instance.redact, stringify)
161
+ const formatOpts = { stringify: stringifiers[redactFmtSym] }
162
+ instance[stringifySym] = stringify
163
+ instance[stringifiersSym] = stringifiers
164
+ instance[formatOptsSym] = formatOpts
165
+ }
166
+
167
+ if (typeof options.msgPrefix === 'string') {
168
+ instance[msgPrefixSym] = (this[msgPrefixSym] || '') + options.msgPrefix
169
+ }
170
+
171
+ instance[chindingsSym] = asChindings(instance, bindings)
172
+ if ((options.level !== undefined && options.level !== this.level) || options.hasOwnProperty('customLevels')) {
173
+ const childLevel = options.level || this.level
174
+ instance[setLevelSym](childLevel)
175
+ }
176
+ this.onChild(instance)
177
+ return instance
178
+ }
179
+
180
+ function bindings () {
181
+ const chindings = this[chindingsSym]
182
+ const chindingsJson = `{${chindings.substr(1)}}` // at least contains ,"pid":7068,"hostname":"myMac"
183
+ const bindingsFromJson = JSON.parse(chindingsJson)
184
+ delete bindingsFromJson.pid
185
+ delete bindingsFromJson.hostname
186
+ return bindingsFromJson
187
+ }
188
+
189
+ function setBindings (newBindings) {
190
+ const chindings = asChindings(this, newBindings)
191
+ this[chindingsSym] = chindings
192
+ }
193
+
194
+ /**
195
+ * Default strategy for creating `mergeObject` from arguments and the result from `mixin()`.
196
+ * Fields from `mergeObject` have higher priority in this strategy.
197
+ *
198
+ * @param {Object} mergeObject The object a user has supplied to the logging function.
199
+ * @param {Object} mixinObject The result of the `mixin` method.
200
+ * @return {Object}
201
+ */
202
+ function defaultMixinMergeStrategy (mergeObject, mixinObject) {
203
+ return Object.assign(mixinObject, mergeObject)
204
+ }
205
+
206
+ function write (_obj, msg, num) {
207
+ const t = this[timeSym]()
208
+ const mixin = this[mixinSym]
209
+ const errorKey = this[errorKeySym]
210
+ const messageKey = this[messageKeySym]
211
+ const mixinMergeStrategy = this[mixinMergeStrategySym] || defaultMixinMergeStrategy
212
+ let obj
213
+ const streamWriteHook = this[hooksSym].streamWrite
214
+
215
+ if (_obj === undefined || _obj === null) {
216
+ obj = {}
217
+ } else if (_obj instanceof Error) {
218
+ obj = { [errorKey]: _obj }
219
+ if (msg === undefined) {
220
+ msg = _obj.message
221
+ }
222
+ } else {
223
+ obj = _obj
224
+ if (msg === undefined && _obj[messageKey] === undefined && _obj[errorKey]) {
225
+ msg = _obj[errorKey].message
226
+ }
227
+ }
228
+
229
+ if (mixin) {
230
+ obj = mixinMergeStrategy(obj, mixin(obj, num, this))
231
+ }
232
+
233
+ const s = this[asJsonSym](obj, msg, num, t)
234
+
235
+ const stream = this[streamSym]
236
+ if (stream[needsMetadataGsym] === true) {
237
+ stream.lastLevel = num
238
+ stream.lastObj = obj
239
+ stream.lastMsg = msg
240
+ stream.lastTime = t.slice(this[timeSliceIndexSym])
241
+ stream.lastLogger = this // for child loggers
242
+ }
243
+ stream.write(streamWriteHook ? streamWriteHook(s) : s)
244
+ }
245
+
246
+ function flush (cb) {
247
+ if (cb != null && typeof cb !== 'function') {
248
+ throw Error('callback must be a function')
249
+ }
250
+
251
+ const stream = this[streamSym]
252
+
253
+ if (typeof stream.flush === 'function') {
254
+ stream.flush(cb || noop)
255
+ } else if (cb) cb()
256
+ }