mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
ac75b2eb19
Instead call the C++ code every time we need to check for a trace category, now we get the C++ pointer to the flag that holds the info if the trace is enabled and return this pointer inside a buffer that we can use to call/check if the value is enabled. With this change, no C++ call is made and the access to the info happens in JS side, which has no perf penalty. PR-URL: https://github.com/nodejs/node/pull/53602 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
'use strict';
|
|
// Flags: --expose-internals
|
|
|
|
const common = require('../common');
|
|
const { it } = require('node:test');
|
|
|
|
try {
|
|
require('trace_events');
|
|
} catch {
|
|
common.skip('missing trace events');
|
|
}
|
|
|
|
const { createTracing, getEnabledCategories } = require('trace_events');
|
|
const assert = require('assert');
|
|
|
|
const binding = require('internal/test/binding');
|
|
const getCategoryEnabledBuffer = binding.internalBinding('trace_events').getCategoryEnabledBuffer;
|
|
|
|
it('should track enabled/disabled categories', () => {
|
|
const random = Math.random().toString().slice(2);
|
|
const category = `node.${random}`;
|
|
|
|
const buffer = getCategoryEnabledBuffer(category);
|
|
|
|
const tracing = createTracing({
|
|
categories: [category],
|
|
});
|
|
|
|
assert.ok(buffer[0] === 0, `the buffer[0] should start with value 0, got: ${buffer[0]}`);
|
|
|
|
tracing.enable();
|
|
|
|
let currentCategories = getEnabledCategories();
|
|
|
|
assert.ok(currentCategories.includes(category), `the getEnabledCategories should include ${category}, got: ${currentCategories}`);
|
|
assert.ok(buffer[0] > 0, `the buffer[0] should be greater than 0, got: ${buffer[0]}`);
|
|
|
|
tracing.disable();
|
|
|
|
currentCategories = getEnabledCategories();
|
|
assert.ok(currentCategories === undefined, `the getEnabledCategories should return undefined, got: ${currentCategories}`);
|
|
assert.ok(buffer[0] === 0, `the buffer[0] should be 0, got: ${buffer[0]}`);
|
|
});
|