diff --git a/benchmark/os/tmpdir.js b/benchmark/os/tmpdir.js new file mode 100644 index 00000000000000..ba083fc280c001 --- /dev/null +++ b/benchmark/os/tmpdir.js @@ -0,0 +1,31 @@ +'use strict'; + +const common = require('../common.js'); +const { tmpdir } = require('os'); +const assert = require('assert'); + +const bench = common.createBenchmark(main, { + n: [1e6], +}); + +function main({ n }) { + // Warm up. + const length = 1024; + const array = []; + for (let i = 0; i < length; ++i) { + array.push(tmpdir()); + } + + bench.start(); + for (let i = 0; i < n; ++i) { + const index = i % length; + array[index] = tmpdir(); + } + bench.end(n); + + // Verify the entries to prevent dead code elimination from making + // the benchmark invalid. + for (let i = 0; i < length; ++i) { + assert.strictEqual(typeof array[i], 'string'); + } +} diff --git a/lib/os.js b/lib/os.js index bef4936c7c0bbe..bbae40b2ab1046 100644 --- a/lib/os.js +++ b/lib/os.js @@ -31,7 +31,7 @@ const { SymbolToPrimitive, } = primordials; -const { safeGetenv } = internalBinding('credentials'); +const { getTempDir } = internalBinding('credentials'); const constants = internalBinding('constants').os; const isWindows = process.platform === 'win32'; @@ -179,24 +179,18 @@ platform[SymbolToPrimitive] = () => process.platform; * @returns {string} */ function tmpdir() { - let path; if (isWindows) { - path = process.env.TEMP || + let path = process.env.TEMP || process.env.TMP || (process.env.SystemRoot || process.env.windir) + '\\temp'; if (path.length > 1 && StringPrototypeEndsWith(path, '\\') && !StringPrototypeEndsWith(path, ':\\')) path = StringPrototypeSlice(path, 0, -1); - } else { - path = safeGetenv('TMPDIR') || - safeGetenv('TMP') || - safeGetenv('TEMP') || - '/tmp'; - if (path.length > 1 && StringPrototypeEndsWith(path, '/')) - path = StringPrototypeSlice(path, 0, -1); + + return path; } - return path; + return getTempDir() || '/tmp'; } tmpdir[SymbolToPrimitive] = () => tmpdir(); diff --git a/src/node_credentials.cc b/src/node_credentials.cc index 6333c64231d30f..7e74f0c316664b 100644 --- a/src/node_credentials.cc +++ b/src/node_credentials.cc @@ -109,6 +109,27 @@ static void SafeGetenv(const FunctionCallbackInfo& args) { args.GetReturnValue().Set(result); } +static void GetTempDir(const FunctionCallbackInfo& args) { + Environment* env = Environment::GetCurrent(args); + Isolate* isolate = env->isolate(); + + std::string dir; + + // Try TMPDIR, TMP, and TEMP in that order. + if (!SafeGetenv("TMPDIR", &dir, env->env_vars()) && + !SafeGetenv("TMP", &dir, env->env_vars()) && + !SafeGetenv("TEMP", &dir, env->env_vars())) { + return; + } + + if (dir.size() > 1 && dir.ends_with("/")) { + dir.pop_back(); + } + + args.GetReturnValue().Set( + ToV8Value(isolate->GetCurrentContext(), dir).ToLocalChecked()); +} + #ifdef NODE_IMPLEMENTS_POSIX_CREDENTIALS static const uid_t uid_not_found = static_cast(-1); @@ -456,6 +477,7 @@ static void InitGroups(const FunctionCallbackInfo& args) { void RegisterExternalReferences(ExternalReferenceRegistry* registry) { registry->Register(SafeGetenv); + registry->Register(GetTempDir); #ifdef NODE_IMPLEMENTS_POSIX_CREDENTIALS registry->Register(GetUid); @@ -478,6 +500,7 @@ static void Initialize(Local target, Local context, void* priv) { SetMethod(context, target, "safeGetenv", SafeGetenv); + SetMethod(context, target, "getTempDir", GetTempDir); #ifdef NODE_IMPLEMENTS_POSIX_CREDENTIALS Environment* env = Environment::GetCurrent(context);