nodejs/lib/os.js

56 lines
2.0 KiB
JavaScript
Raw Normal View History

2011-03-10 00:54:52 -08: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.
2010-12-11 03:49:38 -05:00
var binding = process.binding('os');
exports.hostname = binding.getHostname;
exports.loadavg = binding.getLoadAvg;
exports.uptime = binding.getUptime;
exports.freemem = binding.getFreeMem;
exports.totalmem = binding.getTotalMem;
exports.cpus = binding.getCPUs;
exports.type = binding.getOSType;
2011-01-05 03:30:27 +01:00
exports.release = binding.getOSRelease;
exports.networkInterfaces = binding.getInterfaceAddresses;
2012-06-12 19:05:51 -07:00
2011-04-26 20:02:54 -07:00
exports.arch = function() {
return process.arch;
};
2012-06-12 19:05:51 -07:00
2011-04-26 20:02:54 -07:00
exports.platform = function() {
return process.platform;
};
2012-06-12 19:05:51 -07:00
exports.tmpDir = function() {
return process.env.TMPDIR ||
process.env.TMP ||
process.env.TEMP ||
(process.platform === 'win32' ? 'c:\\windows\\temp' : '/tmp');
};
exports.getNetworkInterfaces = function() {
return exports.networkInterfaces();
};
2012-02-18 15:01:35 -08:00
module.deprecate('getNetworkInterfaces',
'It is now called `os.networkInterfaces`.');
2012-04-12 01:29:15 -07:00
exports.EOL = process.platform === 'win32' ? '\r\n' : '\n';