mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 11:05:54 +00:00
* Rename unity files * Move some modules to new subdirectories * Remove obsolete Visual Studio project files * Remove obsolete coding style and TODO list
97 lines
3.5 KiB
Plaintext
97 lines
3.5 KiB
Plaintext
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of Beast: https://github.com/vinniefalco/Beast
|
|
Copyright 2013, Vinnie Falco <vinnie.falco@gmail.com>
|
|
|
|
Portions of this file are from JUCE.
|
|
Copyright (c) 2013 - Raw Material Software Ltd.
|
|
Please visit http://www.juce.com
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
namespace beast
|
|
{
|
|
|
|
String String::fromCFString (CFStringRef cfString)
|
|
{
|
|
if (cfString == 0)
|
|
return String::empty;
|
|
|
|
CFRange range = { 0, CFStringGetLength (cfString) };
|
|
HeapBlock <UniChar> u ((size_t) range.length + 1);
|
|
CFStringGetCharacters (cfString, range, u);
|
|
u[range.length] = 0;
|
|
|
|
return String (CharPointer_UTF16 ((const CharPointer_UTF16::CharType*) u.getData()));
|
|
}
|
|
|
|
CFStringRef String::toCFString() const
|
|
{
|
|
CharPointer_UTF16 utf16 (toUTF16());
|
|
return CFStringCreateWithCharacters (kCFAllocatorDefault, (const UniChar*) utf16.getAddress(), (CFIndex) utf16.length());
|
|
}
|
|
|
|
String String::convertToPrecomposedUnicode() const
|
|
{
|
|
#if BEAST_IOS
|
|
BEAST_AUTORELEASEPOOL
|
|
{
|
|
return nsStringToBeast ([beastStringToNS (*this) precomposedStringWithCanonicalMapping]);
|
|
}
|
|
#else
|
|
UnicodeMapping map;
|
|
|
|
map.unicodeEncoding = CreateTextEncoding (kTextEncodingUnicodeDefault,
|
|
kUnicodeNoSubset,
|
|
kTextEncodingDefaultFormat);
|
|
|
|
map.otherEncoding = CreateTextEncoding (kTextEncodingUnicodeDefault,
|
|
kUnicodeCanonicalCompVariant,
|
|
kTextEncodingDefaultFormat);
|
|
|
|
map.mappingVersion = kUnicodeUseLatestMapping;
|
|
|
|
UnicodeToTextInfo conversionInfo = 0;
|
|
String result;
|
|
|
|
if (CreateUnicodeToTextInfo (&map, &conversionInfo) == noErr)
|
|
{
|
|
const size_t bytesNeeded = CharPointer_UTF16::getBytesRequiredFor (getCharPointer());
|
|
|
|
HeapBlock <char> tempOut;
|
|
tempOut.calloc (bytesNeeded + 4);
|
|
|
|
ByteCount bytesRead = 0;
|
|
ByteCount outputBufferSize = 0;
|
|
|
|
if (ConvertFromUnicodeToText (conversionInfo,
|
|
bytesNeeded, (ConstUniCharArrayPtr) toUTF16().getAddress(),
|
|
kUnicodeDefaultDirectionMask,
|
|
0, 0, 0, 0,
|
|
bytesNeeded, &bytesRead,
|
|
&outputBufferSize, tempOut) == noErr)
|
|
{
|
|
result = String (CharPointer_UTF16 ((CharPointer_UTF16::CharType*) tempOut.getData()));
|
|
}
|
|
|
|
DisposeUnicodeToTextInfo (&conversionInfo);
|
|
}
|
|
|
|
return result;
|
|
#endif
|
|
}
|
|
|
|
} // beast
|