| /* |
| * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. |
| * |
| * Use of this source code is governed by a BSD-style license |
| * that can be found in the LICENSE file in the root of the source |
| * tree. An additional intellectual property rights grant can be found |
| * in the file PATENTS. All contributing project authors may |
| * be found in the AUTHORS file in the root of the source tree. |
| */ |
| |
| // Atomic system independant 32-bit signed integer. |
| // Windows implementation. |
| #ifndef WEBRTC_SYSTEM_WRAPPERS_SOURCE_ATOMIC32_WINDOWS_H_ |
| #define WEBRTC_SYSTEM_WRAPPERS_SOURCE_ATOMIC32_WINDOWS_H_ |
| |
| #include <malloc.h> |
| #include <windows.h> |
| |
| #include "common_types.h" |
| |
| namespace webrtc { |
| class Atomic32Impl |
| { |
| public: |
| inline Atomic32Impl(WebRtc_Word32 initialValue); |
| inline ~Atomic32Impl(); |
| |
| inline WebRtc_Word32 operator++(); |
| inline WebRtc_Word32 operator--(); |
| |
| inline Atomic32Impl& operator=(const Atomic32Impl& rhs); |
| inline Atomic32Impl& operator=(WebRtc_Word32 rhs); |
| inline WebRtc_Word32 operator+=(WebRtc_Word32 rhs); |
| inline WebRtc_Word32 operator-=(WebRtc_Word32 rhs); |
| |
| inline bool CompareExchange(WebRtc_Word32 newValue, |
| WebRtc_Word32 compareValue); |
| |
| inline WebRtc_Word32 Value() const; |
| private: |
| void* _ptrMemory; |
| // Volatile ensures full memory barriers. |
| volatile LONG* _value; |
| }; |
| |
| // TODO (hellner) use aligned_malloc instead of doing it manually. |
| inline Atomic32Impl::Atomic32Impl(WebRtc_Word32 initialValue) |
| : _ptrMemory(NULL), |
| _value(NULL) |
| { // Align the memory associated with _value on a 32-bit boundary. This is a |
| // requirement for the used Windows APIs to be atomic. |
| // Keep _ptrMemory to be able to reclaim memory. |
| _ptrMemory = malloc(sizeof(WebRtc_Word32)*2); |
| _value = reinterpret_cast<LONG*> (((uintptr_t)_ptrMemory+3)&(~0x3)); |
| *_value = initialValue; |
| } |
| |
| inline Atomic32Impl::~Atomic32Impl() |
| { |
| if(_ptrMemory != NULL) |
| { |
| free(_ptrMemory); |
| } |
| } |
| |
| inline WebRtc_Word32 Atomic32Impl::operator++() |
| { |
| return (WebRtc_Word32)InterlockedIncrement(_value); |
| } |
| |
| inline WebRtc_Word32 Atomic32Impl::operator--() |
| { |
| return (WebRtc_Word32)InterlockedDecrement(_value); |
| } |
| |
| inline Atomic32Impl& Atomic32Impl::operator=(const Atomic32Impl& rhs) |
| { |
| *_value = *rhs._value; |
| return *this; |
| } |
| |
| inline Atomic32Impl& Atomic32Impl::operator=(WebRtc_Word32 rhs) |
| { |
| *_value = rhs; |
| return *this; |
| } |
| |
| inline WebRtc_Word32 Atomic32Impl::operator+=(WebRtc_Word32 rhs) |
| { |
| return InterlockedExchangeAdd(_value,rhs); |
| } |
| |
| inline WebRtc_Word32 Atomic32Impl::operator-=(WebRtc_Word32 rhs) |
| { |
| return InterlockedExchangeAdd(_value,-rhs); |
| } |
| |
| inline bool Atomic32Impl::CompareExchange(WebRtc_Word32 newValue, |
| WebRtc_Word32 compareValue) |
| { |
| const LONG oldValue = InterlockedCompareExchange(_value,newValue, |
| compareValue); |
| // If the old value and the compare value is the same an exchange happened. |
| return (oldValue == compareValue); |
| } |
| |
| inline WebRtc_Word32 Atomic32Impl::Value() const |
| { |
| return *_value; |
| } |
| } // namespace webrtc |
| |
| #endif // WEBRTC_SYSTEM_WRAPPERS_SOURCE_ATOMIC32_WINDOWS_H_ |