2014-10-23 19:55:45 +02:00
|
|
|
#ifndef flags_hh_INCLUDED
|
|
|
|
#define flags_hh_INCLUDED
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
template<typename Flags>
|
|
|
|
struct WithBitOps : std::false_type {};
|
|
|
|
|
|
|
|
template<typename Flags>
|
2015-05-26 19:42:09 +02:00
|
|
|
using UnderlyingType = typename std::underlying_type<Flags>::type;
|
|
|
|
|
2015-11-20 09:50:53 +01:00
|
|
|
template<typename Flags, typename T = void>
|
|
|
|
using EnableIfWithBitOps = typename std::enable_if<WithBitOps<Flags>::value, T>::type;
|
|
|
|
|
|
|
|
template<typename Flags, typename T = void>
|
|
|
|
using EnableIfWithoutBitOps = typename std::enable_if<not WithBitOps<Flags>::value, T>::type;
|
2014-10-23 19:55:45 +02:00
|
|
|
|
|
|
|
template<typename Flags, typename = EnableIfWithBitOps<Flags>>
|
|
|
|
constexpr Flags operator|(Flags lhs, Flags rhs)
|
|
|
|
{
|
2015-05-26 19:42:09 +02:00
|
|
|
return (Flags)((UnderlyingType<Flags>) lhs | (UnderlyingType<Flags>) rhs);
|
2014-10-23 19:55:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Flags, typename = EnableIfWithBitOps<Flags>>
|
|
|
|
Flags& operator|=(Flags& lhs, Flags rhs)
|
|
|
|
{
|
2015-05-26 19:42:09 +02:00
|
|
|
(UnderlyingType<Flags>&) lhs |= (UnderlyingType<Flags>) rhs;
|
2014-10-23 19:55:45 +02:00
|
|
|
return lhs;
|
|
|
|
}
|
|
|
|
|
2015-03-16 19:57:18 +01:00
|
|
|
template<typename Flags>
|
|
|
|
struct TestableFlags
|
|
|
|
{
|
|
|
|
Flags value;
|
2015-05-26 19:42:09 +02:00
|
|
|
constexpr operator bool() const { return (UnderlyingType<Flags>)value; }
|
2015-03-16 19:57:18 +01:00
|
|
|
constexpr operator Flags() const { return value; }
|
2016-11-14 20:14:09 +01:00
|
|
|
constexpr operator UnderlyingType<Flags>() const { return (UnderlyingType<Flags>)value; }
|
2016-08-30 00:56:22 +02:00
|
|
|
|
|
|
|
bool operator==(const TestableFlags<Flags>& other) const { return value == other.value; }
|
|
|
|
bool operator!=(const TestableFlags<Flags>& other) const { return value != other.value; }
|
2015-03-16 19:57:18 +01:00
|
|
|
};
|
|
|
|
|
2014-10-23 19:55:45 +02:00
|
|
|
template<typename Flags, typename = EnableIfWithBitOps<Flags>>
|
2015-03-16 19:57:18 +01:00
|
|
|
constexpr TestableFlags<Flags> operator&(Flags lhs, Flags rhs)
|
2014-10-23 19:55:45 +02:00
|
|
|
{
|
2015-05-26 19:42:09 +02:00
|
|
|
return { (Flags)((UnderlyingType<Flags>) lhs & (UnderlyingType<Flags>) rhs) };
|
2014-10-23 19:55:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Flags, typename = EnableIfWithBitOps<Flags>>
|
|
|
|
Flags& operator&=(Flags& lhs, Flags rhs)
|
|
|
|
{
|
2015-05-26 19:42:09 +02:00
|
|
|
(UnderlyingType<Flags>&) lhs &= (UnderlyingType<Flags>) rhs;
|
2014-10-23 19:55:45 +02:00
|
|
|
return lhs;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Flags, typename = EnableIfWithBitOps<Flags>>
|
|
|
|
constexpr Flags operator~(Flags lhs)
|
|
|
|
{
|
2015-05-26 19:42:09 +02:00
|
|
|
return (Flags)(~(UnderlyingType<Flags>)lhs);
|
2014-10-23 19:55:45 +02:00
|
|
|
}
|
|
|
|
|
2016-08-30 00:56:22 +02:00
|
|
|
template<typename Flags, typename = EnableIfWithBitOps<Flags>>
|
|
|
|
constexpr Flags operator^(Flags lhs, Flags rhs)
|
|
|
|
{
|
|
|
|
return (Flags)((UnderlyingType<Flags>) lhs ^ (UnderlyingType<Flags>) rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Flags, typename = EnableIfWithBitOps<Flags>>
|
|
|
|
Flags& operator^=(Flags& lhs, Flags rhs)
|
|
|
|
{
|
|
|
|
(UnderlyingType<Flags>&) lhs ^= (UnderlyingType<Flags>) rhs;
|
|
|
|
return lhs;
|
|
|
|
}
|
|
|
|
|
2014-10-23 19:55:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // flags_hh_INCLUDED
|