Herb Sutter の C++ およびそれ以降のアトミックに関する講演を見て、使いやすいロック/ロック解除メカニズムという彼のアイデアを垣間見ました。
メカニズムは次のようになります。
atomic{
// code here
}
将来の標準を待ちたくないので、これを自分で実装しようとしましたが、思いついたのは次のとおりです。
#define CONCAT_IMPL(A, B) A ## B
#define CONCAT(A, B) CONCAT_IMPL(A, B)
# define atomic(a) { \
static_assert(std::is_same<decltype(a), std::mutex>::value,"Argument must be of type std::mutex !");\
struct CONCAT(atomic_impl_, __LINE__)\
{\
std::function<void()> func;\
std::mutex* impl;\
CONCAT(atomic_impl_, __LINE__)(std::mutex& b)\
{ \
impl = &b;\
impl->lock();\
}\
CONCAT(~atomic_impl_, __LINE__)()\
{ \
func();\
impl->unlock(); \
}\
} CONCAT(atomic_impl_var_, __LINE__)(a);\
CONCAT(atomic_impl_var_, __LINE__).func = [&]()
と使用法:
std::mutex mut;
atomic(mut){
// code here
};}
問題は、明らかに、}; です。削除したいもの。
これは何らかの方法で可能ですか?