Browse Source

Using nested Namespaces.

main
offa 7 years ago
parent
commit
7fc1164b2c
2 changed files with 61 additions and 66 deletions
  1. +1
    -4
      include/detail/scope_guard_base.h
  2. +60
    -62
      include/detail/wrapper.h

+ 1
- 4
include/detail/scope_guard_base.h View File

#include <utility> #include <utility>
#include <type_traits> #include <type_traits>


namespace sr
{
namespace detail
namespace sr::detail
{ {


template<class F, class S> template<class F, class S>
}; };


} }
}

+ 60
- 62
include/detail/wrapper.h View File

#include <functional> #include <functional>
#include <type_traits> #include <type_traits>


namespace sr
namespace sr::detail
{ {
namespace detail
{


template<class T>
class Wrapper
{
public:
template<class T>
class Wrapper
{
public:


template<class TT, class G, std::enable_if_t<std::is_constructible_v<T, TT>, int> = 0>
explicit Wrapper(TT&& value, G&& g) noexcept(noexcept(Wrapper{value})) : Wrapper(value)
{
g.release();
}
template<class TT, class G, std::enable_if_t<std::is_constructible_v<T, TT>, int> = 0>
explicit Wrapper(TT&& value, G&& g) noexcept(noexcept(Wrapper{value})) : Wrapper(value)
{
g.release();
}




T& get() noexcept
{
return m_value;
}
T& get() noexcept
{
return m_value;
}


const T& get() const noexcept
{
return m_value;
}
const T& get() const noexcept
{
return m_value;
}


void reset(T&& newValue) noexcept(std::is_nothrow_assignable_v<T, decltype(std::move_if_noexcept(newValue))>)
{
m_value = std::move_if_noexcept(newValue);
}
void reset(T&& newValue) noexcept(std::is_nothrow_assignable_v<T, decltype(std::move_if_noexcept(newValue))>)
{
m_value = std::move_if_noexcept(newValue);
}


void reset(const T& newValue) noexcept(std::is_nothrow_assignable_v<T, const T&>)
{
m_value = newValue;
}
void reset(const T& newValue) noexcept(std::is_nothrow_assignable_v<T, const T&>)
{
m_value = newValue;
}




private:
private:


Wrapper(const T& value) noexcept(noexcept(T{value})) : m_value(value)
{
}
Wrapper(const T& value) noexcept(noexcept(T{value})) : m_value(value)
{
}


Wrapper(T&& value) noexcept(noexcept(T{std::move_if_noexcept(value)})) : m_value(std::move_if_noexcept(value))
{
}
Wrapper(T&& value) noexcept(noexcept(T{std::move_if_noexcept(value)})) : m_value(std::move_if_noexcept(value))
{
}




T m_value;
};
T m_value;
};




template<class T>
class Wrapper<T&>
{
public:
template<class T>
class Wrapper<T&>
{
public:


template<class TT, class G, std::enable_if_t<std::is_convertible_v<TT, T&>, int> = 0>
explicit Wrapper(TT&& value, G&& g) noexcept(noexcept(static_cast<T&>(value))) : m_value(static_cast<T&>(value))
{
g.release();
}
template<class TT, class G, std::enable_if_t<std::is_convertible_v<TT, T&>, int> = 0>
explicit Wrapper(TT&& value, G&& g) noexcept(noexcept(static_cast<T&>(value))) : m_value(static_cast<T&>(value))
{
g.release();
}




T& get() noexcept
{
return m_value.get();
}
T& get() noexcept
{
return m_value.get();
}


const T& get() const noexcept
{
return m_value.get();
}
const T& get() const noexcept
{
return m_value.get();
}


void reset(T& newValue) noexcept
{
m_value = std::ref(newValue);
}
void reset(T& newValue) noexcept
{
m_value = std::ref(newValue);
}




private:
private:

std::reference_wrapper<T> m_value;
};


std::reference_wrapper<T> m_value;
};


}
} }

Loading…
Cancel
Save