Skip to content

Commit

Permalink
lib: support dynamic trace events on debugWithTimer
Browse files Browse the repository at this point in the history
PR-URL: #53913
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
  • Loading branch information
H4ad authored and RafaelGSS committed Aug 5, 2024
1 parent 15a94e6 commit 744df0b
Show file tree
Hide file tree
Showing 2 changed files with 104 additions and 18 deletions.
58 changes: 42 additions & 16 deletions lib/internal/util/debuglog.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const {
CHAR_LOWERCASE_N: kTraceInstant,
} = require('internal/constants');
const { inspect, format, formatWithOptions } = require('internal/util/inspect');
const { isTraceCategoryEnabled, trace } = internalBinding('trace_events');
const { getCategoryEnabledBuffer, trace } = internalBinding('trace_events');

// `debugImpls` and `testEnabled` are deliberately not initialized so any call
// to `debuglog()` before `initializeDebugEnv()` is called will throw.
Expand Down Expand Up @@ -372,18 +372,34 @@ function debugWithTimer(set, cb) {
);
}

const kTraceCategory = `node,node.${StringPrototypeToLowerCase(set)}`;
const traceCategory = `node,node.${StringPrototypeToLowerCase(set)}`;
let traceCategoryBuffer;
let debugLogCategoryEnabled = false;
let traceCategoryEnabled = false;
let timerFlags = kNone;

const skipAll = kSkipLog | kSkipTrace;

function ensureTimerFlagsAreUpdated() {
timerFlags &= ~kSkipTrace;

if (traceCategoryBuffer[0] === 0) {
timerFlags |= kSkipTrace;
}
}

/**
* @type {TimerStart}
*/
function internalStartTimer(logLabel, traceLabel) {
ensureTimerFlagsAreUpdated();

if (timerFlags === skipAll) {
return;
}

time(
tracesStores[set],
kTraceCategory,
traceCategory,
'debuglog.time',
timerFlags,
logLabel,
Expand All @@ -395,9 +411,15 @@ function debugWithTimer(set, cb) {
* @type {TimerEnd}
*/
function internalEndTimer(logLabel, traceLabel) {
ensureTimerFlagsAreUpdated();

if (timerFlags === skipAll) {
return;
}

timeEnd(
tracesStores[set],
kTraceCategory,
traceCategory,
'debuglog.timeEnd',
timerFlags,
logImpl,
Expand All @@ -410,9 +432,15 @@ function debugWithTimer(set, cb) {
* @type {TimerLog}
*/
function internalLogTimer(logLabel, traceLabel, args) {
ensureTimerFlagsAreUpdated();

if (timerFlags === skipAll) {
return;
}

timeLog(
tracesStores[set],
kTraceCategory,
traceCategory,
'debuglog.timeLog',
timerFlags,
logImpl,
Expand All @@ -428,21 +456,19 @@ function debugWithTimer(set, cb) {
}
emitWarningIfNeeded(set);
debugLogCategoryEnabled = testEnabled(set);
traceCategoryEnabled = isTraceCategoryEnabled(kTraceCategory);
traceCategoryBuffer = getCategoryEnabledBuffer(traceCategory);

timerFlags = kNone;

if (!debugLogCategoryEnabled) {
timerFlags |= kSkipLog;
}

if (!traceCategoryEnabled) {
if (traceCategoryBuffer[0] === 0) {
timerFlags |= kSkipTrace;
}

// TODO(H4ad): support traceCategory being enabled dynamically
if (debugLogCategoryEnabled || traceCategoryEnabled)
cb(internalStartTimer, internalEndTimer, internalLogTimer);
else
cb(noop, noop, noop);
cb(internalStartTimer, internalEndTimer, internalLogTimer);
}

/**
Expand All @@ -451,7 +477,7 @@ function debugWithTimer(set, cb) {
const startTimer = (logLabel, traceLabel) => {
init();

if (debugLogCategoryEnabled || traceCategoryEnabled)
if (timerFlags !== skipAll)
internalStartTimer(logLabel, traceLabel);
};

Expand All @@ -461,7 +487,7 @@ function debugWithTimer(set, cb) {
const endTimer = (logLabel, traceLabel) => {
init();

if (debugLogCategoryEnabled || traceCategoryEnabled)
if (timerFlags !== skipAll)
internalEndTimer(logLabel, traceLabel);
};

Expand All @@ -471,7 +497,7 @@ function debugWithTimer(set, cb) {
const logTimer = (logLabel, traceLabel, args) => {
init();

if (debugLogCategoryEnabled || traceCategoryEnabled)
if (timerFlags !== skipAll)
internalLogTimer(logLabel, traceLabel, args);
};

Expand Down
64 changes: 62 additions & 2 deletions test/parallel/test-module-print-timing.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ it('should print the timing information for cjs', () => {
},
}, {
stdout: '',
stderr: (result) => result.includes('MODULE_TIMER'),
stderr: /MODULE_TIMER/g,
});

const firstLine = result.stderr.split('\n').find((line) => line.includes('[url]'));
Expand Down Expand Up @@ -74,7 +74,7 @@ it('should write tracing & print logs for cjs', async () => {
},
}, {
stdout: '',
stderr: (result) => result.includes('MODULE_TIMER'),
stderr: /MODULE_TIMER/g,
});

const firstLine = result.stderr.split('\n').find((line) => line.includes('[url]'));
Expand All @@ -89,7 +89,67 @@ it('should write tracing & print logs for cjs', async () => {
const outputFileJson = JSON.parse(outputFileContent).traceEvents;
const urlTraces = outputFileJson.filter((trace) => trace.name === "require('url')");

assert.ok(urlTraces.length > 0, 'Not found url traces');

for (const trace of urlTraces) {
assert.strictEqual(trace.ph, expectedMimeTypes.shift());
}
});

it('should support enable tracing dynamically', async () => {
try {
spawnSyncAndAssert(process.execPath, [
'--eval',
'require("trace_events")',
], {
stdout: '',
stderr: '',
});
} catch {
// Skip this test if the trace_events module is not available
return;
}


const outputFile = tmpdir.resolve('output-dynamic-trace.log');
const jsScript = `
const traceEvents = require("trace_events");
const tracing = traceEvents.createTracing({ categories: ["node.module_timer"] });
tracing.enable();
require("http");
tracing.disable();
require("vm");
`;

spawnSyncAndAssert(process.execPath, [
'--trace-event-file-pattern',
outputFile,
'--eval',
jsScript,
], {
cwd: tmpdir.path,
env: {
...process.env,
},
}, {
stdout: '',
stderr: '',
});

const expectedMimeTypes = ['b', 'e'];
const outputFileContent = await readFile(outputFile, 'utf-8');

const outputFileJson = JSON.parse(outputFileContent).traceEvents;
const httpTraces = outputFileJson.filter((trace) => trace.name === "require('http')");

assert.ok(httpTraces.length > 0, 'Not found http traces');

for (const trace of httpTraces) {
assert.strictEqual(trace.ph, expectedMimeTypes.shift());
}

const vmTraces = outputFileJson.filter((trace) => trace.name === "require('vm')");
assert.strictEqual(vmTraces.length, 0);
});

0 comments on commit 744df0b

Please sign in to comment.