2019-07-30 16:06:16 +03:00
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module sync
2019-10-25 17:24:40 +03:00
//[init_with=new_waitgroup] // TODO: implement support for init_with struct attribute, and disallow WaitGroup{} from outside the sync.new_waitgroup() function.
2019-10-24 13:19:27 +03:00
pub struct WaitGroup {
2019-07-30 16:06:16 +03:00
mut :
2019-08-29 11:48:03 +03:00
mu Mutex
active int
2019-07-30 16:06:16 +03:00
}
2019-10-25 17:24:40 +03:00
pub fn new_waitgroup ( ) WaitGroup {
mut w := WaitGroup { }
w . mu = sync . new_mutex ( )
return w
}
2019-07-30 16:06:16 +03:00
pub fn ( wg mut WaitGroup ) add ( delta int ) {
2019-08-29 11:48:03 +03:00
wg . mu . lock ( )
wg . active += delta
wg . mu . unlock ( )
if wg . active < 0 {
panic ( ' N e g a t i v e n u m b e r o f j o b s i n w a i t g r o u p ' )
}
2019-07-30 16:06:16 +03:00
}
pub fn ( wg mut WaitGroup ) done ( ) {
2019-08-29 11:48:03 +03:00
wg . add ( - 1 )
2019-07-30 16:06:16 +03:00
}
pub fn ( wg mut WaitGroup ) wait ( ) {
2019-08-29 11:48:03 +03:00
for wg . active > 0 {
// waiting
}
2019-07-30 16:06:16 +03:00
}