cace46173b0c4b264eb124dd5d5f38f780487bb8
[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 'use strict';
23
24 var binding = process.binding('os');
25 var util = require('util');
26 var isWindows = process.platform === 'win32';
27
28 exports.hostname = binding.getHostname;
29 exports.loadavg = binding.getLoadAvg;
30 exports.uptime = binding.getUptime;
31 exports.freemem = binding.getFreeMem;
32 exports.totalmem = binding.getTotalMem;
33 exports.cpus = binding.getCPUs;
34 exports.type = binding.getOSType;
35 exports.release = binding.getOSRelease;
36 exports.networkInterfaces = binding.getInterfaceAddresses;
37
38 exports.arch = function() {
39   return process.arch;
40 };
41
42 exports.platform = function() {
43   return process.platform;
44 };
45
46 exports.tmpdir = function() {
47   if (isWindows) {
48     return process.env.TEMP ||
49            process.env.TMP ||
50            (process.env.SystemRoot || process.env.windir) + '\\temp';
51   } else {
52     return process.env.TMPDIR ||
53            process.env.TMP ||
54            process.env.TEMP ||
55            '/tmp';
56   }
57 };
58
59 exports.tmpDir = exports.tmpdir;
60
61 exports.getNetworkInterfaces = util.deprecate(function() {
62   return exports.networkInterfaces();
63 }, 'getNetworkInterfaces is now called `os.networkInterfaces`.');
64
65 exports.EOL = isWindows ? '\r\n' : '\n';
66
67 if (binding.isBigEndian)
68   exports.endianness = function() { return 'BE'; };
69 else
70   exports.endianness = function() { return 'LE'; };