blob: 7ce4e659f28b989e1151dddc3cf431923768539e [file] [log] [blame]
[email protected]af25b472012-04-25 01:59:441// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]2a758d612008-09-17 10:09:392// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef BASE_SYS_INFO_H_
6#define BASE_SYS_INFO_H_
7
[email protected]a0a1c5a2013-09-26 21:51:238#include <map>
[email protected]56d0cef2012-09-26 02:49:429#include <string>
10
[email protected]0bea7252011-08-05 15:34:0011#include "base/base_export.h"
[email protected]d632798e2008-09-17 13:10:4512#include "base/basictypes.h"
[email protected]57999812013-02-24 05:40:5213#include "base/files/file_path.h"
[email protected]a0a1c5a2013-09-26 21:51:2314#include "base/time/time.h"
[email protected]56d0cef2012-09-26 02:49:4215#include "build/build_config.h"
[email protected]13326bb2009-10-14 00:41:5616
[email protected]2a758d612008-09-17 10:09:3917namespace base {
18
[email protected]0bea7252011-08-05 15:34:0019class BASE_EXPORT SysInfo {
[email protected]2a758d612008-09-17 10:09:3920 public:
21 // Return the number of logical processors/cores on the current machine.
22 static int NumberOfProcessors();
[email protected]59658422009-02-11 02:01:5123
[email protected]d632798e2008-09-17 13:10:4524 // Return the number of bytes of physical memory on the current machine.
25 static int64 AmountOfPhysicalMemory();
[email protected]fadf97f2008-09-18 12:18:1426
[email protected]52bdcda2012-10-27 06:10:3727 // Return the number of bytes of current available physical memory on the
28 // machine.
29 static int64 AmountOfAvailablePhysicalMemory();
30
[email protected]275a29de2014-04-08 23:19:1631 // Return the number of bytes of virtual memory of this process. A return
32 // value of zero means that there is no limit on the available virtual
33 // memory.
34 static int64 AmountOfVirtualMemory();
35
[email protected]fadf97f2008-09-18 12:18:1436 // Return the number of megabytes of physical memory on the current machine.
37 static int AmountOfPhysicalMemoryMB() {
38 return static_cast<int>(AmountOfPhysicalMemory() / 1024 / 1024);
39 }
[email protected]0e91dd22008-09-18 12:34:2440
[email protected]275a29de2014-04-08 23:19:1641 // Return the number of megabytes of available virtual memory, or zero if it
42 // is unlimited.
43 static int AmountOfVirtualMemoryMB() {
44 return static_cast<int>(AmountOfVirtualMemory() / 1024 / 1024);
45 }
46
[email protected]02ee34a2008-09-20 01:16:2347 // Return the available disk space in bytes on the volume containing |path|,
48 // or -1 on failure.
[email protected]13326bb2009-10-14 00:41:5649 static int64 AmountOfFreeDiskSpace(const FilePath& path);
[email protected]0e91dd22008-09-18 12:34:2450
[email protected]0f24e53e2012-10-29 01:04:0951 // Returns system uptime in milliseconds.
52 static int64 Uptime();
53
[email protected]05f9b682008-09-29 22:18:0154 // Returns the name of the host operating system.
55 static std::string OperatingSystemName();
56
57 // Returns the version of the host operating system.
58 static std::string OperatingSystemVersion();
59
[email protected]71aa16c2009-02-24 16:37:1360 // Retrieves detailed numeric values for the OS version.
[email protected]71aa16c2009-02-24 16:37:1361 // TODO(port): Implement a Linux version of this method and enable the
62 // corresponding unit test.
[email protected]ba64e2b2011-06-14 18:18:3863 // DON'T USE THIS ON THE MAC OR WINDOWS to determine the current OS release
64 // for OS version-specific feature checks and workarounds. If you must use
65 // an OS version check instead of a feature check, use the base::mac::IsOS*
66 // family from base/mac/mac_util.h, or base::win::GetVersion from
67 // base/win/windows_version.h.
[email protected]f481221192011-04-07 22:15:3468 static void OperatingSystemVersionNumbers(int32* major_version,
69 int32* minor_version,
70 int32* bugfix_version);
[email protected]71aa16c2009-02-24 16:37:1371
[email protected]56d0cef2012-09-26 02:49:4272 // Returns the architecture of the running operating system.
73 // Exact return value may differ across platforms.
74 // e.g. a 32-bit x86 kernel on a 64-bit capable CPU will return "x86",
75 // whereas a x86-64 kernel on the same CPU will return "x86_64"
[email protected]0b6a4fb2012-10-16 01:58:2176 static std::string OperatingSystemArchitecture();
[email protected]05f9b682008-09-29 22:18:0177
[email protected]56d0cef2012-09-26 02:49:4278 // Avoid using this. Use base/cpu.h to get information about the CPU instead.
79 // http://crbug.com/148884
[email protected]d5df0c8c2012-09-08 09:53:0180 // Returns the CPU model name of the system. If it can not be figured out,
81 // an empty string is returned.
82 static std::string CPUModelName();
83
[email protected]037fce02009-01-22 01:42:1584 // Return the smallest amount of memory (in bytes) which the VM system will
85 // allocate.
86 static size_t VMAllocationGranularity();
[email protected]61b8ad72009-07-22 00:35:1887
[email protected]e43eddf12009-12-29 00:32:5288#if defined(OS_POSIX) && !defined(OS_MACOSX)
[email protected]849447a2013-11-04 20:50:1489 // Returns the maximum SysV shared memory segment size, or zero if there is no
90 // limit.
[email protected]80a086c52009-08-04 17:52:0491 static size_t MaxSharedMemorySize();
[email protected]56d0cef2012-09-26 02:49:4292#endif // defined(OS_POSIX) && !defined(OS_MACOSX)
[email protected]80a086c52009-08-04 17:52:0493
[email protected]61b8ad72009-07-22 00:35:1894#if defined(OS_CHROMEOS)
[email protected]a0a1c5a2013-09-26 21:51:2395 typedef std::map<std::string, std::string> LsbReleaseMap;
[email protected]61b8ad72009-07-22 00:35:1896
[email protected]a0a1c5a2013-09-26 21:51:2397 // Returns the contents of /etc/lsb-release as a map.
98 static const LsbReleaseMap& GetLsbReleaseMap();
[email protected]af25b472012-04-25 01:59:4499
[email protected]a0a1c5a2013-09-26 21:51:23100 // If |key| is present in the LsbReleaseMap, sets |value| and returns true.
101 static bool GetLsbReleaseValue(const std::string& key, std::string* value);
102
103 // Convenience function for GetLsbReleaseValue("CHROMEOS_RELEASE_BOARD",...).
104 // Returns "unknown" if CHROMEOS_RELEASE_BOARD is not set.
105 static std::string GetLsbReleaseBoard();
106
107 // Returns the creation time of /etc/lsb-release. (Used to get the date and
108 // time of the Chrome OS build).
109 static Time GetLsbReleaseTime();
110
[email protected]49c4cf852013-09-27 19:28:24111 // Returns true when actually running in a Chrome OS environment.
112 static bool IsRunningOnChromeOS();
113
[email protected]a0a1c5a2013-09-26 21:51:23114 // Test method to force re-parsing of lsb-release.
115 static void SetChromeOSVersionInfoForTest(const std::string& lsb_release,
116 const Time& lsb_release_time);
[email protected]56d0cef2012-09-26 02:49:42117#endif // defined(OS_CHROMEOS)
[email protected]5702108f2012-05-25 15:31:37118
119#if defined(OS_ANDROID)
[email protected]abef4b332012-08-21 23:55:52120 // Returns the Android build's codename.
121 static std::string GetAndroidBuildCodename();
122
123 // Returns the Android build ID.
124 static std::string GetAndroidBuildID();
125
126 // Returns the device's name.
127 static std::string GetDeviceName();
128
[email protected]5702108f2012-05-25 15:31:37129 static int DalvikHeapSizeMB();
[email protected]0cea3552013-02-16 18:15:50130 static int DalvikHeapGrowthLimitMB();
[email protected]56d0cef2012-09-26 02:49:42131#endif // defined(OS_ANDROID)
[email protected]2a758d612008-09-17 10:09:39132};
133
134} // namespace base
135
136#endif // BASE_SYS_INFO_H_