9fc4673771bbddb04607f518a21c87cdcb57bb3d
[platform/upstream/nodejs.git] / lib / os.js
1 // Copyright Joyent, Inc. and other Node contributors.
2 //
3 // Permission is hereby granted, free of charge, to any person obtaining a
4 // copy of this software and associated documentation files (the
5 // "Software"), to deal in the Software without restriction, including
6 // without limitation the rights to use, copy, modify, merge, publish,
7 // distribute, sublicense, and/or sell copies of the Software, and to permit
8 // persons to whom the Software is furnished to do so, subject to the
9 // following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included
12 // in all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17 // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18 // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19 // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 // USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22 var binding = process.binding('os');
23 var util = require('util');
24 var isWindows = process.platform === 'win32';
25
26 exports.hostname = binding.getHostname;
27 exports.loadavg = binding.getLoadAvg;
28 exports.uptime = binding.getUptime;
29 exports.freemem = binding.getFreeMem;
30 exports.totalmem = binding.getTotalMem;
31 exports.cpus = binding.getCPUs;
32 exports.type = binding.getOSType;
33 exports.release = binding.getOSRelease;
34 exports.networkInterfaces = binding.getInterfaceAddresses;
35
36 exports.arch = function() {
37   return process.arch;
38 };
39
40 exports.platform = function() {
41   return process.platform;
42 };
43
44 exports.tmpdir = function() {
45   if (isWindows) {
46     return process.env.TEMP ||
47            process.env.TMP ||
48            (process.env.SystemRoot || process.env.windir) + '\\temp';
49   } else {
50     return process.env.TMPDIR ||
51            process.env.TMP ||
52            process.env.TEMP ||
53            '/tmp';
54   }
55 };
56
57 exports.tmpDir = exports.tmpdir;
58
59 exports.getNetworkInterfaces = util.deprecate(function() {
60   return exports.networkInterfaces();
61 }, 'getNetworkInterfaces is now called `os.networkInterfaces`.');
62
63 exports.EOL = isWindows ? '\r\n' : '\n';
64
65 if (binding.isBigEndian)
66   exports.endianness = function() { return 'BE'; };
67 else
68   exports.endianness = function() { return 'LE'; };