~thomas-voss/biometryd/remove-obsolete-configuration-header

« back to all changes in this revision

Viewing changes to src/util/atomic_counter.h

  • Committer: Thomas Voß
  • Date: 2016-05-02 06:16:01 UTC
  • Revision ID: thomas.voss@canonical.com-20160502061601-vqzwfw4c0rxfna04
Initial commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2016 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU Lesser General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authored by: Thomas Voß <thomas.voss@canonical.com>
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef UTIL_ATOMIC_COUNTER_H_
 
21
#define UTIL_ATOMIC_COUNTER_H_
 
22
 
 
23
#include <biometry/visibility.h>
 
24
 
 
25
#include <cstdint>
 
26
 
 
27
#include <atomic>
 
28
 
 
29
namespace util
 
30
{
 
31
/// @brief AtomicCounter models an atomic counter.
 
32
class BIOMETRY_DLL_PUBLIC AtomicCounter
 
33
{
 
34
public:
 
35
    /// @brief AtomicCounter initializes a new instance to the given value.
 
36
    explicit AtomicCounter(std::uint64_t value = 0);
 
37
 
 
38
    /// @brief increment increments the value of the counter and returns the previously stored value.
 
39
    std::uint64_t increment();
 
40
 
 
41
private:
 
42
    /// @cond
 
43
    std::atomic<std::uint64_t> counter;
 
44
    /// @endcond
 
45
};
 
46
 
 
47
template<typename Tag>
 
48
inline AtomicCounter& counter()
 
49
{
 
50
    static AtomicCounter instance;
 
51
    return instance;
 
52
}
 
53
}
 
54
 
 
55
#endif // UTIL_ATOMIC_COUNTER_H_