2013-07-04 20:56:19 +00:00
|
|
|
/*
|
2015-02-17 21:11:34 +00:00
|
|
|
* ZeroTier One - Network Virtualization Everywhere
|
2018-01-08 22:33:28 +00:00
|
|
|
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/
|
2013-07-04 20:56:19 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-04-28 03:47:25 +00:00
|
|
|
*
|
|
|
|
* --
|
|
|
|
*
|
|
|
|
* You can be released from the requirements of the license by purchasing
|
|
|
|
* a commercial license. Buying such a license is mandatory as soon as you
|
|
|
|
* develop commercial closed-source software that incorporates or links
|
|
|
|
* directly against ZeroTier software without disclosing the source code
|
|
|
|
* of your own application.
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
|
|
|
|
2013-12-07 00:49:20 +00:00
|
|
|
#ifndef ZT_ATOMICCOUNTER_HPP
|
|
|
|
#define ZT_ATOMICCOUNTER_HPP
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2014-02-28 17:15:29 +00:00
|
|
|
#include "Constants.hpp"
|
2013-07-04 20:56:19 +00:00
|
|
|
#include "NonCopyable.hpp"
|
|
|
|
|
2016-09-02 19:34:02 +00:00
|
|
|
#ifndef __GNUC__
|
2014-02-28 17:15:29 +00:00
|
|
|
#include <atomic>
|
|
|
|
#endif
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
namespace ZeroTier {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Simple atomic counter supporting increment and decrement
|
|
|
|
*/
|
|
|
|
class AtomicCounter : NonCopyable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AtomicCounter()
|
|
|
|
{
|
2014-02-28 17:15:29 +00:00
|
|
|
_v = 0;
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
|
2017-08-08 20:21:10 +00:00
|
|
|
inline int load() const
|
|
|
|
{
|
|
|
|
#ifdef __GNUC__
|
2017-08-14 18:43:39 +00:00
|
|
|
return __sync_or_and_fetch(const_cast<int *>(&_v),0);
|
2017-08-08 20:21:10 +00:00
|
|
|
#else
|
|
|
|
return _v.load();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
inline int operator++()
|
|
|
|
{
|
|
|
|
#ifdef __GNUC__
|
|
|
|
return __sync_add_and_fetch(&_v,1);
|
2014-02-28 17:15:29 +00:00
|
|
|
#else
|
|
|
|
return ++_v;
|
2013-07-04 20:56:19 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int operator--()
|
|
|
|
{
|
|
|
|
#ifdef __GNUC__
|
|
|
|
return __sync_sub_and_fetch(&_v,1);
|
2014-02-28 17:15:29 +00:00
|
|
|
#else
|
|
|
|
return --_v;
|
2013-07-04 20:56:19 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2016-09-02 19:34:02 +00:00
|
|
|
#ifdef __GNUC__
|
2013-07-04 20:56:19 +00:00
|
|
|
int _v;
|
2016-09-02 19:34:02 +00:00
|
|
|
#else
|
|
|
|
std::atomic_int _v;
|
2014-02-28 17:15:29 +00:00
|
|
|
#endif
|
2013-07-04 20:56:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|
|
|
|
|
|
|
|
#endif
|