PR-URL: https://github.com/nodejs/node/pull/62145 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
77 lines
2.4 KiB
JavaScript
77 lines
2.4 KiB
JavaScript
'use strict';
|
|
const {
|
|
ObjectDefineProperties,
|
|
} = primordials;
|
|
const { hasInspector } = internalBinding('config');
|
|
const { getOptionValue } = require('internal/options');
|
|
const { kConstructorKey, Storage } = internalBinding('webstorage');
|
|
const { getValidatedPath } = require('internal/fs/utils');
|
|
const kInMemoryPath = ':memory:';
|
|
|
|
module.exports = { Storage };
|
|
|
|
let lazyLocalStorage;
|
|
let lazySessionStorage;
|
|
let lazyInspectorStorage;
|
|
let localStorageWarned = false;
|
|
|
|
// Check at load time if localStorage file is provided to determine enumerability.
|
|
// If not provided, localStorage is non-enumerable to avoid breaking {...globalThis}.
|
|
const localStorageLocation = getOptionValue('--localstorage-file');
|
|
const experimentalStorageInspection =
|
|
hasInspector && getOptionValue('--experimental-storage-inspection');
|
|
|
|
function getInspectorStorage() {
|
|
if (lazyInspectorStorage === undefined) {
|
|
lazyInspectorStorage = require('internal/inspector/webstorage');
|
|
}
|
|
return lazyInspectorStorage;
|
|
}
|
|
|
|
ObjectDefineProperties(module.exports, {
|
|
__proto__: null,
|
|
localStorage: {
|
|
__proto__: null,
|
|
configurable: true,
|
|
enumerable: localStorageLocation !== '',
|
|
get() {
|
|
if (lazyLocalStorage === undefined) {
|
|
if (localStorageLocation === '') {
|
|
if (!localStorageWarned) {
|
|
localStorageWarned = true;
|
|
process.emitWarning(
|
|
'localStorage is not available because --localstorage-file was not provided.',
|
|
'ExperimentalWarning',
|
|
);
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
if (experimentalStorageInspection) {
|
|
const { InspectorLocalStorage } = getInspectorStorage();
|
|
lazyLocalStorage = new InspectorLocalStorage(kConstructorKey, getValidatedPath(localStorageLocation), true);
|
|
} else {
|
|
lazyLocalStorage = new Storage(kConstructorKey, getValidatedPath(localStorageLocation));
|
|
}
|
|
}
|
|
return lazyLocalStorage;
|
|
},
|
|
},
|
|
sessionStorage: {
|
|
__proto__: null,
|
|
configurable: true,
|
|
enumerable: true,
|
|
get() {
|
|
if (lazySessionStorage === undefined) {
|
|
if (experimentalStorageInspection) {
|
|
const { InspectorSessionStorage } = getInspectorStorage();
|
|
lazySessionStorage = new InspectorSessionStorage(kConstructorKey, kInMemoryPath, false);
|
|
} else {
|
|
lazySessionStorage = new Storage(kConstructorKey, kInMemoryPath);
|
|
}
|
|
}
|
|
|
|
return lazySessionStorage;
|
|
},
|
|
},
|
|
});
|