henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2007 The WebRTC Project Authors. All rights reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
erikchen | e606a17 | 2016-10-10 11:19:15 -0700 | [diff] [blame] | 11 | #include <cstring> |
jbauch | 555604a | 2016-04-26 03:13:22 -0700 | [diff] [blame] | 12 | #include <memory> |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 13 | #include <sstream> |
| 14 | |
erikchen | e606a17 | 2016-10-10 11:19:15 -0700 | [diff] [blame] | 15 | #include <sys/utsname.h> |
kthelgason | d547224 | 2016-09-09 03:19:48 -0700 | [diff] [blame] | 16 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 17 | #include "rtc_base/checks.h" |
| 18 | #include "rtc_base/logging.h" |
| 19 | #include "rtc_base/macutils.h" |
| 20 | #include "rtc_base/stringutils.h" |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 21 | |
| 22 | namespace rtc { |
| 23 | |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 24 | bool ToUtf8(const CFStringRef str16, std::string* str8) { |
deadbeef | 37f5ecf | 2017-02-27 14:06:41 -0800 | [diff] [blame] | 25 | if ((nullptr == str16) || (nullptr == str8)) { |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 26 | return false; |
| 27 | } |
| 28 | size_t maxlen = CFStringGetMaximumSizeForEncoding(CFStringGetLength(str16), |
| 29 | kCFStringEncodingUTF8) + 1; |
jbauch | 555604a | 2016-04-26 03:13:22 -0700 | [diff] [blame] | 30 | std::unique_ptr<char[]> buffer(new char[maxlen]); |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 31 | if (!buffer || !CFStringGetCString(str16, buffer.get(), maxlen, |
| 32 | kCFStringEncodingUTF8)) { |
| 33 | return false; |
| 34 | } |
| 35 | str8->assign(buffer.get()); |
| 36 | return true; |
| 37 | } |
| 38 | |
| 39 | bool ToUtf16(const std::string& str8, CFStringRef* str16) { |
deadbeef | 37f5ecf | 2017-02-27 14:06:41 -0800 | [diff] [blame] | 40 | if (nullptr == str16) { |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 41 | return false; |
| 42 | } |
| 43 | *str16 = CFStringCreateWithBytes(kCFAllocatorDefault, |
| 44 | reinterpret_cast<const UInt8*>(str8.data()), |
| 45 | str8.length(), kCFStringEncodingUTF8, |
| 46 | false); |
deadbeef | 37f5ecf | 2017-02-27 14:06:41 -0800 | [diff] [blame] | 47 | return nullptr != *str16; |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 48 | } |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 49 | } // namespace rtc |