#include <string>
#include <sstream>
bool is_surrogate_high( unsigned long c )
{
return 0xd800 <= c && c <= 0xdbff;
}
bool is_surrogate_low( unsigned long c )
{
return 0xdc00 <= c && c <= 0xdfff;
}
bool is_surrogate_high_or_low( unsigned long c )
{
return is_surrogate_high( c )
|| is_surrogate_low( c );
}
bool get_surrogate_pair( unsigned long num,
std::pair<unsigned long,unsigned long>* sur_pair )
{
unsigned long high, low;
num -= 0x10000;
high = num / 0x400;
high += 0xd800;
low = num % 0x400;
low += 0xdc00;
if( is_surrogate_high( high ) && is_surrogate_low( low ) )
{
(*sur_pair).first = high;
(*sur_pair).second = low;
return true;
}
return false;
}
bool code_to_string( const std::wstring code_hex_str,
std::wstring& result_str )
{
if( code_hex_str.length() == 4 )
{
wchar_t* end_ptr;
unsigned long c = wcstol( code_hex_str.c_str(), &end_ptr, 16 );
if( is_surrogate_high_or_low( c ) )
return false;
result_str = std::wstring( 1, c );
return true;
}
else if( code_hex_str.length() == 5 )
{
wchar_t* end_ptr;
unsigned long c = wcstol( code_hex_str.c_str(), &end_ptr, 16 );
std::pair<unsigned long, unsigned long> sur_pair;
if( get_surrogate_pair( c, &sur_pair ) )
{
wchar_t wc[3];
wc[0] = sur_pair.first;
wc[1] = sur_pair.second;
wc[2] = L'\0';
result_str = wc;
return true;
}
}
return false;
}