aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/retain_guard.h
blob: 090f3ce75cf2664a5b24aa6595a1152fad6a1d90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "monitored_refcount.h"

namespace vespalib {

/*
 * Class containing a reference to a monitored reference count,
 * intended to block teardown of the class owning the monitored
 * reference count.
 */
class RetainGuard {
public:
    RetainGuard(MonitoredRefCount & refCount) noexcept
        : _refCount(&refCount)
    {
        _refCount->retain();
    }
    RetainGuard(const RetainGuard & rhs) = delete;
    RetainGuard & operator=(const RetainGuard & rhs) = delete;
    RetainGuard(RetainGuard && rhs) noexcept
        : _refCount(rhs._refCount)
    {
        rhs._refCount = nullptr;
    }
    RetainGuard & operator=(RetainGuard && rhs) noexcept {
        release();
        _refCount = rhs._refCount;
        rhs._refCount = nullptr;
        return *this;
    }
    ~RetainGuard() { release(); }
private:
    void release() noexcept{
        if (_refCount != nullptr) {
            _refCount->release();
            _refCount = nullptr;
        }
    }
    MonitoredRefCount * _refCount;
};

}