countdown_event.cpp 3.37 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The ASF licenses this file
// to you 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
//
//   http://www.apache.org/licenses/LICENSE-2.0
//
// 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.

gejun's avatar
gejun committed
18 19 20 21
// bthread - A M:N threading library to make applications more concurrent.

// Date: 2016/06/03 13:15:24

22
#include "butil/atomicops.h"     // butil::atomic<int>
gejun's avatar
gejun committed
23
#include "bthread/butex.h"
gejun's avatar
gejun committed
24 25 26 27
#include "bthread/countdown_event.h"

namespace bthread {

gejun's avatar
gejun committed
28 29 30 31 32 33 34
CountdownEvent::CountdownEvent(int initial_count) {
    if (initial_count < 0) {
        LOG(FATAL) << "Invalid initial_count=" << initial_count;
        abort();
    }
    _butex = butex_create_checked<int>();
    *_butex = initial_count;
gejun's avatar
gejun committed
35 36 37 38
    _wait_was_invoked = false;
}

CountdownEvent::~CountdownEvent() {
gejun's avatar
gejun committed
39
    butex_destroy(_butex);
gejun's avatar
gejun committed
40 41 42
}

void CountdownEvent::signal(int sig) {
43 44 45
    // Have to save _butex, *this is probably defreferenced by the wait thread
    // which sees fetch_sub
    void* const saved_butex = _butex;
46 47
    const int prev = ((butil::atomic<int>*)_butex)
        ->fetch_sub(sig, butil::memory_order_release);
48
    // DON'T touch *this ever after
gejun's avatar
gejun committed
49 50 51 52
    if (prev > sig) {
        return;
    }
    LOG_IF(ERROR, prev < sig) << "Counter is over decreased";
53
    butex_wake_all(saved_butex);
gejun's avatar
gejun committed
54 55
}

56
int CountdownEvent::wait() {
gejun's avatar
gejun committed
57 58 59
    _wait_was_invoked = true;
    for (;;) {
        const int seen_counter = 
60
            ((butil::atomic<int>*)_butex)->load(butil::memory_order_acquire);
gejun's avatar
gejun committed
61
        if (seen_counter <= 0) {
62 63 64 65 66
            return 0;
        }
        if (butex_wait(_butex, seen_counter, NULL) < 0 &&
            errno != EWOULDBLOCK && errno != EINTR) {
            return errno;
gejun's avatar
gejun committed
67 68 69 70 71 72
        }
    }
}

void CountdownEvent::add_count(int v) {
    if (v <= 0) {
gejun's avatar
gejun committed
73
        LOG_IF(ERROR, v < 0) << "Invalid count=" << v;
gejun's avatar
gejun committed
74 75 76 77
        return;
    }
    LOG_IF(ERROR, _wait_was_invoked) 
            << "Invoking add_count() after wait() was invoked";
78
    ((butil::atomic<int>*)_butex)->fetch_add(v, butil::memory_order_release);
gejun's avatar
gejun committed
79 80 81
}

void CountdownEvent::reset(int v) {
gejun's avatar
gejun committed
82 83 84 85
    if (v < 0) {
        LOG(ERROR) << "Invalid count=" << v;
        return;
    }
gejun's avatar
gejun committed
86
    const int prev_counter =
87 88
            ((butil::atomic<int>*)_butex)
                ->exchange(v, butil::memory_order_release);
gejun's avatar
gejun committed
89 90
    LOG_IF(ERROR, _wait_was_invoked && prev_counter)
        << "Invoking reset() while count=" << prev_counter;
gejun's avatar
gejun committed
91 92 93 94 95 96 97
    _wait_was_invoked = false;
}

int CountdownEvent::timed_wait(const timespec& duetime) {
    _wait_was_invoked = true;
    for (;;) {
        const int seen_counter = 
98
            ((butil::atomic<int>*)_butex)->load(butil::memory_order_acquire);
gejun's avatar
gejun committed
99 100 101
        if (seen_counter <= 0) {
            return 0;
        }
102 103
        if (butex_wait(_butex, seen_counter, &duetime) < 0 &&
            errno != EWOULDBLOCK && errno != EINTR) {
gejun's avatar
gejun committed
104
            return errno;
gejun's avatar
gejun committed
105 106 107 108 109
        }
    }
}

}  // namespace bthread