2012-05-03 18:09:51 +10:00
|
|
|
/*
|
2015-04-13 18:05:28 +10:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2012-05-03 18:09:51 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-05-03 18:09:51 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2012-05-03 18:09:51 +10:00
|
|
|
*
|
|
|
|
* Copyright 2012 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTIL_RAII_HPP
|
|
|
|
#define __UTIL_RAII_HPP
|
|
|
|
|
|
|
|
#include "preprocessor.hpp"
|
|
|
|
|
2015-11-11 17:01:00 +11:00
|
|
|
#include <functional>
|
|
|
|
|
2014-02-12 17:04:48 +11:00
|
|
|
/// Defines a translation-unit-unique variable useful for unnamed scoped variables
|
2012-05-11 12:19:56 +10:00
|
|
|
#define raii PASTE(__unique_, __COUNTER__)
|
2012-05-03 18:09:51 +10:00
|
|
|
|
|
|
|
namespace util {
|
2014-02-12 17:04:48 +11:00
|
|
|
/// Increments a counter for the lifetime of the object
|
2012-05-03 18:09:51 +10:00
|
|
|
template <typename T>
|
|
|
|
struct scoped_counter {
|
2015-06-04 22:18:43 +10:00
|
|
|
explicit scoped_counter (T &_counter):
|
2012-05-03 18:09:51 +10:00
|
|
|
counter (_counter)
|
|
|
|
{ ++counter; }
|
|
|
|
|
|
|
|
~scoped_counter ()
|
|
|
|
{ --counter; }
|
|
|
|
|
|
|
|
T &counter;
|
|
|
|
};
|
|
|
|
|
2015-04-13 18:06:08 +10:00
|
|
|
|
2014-02-12 17:04:48 +11:00
|
|
|
/// Executes a function upon object destruction
|
2012-05-03 18:09:51 +10:00
|
|
|
struct scoped_function {
|
2015-11-11 17:01:00 +11:00
|
|
|
explicit scoped_function (std::function<void(void)> &&_func):
|
2012-05-03 18:09:51 +10:00
|
|
|
func (std::move (_func))
|
|
|
|
{ ; }
|
|
|
|
|
|
|
|
~scoped_function ()
|
|
|
|
{ func (); }
|
|
|
|
|
2015-11-11 17:01:00 +11:00
|
|
|
void clear (void)
|
|
|
|
{
|
|
|
|
func = [] (void) { ; };
|
|
|
|
}
|
|
|
|
|
|
|
|
std::function<void(void)> func;
|
2012-05-03 18:09:51 +10:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|