blob: 4b461391a7485b7d1d2d6a339c2027c5d89a1a77 (
plain)
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
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "sync/util/get_session_name_mac.h"
#import <Foundation/Foundation.h>
#import <SystemConfiguration/SCDynamicStoreCopySpecific.h>
#include <sys/sysctl.h> // sysctlbyname()
#include "base/mac/foundation_util.h"
#include "base/mac/mac_util.h"
#include "base/memory/scoped_nsobject.h"
#include "base/string_util.h"
#include "base/sys_info.h"
#include "base/sys_string_conversions.h"
@interface NSHost(SnowLeopardAPI)
- (NSString*)localizedName;
@end
namespace browser_sync {
namespace internal {
std::string GetHardwareModelName() {
NSHost* myHost = [NSHost currentHost];
if ([myHost respondsToSelector:@selector(localizedName)])
return base::SysNSStringToUTF8([myHost localizedName]);
// Fallback for 10.5
scoped_nsobject<NSString> computerName(base::mac::CFToNSCast(
SCDynamicStoreCopyComputerName(NULL, NULL)));
if (computerName.get() != NULL)
return base::SysNSStringToUTF8(computerName.get());
// If all else fails, return to using a slightly nicer version of the
// hardware model.
char modelBuffer[256];
size_t length = sizeof(modelBuffer);
if (!sysctlbyname("hw.model", modelBuffer, &length, NULL, 0)) {
for (size_t i = 0; i < length; i++) {
if (IsAsciiDigit(modelBuffer[i]))
return std::string(modelBuffer, 0, i);
}
return std::string(modelBuffer, 0, length);
}
return "Unknown";
}
} // namespace internal
} // namespace browser_sync
|