2016-03-14 21:53:24 +08:00
|
|
|
// The MIT License (MIT)
|
2016-02-22 08:26:58 +08:00
|
|
|
|
2016-02-27 15:43:53 +08:00
|
|
|
// Copyright (c) 2013-2016 Rapptz, ThePhD and contributors
|
2016-02-22 08:26:58 +08:00
|
|
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
// this software and associated documentation files (the "Software"), to deal in
|
|
|
|
// the Software without restriction, including without limitation the rights to
|
|
|
|
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
// the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
// subject to the following conditions:
|
|
|
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
#ifndef SOL_RAII_HPP
|
|
|
|
#define SOL_RAII_HPP
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include "traits.hpp"
|
|
|
|
|
|
|
|
namespace sol {
|
2016-02-24 12:39:46 +08:00
|
|
|
namespace detail {
|
2016-02-22 08:26:58 +08:00
|
|
|
struct default_construct {
|
|
|
|
template<typename T, typename... Args>
|
2016-03-13 20:30:14 +08:00
|
|
|
static void construct(T&& obj, Args&&... args) {
|
2016-02-24 12:39:46 +08:00
|
|
|
std::allocator<meta::Unqualified<T>> alloc{};
|
2016-02-22 08:26:58 +08:00
|
|
|
alloc.construct(obj, std::forward<Args>(args)...);
|
|
|
|
}
|
2016-03-13 20:30:14 +08:00
|
|
|
|
|
|
|
template<typename T, typename... Args>
|
|
|
|
void operator()(T&& obj, Args&&... args) const {
|
|
|
|
construct(std::forward<T>(obj), std::forward<Args>(args)...);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct default_destruct {
|
|
|
|
template<typename T>
|
|
|
|
static void destroy(T&& obj) {
|
|
|
|
std::allocator<meta::Unqualified<T>> alloc{};
|
|
|
|
alloc.destroy(obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
void operator()(T&& obj) const {
|
|
|
|
destroy(std::forward<T>(obj));
|
|
|
|
}
|
2016-02-22 08:26:58 +08:00
|
|
|
};
|
2016-02-24 12:39:46 +08:00
|
|
|
} // detail
|
2016-02-22 08:26:58 +08:00
|
|
|
|
2016-03-05 14:43:45 +08:00
|
|
|
template <typename... Args>
|
|
|
|
struct constructor_list {};
|
|
|
|
|
2016-02-22 08:26:58 +08:00
|
|
|
template<typename... Args>
|
2016-03-05 14:43:45 +08:00
|
|
|
using constructors = constructor_list<Args...>;
|
2016-02-22 08:26:58 +08:00
|
|
|
|
|
|
|
const auto default_constructor = constructors<types<>>{};
|
|
|
|
|
|
|
|
template <typename... Functions>
|
2016-03-13 20:30:14 +08:00
|
|
|
struct constructor_wrapper {
|
|
|
|
std::tuple<Functions...> set;
|
|
|
|
template <typename... Args>
|
|
|
|
constructor_wrapper(Args&&... args) : set(std::forward<Args>(args)...) {}
|
2016-02-22 08:26:58 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
template <typename... Functions>
|
2016-03-12 00:34:44 +08:00
|
|
|
constructor_wrapper<Functions...> initializers(Functions&&... functions) {
|
2016-02-22 08:26:58 +08:00
|
|
|
return constructor_wrapper<Functions...>(std::forward<Functions>(functions)...);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Function>
|
|
|
|
struct destructor_wrapper {
|
|
|
|
Function fx;
|
|
|
|
template <typename... Args>
|
|
|
|
destructor_wrapper(Args&&... args) : fx(std::forward<Args>(args)...) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct destructor_wrapper<void> {};
|
|
|
|
|
|
|
|
const destructor_wrapper<void> default_destructor{};
|
|
|
|
|
|
|
|
template <typename Fx>
|
|
|
|
inline destructor_wrapper<Fx> destructor(Fx&& fx) {
|
|
|
|
return destructor_wrapper<Fx>(std::forward<Fx>(fx));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // sol
|
|
|
|
|
|
|
|
#endif // SOL_RAII_HPP
|