kakoune/src/unicode.hh

64 lines
1.1 KiB
C++
Raw Normal View History

#ifndef unicode_hh_INCLUDED
#define unicode_hh_INCLUDED
#include <wctype.h>
namespace Kakoune
{
2015-04-29 14:51:15 +02:00
using Codepoint = char32_t;
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';
}
2013-12-14 15:49:10 +01:00
enum WordType { Word, WORD };
template<WordType word_type = Word>
inline bool is_word(Codepoint c)
{
return c == '_' or iswalnum(c);
2013-12-14 15:49:10 +01:00
}
template<>
inline bool is_word<WORD>(Codepoint c)
{
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)
{
return not (is_word(c) or is_horizontal_blank(c) or is_eol(c));
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_word(c))
return CharCategories::Word;
if (is_eol(c))
return CharCategories::EndOfLine;
if (is_horizontal_blank(c))
2013-12-14 15:49:10 +01:00
return CharCategories::Blank;
return word_type == WORD ? CharCategories::Word
: CharCategories::Punctuation;
}
}
#endif // unicode_hh_INCLUDED