solidity/libdevcore/UTF8.cpp

82 lines
1.5 KiB
C++
Raw Normal View History

2016-08-05 09:56:59 +00:00
/*
This file is part of solidity.
2016-08-05 09:56:59 +00:00
solidity is free software: you can redistribute it and/or modify
2016-08-05 09:56:59 +00:00
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
solidity is distributed in the hope that it will be useful,
2016-08-05 09:56:59 +00:00
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.
You should have received a copy of the GNU General Public License
along with solidity. If not, see <http://www.gnu.org/licenses/>.
2016-08-05 09:56:59 +00:00
*/
/** @file UTF8.cpp
* @author Alex Beregszaszi
* @date 2016
*
* UTF-8 related helpers
*/
#include "UTF8.h"
namespace dev
{
bool validateUTF8(std::string const& _input, size_t& _invalidPosition)
2016-08-05 09:56:59 +00:00
{
2016-08-08 18:12:52 +00:00
const size_t length = _input.length();
2016-08-05 09:56:59 +00:00
bool valid = true;
2016-08-08 18:12:52 +00:00
size_t i = 0;
2016-08-05 09:56:59 +00:00
for (; i < length; i++)
{
2016-08-08 18:12:11 +00:00
if ((unsigned char)_input[i] < 0x80)
2016-08-05 09:56:59 +00:00
continue;
2016-08-08 18:12:52 +00:00
size_t count = 0;
2016-08-08 18:12:11 +00:00
switch(_input[i] & 0xe0) {
2016-08-05 09:56:59 +00:00
case 0xc0: count = 1; break;
case 0xe0: count = 2; break;
case 0xf0: count = 3; break;
default: break;
}
if (count == 0)
{
valid = false;
break;
}
if ((i + count) >= length)
{
valid = false;
break;
}
2016-08-08 18:12:52 +00:00
for (size_t j = 0; j < count; j++)
2016-08-05 09:56:59 +00:00
{
i++;
2016-08-08 18:12:11 +00:00
if ((_input[i] & 0xc0) != 0x80)
2016-08-05 09:56:59 +00:00
{
valid = false;
break;
}
}
}
if (valid)
return true;
2016-08-08 18:12:11 +00:00
_invalidPosition = i;
2016-08-05 09:56:59 +00:00
return false;
}
}