mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
sync: add Once.do_with_param/2 method in addition to the existing Once.do/1 (workaround the absence of closures on windows)
This commit is contained in:
parent
5d2995c4d5
commit
dd835acb8d
2 changed files with 71 additions and 1 deletions
39
vlib/sync/once_with_param_test.v
Normal file
39
vlib/sync/once_with_param_test.v
Normal file
|
@ -0,0 +1,39 @@
|
|||
import sync
|
||||
|
||||
// NB: this is the same test as `vlib/sync/once_test.v`, but
|
||||
// it uses an explicit passing of the voidptr parameter in
|
||||
// once.do_with_param/2, instead of passing a closure of it
|
||||
// in once.do/1.
|
||||
// Closures are not yet implemented on Windows.
|
||||
|
||||
struct One {
|
||||
pub mut:
|
||||
i int
|
||||
}
|
||||
|
||||
fn (mut o One) add(i int) {
|
||||
o.i = o.i + i
|
||||
}
|
||||
|
||||
fn run(mut once sync.Once, mut o One, c chan bool) {
|
||||
once.do_with_param(fn (mut o One) {
|
||||
o.add(5)
|
||||
}, o)
|
||||
c <- true
|
||||
}
|
||||
|
||||
fn test_once() {
|
||||
mut o := &One{}
|
||||
mut once := sync.new_once()
|
||||
c := chan bool{}
|
||||
n := 10
|
||||
|
||||
// It is executed 10 times, but only once actually.
|
||||
for i := 0; i < n; i++ {
|
||||
go run(mut once, mut o, c)
|
||||
}
|
||||
for i := 0; i < n; i++ {
|
||||
<-c
|
||||
}
|
||||
assert o.i == 5
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue