src/vs/base/node/libc.ts

40 LOC · 38 covered · 2 uncovered · 5 ranges · 410 concepts · 3 introducers · 233 tests

File neighbourhood

The centred file is linked to every concept that introduces one of its ranges, every test that runs code from the file, and the gray connector concepts standing between those tests and the file's own introducer concepts. Undirected links join concepts to every file where they introduce source and concepts to the tests they introduce; arrows show specialization between the displayed concepts and bridge only concepts omitted from this view. Concept colors match the source ranges below; connector concepts have no source color and are shown in gray.

Focused file, its introducer and connector concepts, their introduced files, and tests that run code from the file

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the related-file, concept, and source links on this page.

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the related-file, concept, and source links on this page while the interactive map is unavailable.

1 > /*--------------------------------------------------------------------------------------------- libc.ts ×1
2 > * Copyright (c) Microsoft Corporation. All rights reserved.
3 > * Licensed under the MIT License. See License.txt in the project root for license information.
4 > *--------------------------------------------------------------------------------------------*/
5 >
6 > import { familySync, MUSL } from 'detect-libc';
7 > import * as Platform from '../common/platform.js';
8 >
9 > /** The libc family the current process is linked against. */
10 > export type LibcFamily = 'glibc' | 'musl';
11 >
12 > let _cached: LibcFamily | undefined;
13 > let _cacheValid = false;
14 >
15 > /**
16 > * Returns the libc family of the running Node process on Linux, or `undefined`
17 > * on non-Linux platforms (where the question is meaningless).
18 > *
19 > * Delegates to the `detect-libc` package, which probes cheap signals first (the
20 > * ELF interpreter of `/proc/self/exe`, then `/usr/bin/ldd`) and only falls back
21 > * to Node's process report — with the libuv/socket section excluded so it does
22 > * not peg the CPU on busy hosts. When detection is inconclusive we assume
23 > * `glibc`, the dominant Linux libc.
24 > *
25 > * Cached after first call; libc never changes mid-process. This is the
26 > * synchronous variant; add a promise-based `detectLibc` wrapping
27 > * `detect-libc`'s async `family()` if a non-blocking caller ever needs one.
28 > */
29 > export function detectLibcSync(): LibcFamily | undefined {
30 > if (_cacheValid) { libc.ts ×3
31 > return _cached; libc.ts ×1
32 > }
33 > if (Platform.isLinux) { libc.ts ×3
34 > _cached = familySync() === MUSL ? 'musl' : 'glibc';
35 > } else {
36 _cached = undefined;
37 }
38 > _cacheValid = true; libc.ts ×3
39 > return _cached;
40 > }