2012-10-09 19:15:05 +02:00
|
|
|
#ifndef unicode_hh_INCLUDED
|
|
|
|
#define unicode_hh_INCLUDED
|
|
|
|
|
2014-01-05 16:14:58 +01:00
|
|
|
#include <wctype.h>
|
2012-10-09 19:15:05 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2015-04-29 14:51:15 +02:00
|
|
|
using Codepoint = char32_t;
|
2012-10-09 19:15:05 +02:00
|
|
|
|
|
|
|
inline bool is_eol(Codepoint c)
|
|
|
|
{
|
|
|
|
return c == '\n';
|
|
|
|
}
|
|
|
|
|
2013-11-17 23:54:26 +01:00
|
|
|
inline bool is_horizontal_blank(Codepoint c)
|
|
|
|
{
|
|
|
|
return c == ' ' or c == '\t';
|
|
|
|
}
|
|
|
|
|
2015-07-02 00:47:22 +02:00
|
|
|
inline bool is_blank(Codepoint c)
|
|
|
|
{
|
|
|
|
return c == ' ' or c == '\t' or c == '\n';
|
|
|
|
}
|
|
|
|
|
2013-12-14 15:49:10 +01:00
|
|
|
enum WordType { Word, WORD };
|
|
|
|
|
|
|
|
template<WordType word_type = Word>
|
|
|
|
inline bool is_word(Codepoint c)
|
|
|
|
{
|
2014-01-05 16:14:58 +01:00
|
|
|
return c == '_' or iswalnum(c);
|
2013-12-14 15:49:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
|
|
|
inline bool is_word<WORD>(Codepoint c)
|
|
|
|
{
|
2015-04-15 01:34:00 +02:00
|
|
|
return not is_horizontal_blank(c) and not is_eol(c);
|
2013-12-14 15:49:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
inline bool is_punctuation(Codepoint c)
|
|
|
|
{
|
2015-04-15 01:34:00 +02:00
|
|
|
return not (is_word(c) or is_horizontal_blank(c) or is_eol(c));
|
2013-12-14 15:49:10 +01:00
|
|
|
}
|
|
|
|
|
2015-11-15 14:24:39 +01:00
|
|
|
inline bool is_basic_alpha(Codepoint c)
|
|
|
|
{
|
|
|
|
return (c >= 'a' and c <= 'z') or (c >= 'A' and c <= 'Z');
|
|
|
|
}
|
|
|
|
|
2013-12-14 15:49:10 +01:00
|
|
|
enum class CharCategories
|
|
|
|
{
|
|
|
|
Blank,
|
|
|
|
EndOfLine,
|
|
|
|
Word,
|
|
|
|
Punctuation,
|
|
|
|
};
|
|
|
|
|
|
|
|
template<WordType word_type = Word>
|
|
|
|
inline CharCategories categorize(Codepoint c)
|
|
|
|
{
|
|
|
|
if (is_eol(c))
|
|
|
|
return CharCategories::EndOfLine;
|
2015-04-15 01:34:00 +02:00
|
|
|
if (is_horizontal_blank(c))
|
2013-12-14 15:49:10 +01:00
|
|
|
return CharCategories::Blank;
|
2016-04-03 19:25:48 +02:00
|
|
|
if (word_type == WORD or is_word(c))
|
|
|
|
return CharCategories::Word;
|
|
|
|
return CharCategories::Punctuation;
|
2013-12-14 15:49:10 +01:00
|
|
|
}
|
|
|
|
|
2015-11-11 01:21:20 +01:00
|
|
|
inline Codepoint to_lower(Codepoint cp) { return towlower((wchar_t)cp); }
|
|
|
|
inline Codepoint to_upper(Codepoint cp) { return towupper((wchar_t)cp); }
|
|
|
|
|
|
|
|
inline char to_lower(char c) { return c >= 'A' and c <= 'Z' ? c - 'A' + 'a' : c; }
|
|
|
|
inline char to_upper(char c) { return c >= 'a' and c <= 'z' ? c - 'a' + 'A' : c; }
|
|
|
|
|
2012-10-09 19:15:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // unicode_hh_INCLUDED
|