2017-10-02 15:25:59 +11:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2017-10-02 15:25:59 +11:00
|
|
|
*
|
|
|
|
* Copyright 2017 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef CRUFT_UTIL_UTF8_HPP
|
|
|
|
#define CRUFT_UTIL_UTF8_HPP
|
|
|
|
|
|
|
|
#include "./view.hpp"
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft::utf8 {
|
2017-10-02 15:25:59 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
using codepoint_t = uint32_t;
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
std::vector<codepoint_t>
|
2018-08-05 14:42:02 +10:00
|
|
|
decode (cruft::view<const std::byte*>);
|
2017-10-02 15:25:59 +11:00
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
inline auto
|
2018-08-05 14:42:02 +10:00
|
|
|
decode (cruft::view<const char*> data)
|
2017-10-02 15:25:59 +11:00
|
|
|
{
|
|
|
|
return decode ({
|
|
|
|
reinterpret_cast<const std::byte*> (data.cbegin ()),
|
|
|
|
reinterpret_cast<const std::byte*> (data.cend ())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
inline auto
|
2018-08-05 14:42:02 +10:00
|
|
|
decode (cruft::view<const uint8_t*> data)
|
2017-10-02 15:25:59 +11:00
|
|
|
{
|
|
|
|
return decode ({
|
|
|
|
reinterpret_cast<const char*> (data.cbegin ()),
|
|
|
|
reinterpret_cast<const char*> (data.cend ())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
std::vector<std::byte>
|
2018-08-05 14:42:02 +10:00
|
|
|
encode (cruft::view<const char*>);
|
2017-10-02 15:25:59 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
struct error : public std::exception {};
|
|
|
|
|
|
|
|
struct malformed_error : public error { };
|
|
|
|
struct illegal_codepoint : public malformed_error {};
|
|
|
|
|
|
|
|
struct overlong_error : public error { };
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|