1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/sync/waitgroup.v

42 lines
952 B
V
Raw Normal View History

2020-01-23 23:04:46 +03:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
2019-07-30 16:06:16 +03:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module sync
2019-12-22 01:41:42 +03:00
// [init_with=new_waitgroup] // TODO: implement support for init_with struct attribute, and disallow WaitGroup{} from outside the sync.new_waitgroup() function.
[ref_only]
pub struct WaitGroup {
2019-07-30 16:06:16 +03:00
mut:
mu &Mutex = &Mutex(0)
active int
2019-07-30 16:06:16 +03:00
}
pub fn new_waitgroup() &WaitGroup {
return &WaitGroup{mu: sync.new_mutex() }
2019-10-25 17:24:40 +03:00
}
2020-05-17 14:51:18 +03:00
pub fn (mut wg WaitGroup) add(delta int) {
wg.mu.lock()
wg.active += delta
wg.mu.unlock()
if wg.active < 0 {
panic('Negative number of jobs in waitgroup')
}
2019-07-30 16:06:16 +03:00
}
2020-05-17 14:51:18 +03:00
pub fn (mut wg WaitGroup) done() {
wg.add(-1)
2019-07-30 16:06:16 +03:00
}
2019-12-06 19:23:24 +03:00
pub fn (wg &WaitGroup) wait() {
for wg.active > 0 {
// Do not remove this, busy empty loops are optimized
// with -prod by some compilers, see issue #2874
$if windows {
C.Sleep(1)
} $else {
C.usleep(1000)
}
}
2019-07-30 16:06:16 +03:00
}