2013-12-09 18:09:58 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
2013-12-06 20:22:10 +00:00
|
|
|
*
|
2017-07-24 19:02:59 +00:00
|
|
|
* Copyright (C) 2013-2017 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
|
|
|
* Copyright (C) 2013-2017 KiCad Developers, see CHANGELOG.TXT for contributors.
|
2013-12-08 15:25:11 +00:00
|
|
|
*
|
2013-12-09 18:09:58 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2013-12-08 06:48:25 +00:00
|
|
|
*
|
2013-12-09 18:09:58 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2013-12-08 06:48:25 +00:00
|
|
|
*
|
2013-12-09 18:09:58 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
2013-12-05 20:36:18 +00:00
|
|
|
*/
|
|
|
|
|
2013-12-09 18:09:58 +00:00
|
|
|
#include <utf8.h>
|
2017-07-24 19:02:59 +00:00
|
|
|
#include <ki_exception.h>
|
2018-10-16 13:44:58 +00:00
|
|
|
#include <wx/strconv.h>
|
|
|
|
#include <wx/buffer.h>
|
2018-10-18 13:11:41 +00:00
|
|
|
#include <vector>
|
2013-12-05 20:36:18 +00:00
|
|
|
|
2014-01-02 02:17:07 +00:00
|
|
|
/* THROW_IO_ERROR needs this, but it includes this file, so until some
|
2013-12-09 18:09:58 +00:00
|
|
|
factoring of THROW_IO_ERROR into a separate header, defer and use the asserts.
|
|
|
|
#include <richio.h>
|
|
|
|
*/
|
2013-12-06 12:51:39 +00:00
|
|
|
|
2013-12-09 18:09:58 +00:00
|
|
|
#include <assert.h>
|
2013-12-06 20:22:10 +00:00
|
|
|
|
2017-07-24 19:02:59 +00:00
|
|
|
|
2013-12-08 06:48:25 +00:00
|
|
|
/*
|
2013-12-09 18:09:58 +00:00
|
|
|
These are not inlined so that code space is saved by encapsulating the
|
2014-01-02 02:17:07 +00:00
|
|
|
creation of intermediate objects and the referencing of wxConvUTF8.
|
2013-12-08 06:48:25 +00:00
|
|
|
*/
|
2013-12-06 20:22:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
UTF8::UTF8( const wxString& o ) :
|
2017-07-25 19:14:31 +00:00
|
|
|
m_s( (const char*) o.utf8_str() )
|
2013-12-06 20:22:10 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-07-25 19:14:31 +00:00
|
|
|
wxString UTF8::wx_str() const
|
|
|
|
{
|
|
|
|
return wxString( c_str(), wxConvUTF8 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-06 20:22:10 +00:00
|
|
|
UTF8::operator wxString () const
|
|
|
|
{
|
|
|
|
return wxString( c_str(), wxConvUTF8 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UTF8& UTF8::operator=( const wxString& o )
|
|
|
|
{
|
2017-07-25 19:14:31 +00:00
|
|
|
m_s = (const char*) o.utf8_str();
|
2013-12-06 20:22:10 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2013-12-08 06:48:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
// There is no wxWidgets function that does this, because wchar_t is 16 bits
|
|
|
|
// on windows and wx wants to encode the output in UTF16 for such.
|
|
|
|
|
2013-12-08 15:25:11 +00:00
|
|
|
int UTF8::uni_forward( const unsigned char* aSequence, unsigned* aResult )
|
2013-12-08 06:48:25 +00:00
|
|
|
{
|
|
|
|
unsigned ch = *aSequence;
|
|
|
|
|
|
|
|
if( ch < 0x80 )
|
|
|
|
{
|
|
|
|
if( aResult )
|
|
|
|
*aResult = ch;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-12-08 15:25:11 +00:00
|
|
|
const unsigned char* s = aSequence;
|
|
|
|
|
|
|
|
static const unsigned char utf8_len[] = {
|
|
|
|
// Map encoded prefix byte to sequence length. Zero means
|
|
|
|
// illegal prefix. See RFC 3629 for details
|
|
|
|
/*
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 00-0F
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 70-7F
|
|
|
|
*/
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 80-8F
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // B0-BF
|
|
|
|
0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, // C0-C1 + C2-CF
|
|
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, // D0-DF
|
|
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, // E0-EF
|
|
|
|
4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 // F0-F4 + F5-FF
|
|
|
|
};
|
2013-12-08 06:48:25 +00:00
|
|
|
|
|
|
|
int len = utf8_len[ *s - 0x80 /* top half of table is missing */ ];
|
|
|
|
|
|
|
|
switch( len )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case 0:
|
|
|
|
THROW_IO_ERROR( "invalid start byte" );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
if( ( s[1] & 0xc0 ) != 0x80 )
|
|
|
|
{
|
|
|
|
THROW_IO_ERROR( "invalid continuation byte" );
|
|
|
|
}
|
|
|
|
|
|
|
|
ch = ((s[0] & 0x1f) << 6) +
|
|
|
|
((s[1] & 0x3f) << 0);
|
|
|
|
|
2017-07-24 19:02:59 +00:00
|
|
|
// assert( ch > 0x007F && ch <= 0x07FF );
|
2013-12-08 06:48:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
if( (s[1] & 0xc0) != 0x80 ||
|
|
|
|
(s[2] & 0xc0) != 0x80 ||
|
|
|
|
(s[0] == 0xE0 && s[1] < 0xA0)
|
|
|
|
// || (s[0] == 0xED && s[1] > 0x9F)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
THROW_IO_ERROR( "invalid continuation byte" );
|
|
|
|
}
|
|
|
|
|
|
|
|
ch = ((s[0] & 0x0f) << 12) +
|
|
|
|
((s[1] & 0x3f) << 6 ) +
|
|
|
|
((s[2] & 0x3f) << 0 );
|
|
|
|
|
2017-07-24 19:02:59 +00:00
|
|
|
// assert( ch > 0x07FF && ch <= 0xFFFF );
|
2013-12-08 06:48:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 4:
|
|
|
|
if( (s[1] & 0xc0) != 0x80 ||
|
|
|
|
(s[2] & 0xc0) != 0x80 ||
|
|
|
|
(s[3] & 0xc0) != 0x80 ||
|
|
|
|
(s[0] == 0xF0 && s[1] < 0x90) ||
|
|
|
|
(s[0] == 0xF4 && s[1] > 0x8F) )
|
|
|
|
{
|
|
|
|
THROW_IO_ERROR( "invalid continuation byte" );
|
|
|
|
}
|
|
|
|
|
|
|
|
ch = ((s[0] & 0x7) << 18) +
|
|
|
|
((s[1] & 0x3f) << 12) +
|
|
|
|
((s[2] & 0x3f) << 6 ) +
|
|
|
|
((s[3] & 0x3f) << 0 );
|
|
|
|
|
2017-07-24 19:02:59 +00:00
|
|
|
// assert( ch > 0xFFFF && ch <= 0x10ffff );
|
2013-12-08 06:48:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( aResult )
|
|
|
|
*aResult = ch;
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-07-24 19:02:59 +00:00
|
|
|
bool IsUTF8( const char* aString )
|
|
|
|
{
|
|
|
|
int len = strlen( aString );
|
|
|
|
|
|
|
|
if( len )
|
|
|
|
{
|
|
|
|
const unsigned char* next = (unsigned char*) aString;
|
|
|
|
const unsigned char* end = next + len;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
while( next < end )
|
|
|
|
{
|
|
|
|
next += UTF8::uni_forward( next, NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
// uni_forward() should find the exact end if it is truly UTF8
|
|
|
|
if( next > end )
|
|
|
|
return false;
|
|
|
|
}
|
2018-04-18 07:10:29 +00:00
|
|
|
catch( const IO_ERROR& )
|
2017-07-24 19:02:59 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-16 13:44:58 +00:00
|
|
|
UTF8::UTF8( const wchar_t* txt )
|
2013-12-08 06:48:25 +00:00
|
|
|
{
|
2018-10-17 14:31:11 +00:00
|
|
|
try
|
|
|
|
{
|
2018-10-18 13:11:41 +00:00
|
|
|
std::vector< char > temp( wcslen( txt ) * 4 + 1 );
|
|
|
|
wxConvUTF8.WC2MB( temp.data(), txt, temp.size() );
|
|
|
|
m_s.assign( temp.data() );
|
2018-10-17 14:31:11 +00:00
|
|
|
}
|
|
|
|
catch(...)
|
|
|
|
{
|
|
|
|
auto string = wxSafeConvertWX2MB( txt );
|
|
|
|
m_s.assign( string );
|
|
|
|
}
|
2013-12-08 06:48:25 +00:00
|
|
|
|
2018-10-17 14:31:11 +00:00
|
|
|
m_s.shrink_to_fit();
|
2013-12-08 06:48:25 +00:00
|
|
|
}
|
|
|
|
|
2013-12-09 18:09:58 +00:00
|
|
|
|
2017-12-08 16:57:53 +00:00
|
|
|
UTF8& UTF8::operator+=( unsigned w_ch )
|
2017-12-08 13:31:31 +00:00
|
|
|
{
|
2017-12-08 16:57:53 +00:00
|
|
|
if( w_ch <= 0x7F )
|
|
|
|
m_s.operator+=( char( w_ch ) );
|
2017-12-08 13:31:31 +00:00
|
|
|
else
|
|
|
|
{
|
2018-10-16 13:44:58 +00:00
|
|
|
//TODO: Remove wchar use. Replace with std::byte*
|
2017-12-08 16:57:53 +00:00
|
|
|
wchar_t wide_chr[2]; // buffer to store wide chars (UTF16) read from aText
|
2017-12-08 13:31:31 +00:00
|
|
|
wide_chr[1] = 0;
|
2017-12-08 16:57:53 +00:00
|
|
|
wide_chr[0] = w_ch;
|
2017-12-08 13:31:31 +00:00
|
|
|
UTF8 substr( wide_chr );
|
|
|
|
m_s += substr.m_s;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (UTF8&) *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-09 18:09:58 +00:00
|
|
|
#if 0 // some unit tests:
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
wxString wxFunctionTaking_wxString( const wxString& wx )
|
|
|
|
{
|
|
|
|
printf( "%s:'%s'\n", __func__, (char*) UTF8( wx ) );
|
|
|
|
printf( "%s:'%s'\n", __func__, (const char*) UTF8( wx ) );
|
|
|
|
printf( "%s:'%s'\n", __func__, UTF8( wx ).c_str() );
|
|
|
|
|
|
|
|
return wx;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
std::string str = "input";
|
|
|
|
|
|
|
|
UTF8 u0 = L"wide string";
|
|
|
|
UTF8 u1 = "initial";
|
|
|
|
wxString wx = wxT( "input2" );
|
|
|
|
|
|
|
|
printf( "u0:'%s'\n", u0.c_str() );
|
|
|
|
printf( "u1:'%s'\n", u1.c_str() );
|
|
|
|
|
|
|
|
u1 = str;
|
|
|
|
|
|
|
|
wxString wx2 = u1;
|
|
|
|
|
|
|
|
// force a std::string into a UTF8, then into a wxString, then copy construct:
|
|
|
|
wxString wx3 = (UTF8&) u1;
|
|
|
|
|
|
|
|
UTF8 u2 = wx2;
|
|
|
|
|
|
|
|
u2 += 'X';
|
|
|
|
|
|
|
|
printf( "u2:'%s'\n", u2.c_str() );
|
|
|
|
|
|
|
|
// key accomplishments here:
|
|
|
|
// 1) passing a UTF8 to a function which normally takes a wxString.
|
|
|
|
// 2) return a wxString back into a UTF8.
|
|
|
|
UTF8 result = wxFunctionTaking_wxString( u2 );
|
|
|
|
|
|
|
|
printf( "result:'%s'\n", result.c_str() );
|
|
|
|
|
|
|
|
// test the unicode iterator:
|
|
|
|
for( UTF8::uni_iter it = u2.ubegin(); it < u2.uend(); )
|
|
|
|
{
|
|
|
|
// test post-increment:
|
2014-02-03 15:10:37 +00:00
|
|
|
printf( " _%02x_", *it++ );
|
2013-12-09 18:09:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
printf( "\n" );
|
|
|
|
|
|
|
|
UTF8::uni_iter it = u2.ubegin();
|
|
|
|
|
|
|
|
UTF8::uni_iter it2 = it++;
|
|
|
|
|
|
|
|
printf( "post_inc:'%c' should be 'i'\n", *it2 );
|
|
|
|
|
|
|
|
it2 = ++it;
|
|
|
|
|
|
|
|
printf( "pre_inc:'%c' should be 'p'\n", *it2 );
|
|
|
|
|
|
|
|
printf( "u[1]:'%c' should be 'n'\n", u2[1] );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|