1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/system/sys_info.h"
#include <stddef.h>
#include <stdint.h>
#include <sys/system_properties.h>
#include "base/compiler_specific.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/system/sys_info_internal.h"
namespace {
// Default version of Android to fall back to when actual version numbers
// cannot be acquired. Use a super high number in this case, as we assume
// it's due to being a pre-release version.
const int kDefaultAndroidMajorVersion = 9999;
const int kDefaultAndroidMinorVersion = 0;
const int kDefaultAndroidBugfixVersion = 0;
// Get and parse out the OS version numbers from the system properties.
// Note if parse fails, the "default" version is returned as fallback.
void GetOsVersionStringAndNumbers(std::string* version_string,
int32_t* major_version,
int32_t* minor_version,
int32_t* bugfix_version) {
// Read the version number string out from the properties.
char os_version_str[PROP_VALUE_MAX];
__system_property_get("ro.build.version.release", os_version_str);
if (os_version_str[0]) {
// Try to parse out the version numbers from the string.
int num_read = UNSAFE_TODO(sscanf(os_version_str, "%d.%d.%d", major_version,
minor_version, bugfix_version));
if (num_read > 0) {
// If we don't have a full set of version numbers, make the extras 0.
if (num_read < 2) {
*minor_version = 0;
}
if (num_read < 3) {
*bugfix_version = 0;
}
*version_string = std::string(os_version_str);
return;
}
}
// For some reason, we couldn't parse the version number string.
*major_version = kDefaultAndroidMajorVersion;
*minor_version = kDefaultAndroidMinorVersion;
*bugfix_version = kDefaultAndroidBugfixVersion;
*version_string = ::base::StringPrintf("%d.%d.%d", *major_version,
*minor_version, *bugfix_version);
}
std::string HardwareManufacturerName() {
char device_model_str[PROP_VALUE_MAX];
__system_property_get("ro.product.manufacturer", device_model_str);
return std::string(device_model_str);
}
} // anonymous namespace
namespace base {
std::string SysInfo::HardwareModelName() {
char device_model_str[PROP_VALUE_MAX];
__system_property_get("ro.product.model", device_model_str);
return std::string(device_model_str);
}
std::string SysInfo::SocManufacturer() {
char soc_manufacturer_str[PROP_VALUE_MAX];
__system_property_get("ro.soc.manufacturer", soc_manufacturer_str);
return std::string(soc_manufacturer_str);
}
std::string SysInfo::OperatingSystemName() {
return "Android";
}
std::string SysInfo::OperatingSystemVersion() {
std::string version_string;
int32_t major, minor, bugfix;
GetOsVersionStringAndNumbers(&version_string, &major, &minor, &bugfix);
return version_string;
}
void SysInfo::OperatingSystemVersionNumbers(int32_t* major_version,
int32_t* minor_version,
int32_t* bugfix_version) {
std::string version_string;
GetOsVersionStringAndNumbers(&version_string, major_version, minor_version,
bugfix_version);
}
std::string SysInfo::GetAndroidBuildCodename() {
char os_version_codename_str[PROP_VALUE_MAX];
__system_property_get("ro.build.version.codename", os_version_codename_str);
return std::string(os_version_codename_str);
}
std::string SysInfo::GetAndroidBuildID() {
char os_build_id_str[PROP_VALUE_MAX];
__system_property_get("ro.build.id", os_build_id_str);
return std::string(os_build_id_str);
}
std::string SysInfo::GetAndroidHardware() {
char os_hardware_str[PROP_VALUE_MAX];
__system_property_get("ro.hardware", os_hardware_str);
return std::string(os_hardware_str);
}
std::string SysInfo::GetAndroidHardwareEGL() {
char os_hardware_egl_str[PROP_VALUE_MAX];
__system_property_get("ro.hardware.egl", os_hardware_egl_str);
return std::string(os_hardware_egl_str);
}
std::string SysInfo::GetAndroidHardwareClass() {
char os_hardware_id_str[PROP_VALUE_MAX];
__system_property_get("ro.boot.product.hardware.id", os_hardware_id_str);
return std::string(os_hardware_id_str);
}
// static
SysInfo::HardwareInfo SysInfo::GetHardwareInfoSync() {
HardwareInfo info;
info.manufacturer = HardwareManufacturerName();
info.model = HardwareModelName();
DCHECK(IsStringUTF8(info.manufacturer));
DCHECK(IsStringUTF8(info.model));
return info;
}
} // namespace base
|