2017-01-03 21:16:48 +00:00
|
|
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
|
|
// following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2014-11-22 15:59:48 +00:00
|
|
|
'use strict';
|
|
|
|
|
2017-10-07 14:50:42 +00:00
|
|
|
const { pushValToArrayMax } = process.binding('util');
|
2016-05-02 17:27:12 +00:00
|
|
|
const constants = process.binding('constants').os;
|
2017-10-07 14:50:42 +00:00
|
|
|
const { deprecate } = require('internal/util');
|
|
|
|
const { getCIDRSuffix } = require('internal/os');
|
2015-01-21 16:36:59 +00:00
|
|
|
const isWindows = process.platform === 'win32';
|
2010-12-11 08:49:38 +00:00
|
|
|
|
2017-10-27 23:27:16 +00:00
|
|
|
const errors = require('internal/errors');
|
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
const {
|
|
|
|
getCPUs,
|
|
|
|
getFreeMem,
|
2017-10-27 23:27:16 +00:00
|
|
|
getHomeDirectory: _getHomeDirectory,
|
|
|
|
getHostname: _getHostname,
|
|
|
|
getInterfaceAddresses: _getInterfaceAddresses,
|
2017-04-25 21:48:32 +00:00
|
|
|
getLoadAvg,
|
2017-10-27 23:27:16 +00:00
|
|
|
getOSRelease: _getOSRelease,
|
|
|
|
getOSType: _getOSType,
|
2017-04-25 21:48:32 +00:00
|
|
|
getTotalMem,
|
2017-10-27 23:27:16 +00:00
|
|
|
getUserInfo: _getUserInfo,
|
2017-04-25 21:48:32 +00:00
|
|
|
getUptime,
|
|
|
|
isBigEndian
|
|
|
|
} = process.binding('os');
|
|
|
|
|
2017-10-27 23:27:16 +00:00
|
|
|
function getCheckedFunction(fn) {
|
|
|
|
return function checkError(...args) {
|
|
|
|
const ctx = {};
|
|
|
|
const ret = fn(...args, ctx);
|
|
|
|
if (ret === undefined) {
|
|
|
|
const err = new errors.SystemError(ctx);
|
|
|
|
Error.captureStackTrace(err, checkError);
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const getHomeDirectory = getCheckedFunction(_getHomeDirectory);
|
|
|
|
const getHostname = getCheckedFunction(_getHostname);
|
|
|
|
const getInterfaceAddresses = getCheckedFunction(_getInterfaceAddresses);
|
|
|
|
const getOSRelease = getCheckedFunction(_getOSRelease);
|
|
|
|
const getOSType = getCheckedFunction(_getOSType);
|
|
|
|
const getUserInfo = getCheckedFunction(_getUserInfo);
|
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
getFreeMem[Symbol.toPrimitive] = () => getFreeMem();
|
|
|
|
getHostname[Symbol.toPrimitive] = () => getHostname();
|
|
|
|
getHomeDirectory[Symbol.toPrimitive] = () => getHomeDirectory();
|
|
|
|
getOSRelease[Symbol.toPrimitive] = () => getOSRelease();
|
|
|
|
getOSType[Symbol.toPrimitive] = () => getOSType();
|
|
|
|
getTotalMem[Symbol.toPrimitive] = () => getTotalMem();
|
|
|
|
getUptime[Symbol.toPrimitive] = () => getUptime();
|
|
|
|
|
|
|
|
const kEndianness = isBigEndian ? 'BE' : 'LE';
|
|
|
|
|
|
|
|
const tmpDirDeprecationMsg =
|
|
|
|
'os.tmpDir() is deprecated. Use os.tmpdir() instead.';
|
|
|
|
|
|
|
|
const getNetworkInterfacesDepMsg =
|
|
|
|
'os.getNetworkInterfaces is deprecated. Use os.networkInterfaces instead.';
|
2015-05-25 15:01:42 +00:00
|
|
|
|
2017-02-23 08:22:01 +00:00
|
|
|
const avgValues = new Float64Array(3);
|
2017-04-25 21:48:32 +00:00
|
|
|
const cpuValues = new Float64Array(6 * pushValToArrayMax);
|
|
|
|
|
|
|
|
function loadavg() {
|
2017-02-23 08:22:01 +00:00
|
|
|
getLoadAvg(avgValues);
|
|
|
|
return [avgValues[0], avgValues[1], avgValues[2]];
|
2017-04-25 21:48:32 +00:00
|
|
|
}
|
2017-02-23 08:22:01 +00:00
|
|
|
|
2017-02-26 04:40:39 +00:00
|
|
|
function addCPUInfo() {
|
|
|
|
for (var i = 0, c = 0; i < arguments.length; ++i, c += 6) {
|
|
|
|
this[this.length] = {
|
|
|
|
model: arguments[i],
|
|
|
|
speed: cpuValues[c],
|
|
|
|
times: {
|
|
|
|
user: cpuValues[c + 1],
|
|
|
|
nice: cpuValues[c + 2],
|
|
|
|
sys: cpuValues[c + 3],
|
|
|
|
idle: cpuValues[c + 4],
|
|
|
|
irq: cpuValues[c + 5]
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
function cpus() {
|
|
|
|
return getCPUs(addCPUInfo, cpuValues, []);
|
|
|
|
}
|
2012-06-13 02:05:51 +00:00
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
function arch() {
|
2011-04-27 03:02:54 +00:00
|
|
|
return process.arch;
|
2017-04-25 21:48:32 +00:00
|
|
|
}
|
|
|
|
arch[Symbol.toPrimitive] = () => process.arch;
|
2012-06-13 02:05:51 +00:00
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
function platform() {
|
2011-04-27 03:02:54 +00:00
|
|
|
return process.platform;
|
2017-04-25 21:48:32 +00:00
|
|
|
}
|
|
|
|
platform[Symbol.toPrimitive] = () => process.platform;
|
2011-11-01 16:23:17 +00:00
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
function tmpdir() {
|
2015-02-06 22:27:22 +00:00
|
|
|
var path;
|
2013-03-19 06:58:44 +00:00
|
|
|
if (isWindows) {
|
2015-02-06 22:27:22 +00:00
|
|
|
path = process.env.TEMP ||
|
2013-03-19 06:58:44 +00:00
|
|
|
process.env.TMP ||
|
2013-03-28 20:19:08 +00:00
|
|
|
(process.env.SystemRoot || process.env.windir) + '\\temp';
|
2016-03-17 04:23:52 +00:00
|
|
|
if (path.length > 1 && path.endsWith('\\') && !path.endsWith(':\\'))
|
|
|
|
path = path.slice(0, -1);
|
2013-03-19 06:58:44 +00:00
|
|
|
} else {
|
2015-02-06 22:27:22 +00:00
|
|
|
path = process.env.TMPDIR ||
|
2013-03-19 06:58:44 +00:00
|
|
|
process.env.TMP ||
|
|
|
|
process.env.TEMP ||
|
|
|
|
'/tmp';
|
2016-03-17 04:23:52 +00:00
|
|
|
if (path.length > 1 && path.endsWith('/'))
|
|
|
|
path = path.slice(0, -1);
|
2013-03-19 06:58:44 +00:00
|
|
|
}
|
2016-03-17 04:23:52 +00:00
|
|
|
|
2015-02-06 22:27:22 +00:00
|
|
|
return path;
|
2017-04-25 21:48:32 +00:00
|
|
|
}
|
|
|
|
tmpdir[Symbol.toPrimitive] = () => tmpdir();
|
2012-06-13 02:05:51 +00:00
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
function endianness() {
|
|
|
|
return kEndianness;
|
|
|
|
}
|
|
|
|
endianness[Symbol.toPrimitive] = () => kEndianness;
|
2013-01-29 16:27:33 +00:00
|
|
|
|
2017-07-16 15:51:44 +00:00
|
|
|
function networkInterfaces() {
|
|
|
|
const interfaceAddresses = getInterfaceAddresses();
|
|
|
|
|
|
|
|
return Object.entries(interfaceAddresses).reduce((acc, [key, val]) => {
|
|
|
|
acc[key] = val.map((v) => {
|
|
|
|
const protocol = v.family.toLowerCase();
|
|
|
|
const suffix = getCIDRSuffix(v.netmask, protocol);
|
|
|
|
const cidr = suffix ? `${v.address}/${suffix}` : null;
|
|
|
|
|
|
|
|
return Object.assign({}, v, { cidr });
|
|
|
|
});
|
|
|
|
return acc;
|
|
|
|
}, {});
|
|
|
|
}
|
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
module.exports = exports = {
|
|
|
|
arch,
|
|
|
|
cpus,
|
|
|
|
endianness,
|
|
|
|
freemem: getFreeMem,
|
|
|
|
homedir: getHomeDirectory,
|
|
|
|
hostname: getHostname,
|
|
|
|
loadavg,
|
2017-07-16 15:51:44 +00:00
|
|
|
networkInterfaces,
|
2017-04-25 21:48:32 +00:00
|
|
|
platform,
|
|
|
|
release: getOSRelease,
|
|
|
|
tmpdir,
|
|
|
|
totalmem: getTotalMem,
|
|
|
|
type: getOSType,
|
|
|
|
userInfo: getUserInfo,
|
|
|
|
uptime: getUptime,
|
2012-04-12 08:29:15 +00:00
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
// Deprecated APIs
|
|
|
|
getNetworkInterfaces: deprecate(getInterfaceAddresses,
|
|
|
|
getNetworkInterfacesDepMsg,
|
|
|
|
'DEP0023'),
|
|
|
|
tmpDir: deprecate(tmpdir, tmpDirDeprecationMsg, 'DEP0022')
|
|
|
|
};
|
2014-11-10 23:40:58 +00:00
|
|
|
|
2017-08-17 03:52:30 +00:00
|
|
|
Object.defineProperties(module.exports, {
|
|
|
|
constants: {
|
|
|
|
configurable: false,
|
|
|
|
enumerable: true,
|
|
|
|
value: constants
|
|
|
|
},
|
|
|
|
|
|
|
|
EOL: {
|
|
|
|
configurable: true,
|
|
|
|
enumerable: true,
|
|
|
|
writable: false,
|
|
|
|
value: isWindows ? '\r\n' : '\n'
|
|
|
|
}
|
2017-04-25 21:48:32 +00:00
|
|
|
});
|