sys_string_conversions.h 3.03 KB
Newer Older
gejun's avatar
gejun committed
1 2 3 4
// 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.

5 6
#ifndef BUTIL_STRINGS_SYS_STRING_CONVERSIONS_H_
#define BUTIL_STRINGS_SYS_STRING_CONVERSIONS_H_
gejun's avatar
gejun committed
7 8 9 10 11 12 13

// Provides system-dependent string type conversions for cases where it's
// necessary to not use ICU. Generally, you should not need this in Chrome,
// but it is used in some shared code. Dependencies should be minimal.

#include <string>

14 15 16 17
#include "butil/base_export.h"
#include "butil/basictypes.h"
#include "butil/strings/string16.h"
#include "butil/strings/string_piece.h"
gejun's avatar
gejun committed
18 19 20 21 22 23 24 25 26 27

#if defined(OS_MACOSX)
#include <CoreFoundation/CoreFoundation.h>
#ifdef __OBJC__
@class NSString;
#else
class NSString;
#endif
#endif  // OS_MACOSX

28
namespace butil {
gejun's avatar
gejun committed
29 30 31

// Converts between wide and UTF-8 representations of a string. On error, the
// result is system-dependent.
32 33
BUTIL_EXPORT std::string SysWideToUTF8(const std::wstring& wide);
BUTIL_EXPORT std::wstring SysUTF8ToWide(const StringPiece& utf8);
gejun's avatar
gejun committed
34 35 36 37

// Converts between wide and the system multi-byte representations of a string.
// DANGER: This will lose information and can change (on Windows, this can
// change between reboots).
38 39
BUTIL_EXPORT std::string SysWideToNativeMB(const std::wstring& wide);
BUTIL_EXPORT std::wstring SysNativeMBToWide(const StringPiece& native_mb);
gejun's avatar
gejun committed
40 41 42 43 44 45 46 47

// Windows-specific ------------------------------------------------------------

#if defined(OS_WIN)

// Converts between 8-bit and wide strings, using the given code page. The
// code page identifier is one accepted by the Windows function
// MultiByteToWideChar().
48
BUTIL_EXPORT std::wstring SysMultiByteToWide(const StringPiece& mb,
gejun's avatar
gejun committed
49
                                            uint32_t code_page);
50
BUTIL_EXPORT std::string SysWideToMultiByte(const std::wstring& wide,
gejun's avatar
gejun committed
51 52 53 54 55 56 57 58 59 60 61 62
                                           uint32_t code_page);

#endif  // defined(OS_WIN)

// Mac-specific ----------------------------------------------------------------

#if defined(OS_MACOSX)

// Converts between STL strings and CFStringRefs/NSStrings.

// Creates a string, and returns it with a refcount of 1. You are responsible
// for releasing it. Returns NULL on failure.
63 64
BUTIL_EXPORT CFStringRef SysUTF8ToCFStringRef(const std::string& utf8);
BUTIL_EXPORT CFStringRef SysUTF16ToCFStringRef(const string16& utf16);
gejun's avatar
gejun committed
65 66

// Same, but returns an autoreleased NSString.
67 68
BUTIL_EXPORT NSString* SysUTF8ToNSString(const std::string& utf8);
BUTIL_EXPORT NSString* SysUTF16ToNSString(const string16& utf16);
gejun's avatar
gejun committed
69 70

// Converts a CFStringRef to an STL string. Returns an empty string on failure.
71 72
BUTIL_EXPORT std::string SysCFStringRefToUTF8(CFStringRef ref);
BUTIL_EXPORT string16 SysCFStringRefToUTF16(CFStringRef ref);
gejun's avatar
gejun committed
73 74 75

// Same, but accepts NSString input. Converts nil NSString* to the appropriate
// string type of length 0.
76 77
BUTIL_EXPORT std::string SysNSStringToUTF8(NSString* ref);
BUTIL_EXPORT string16 SysNSStringToUTF16(NSString* ref);
gejun's avatar
gejun committed
78 79 80

#endif  // defined(OS_MACOSX)

81
}  // namespace butil
gejun's avatar
gejun committed
82

83
#endif  // BUTIL_STRINGS_SYS_STRING_CONVERSIONS_H_