-
Notifications
You must be signed in to change notification settings - Fork 720
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: lhy1024 <[email protected]>
- Loading branch information
Showing
3 changed files
with
126 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// Copyright 2023 TiKV Project Authors. | ||
// | ||
// Licensed 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. | ||
|
||
package syncutil | ||
|
||
import ( | ||
"sync" | ||
) | ||
|
||
// FlexibleWaitGroup is a flexible wait group. | ||
// Note: we can't use sync.WaitGroup because it doesn't support to add before wait. | ||
type FlexibleWaitGroup struct { | ||
sync.Mutex | ||
count int | ||
done chan struct{} | ||
} | ||
|
||
// NewFlexibleWaitGroup creates a FlexibleWaitGroup. | ||
func NewFlexibleWaitGroup() *FlexibleWaitGroup { | ||
return &FlexibleWaitGroup{ | ||
done: make(chan struct{}), | ||
} | ||
} | ||
|
||
// Add adds delta to the FlexibleWaitGroup counter. | ||
func (fwg *FlexibleWaitGroup) Add(delta int) { | ||
fwg.Lock() | ||
defer fwg.Unlock() | ||
|
||
fwg.count += delta | ||
if fwg.count <= 0 { | ||
close(fwg.done) | ||
} | ||
} | ||
|
||
// Done decrements the FlexibleWaitGroup counter. | ||
func (fwg *FlexibleWaitGroup) Done() { | ||
fwg.Add(-1) | ||
} | ||
|
||
// Wait blocks until the FlexibleWaitGroup counter is zero. | ||
func (fwg *FlexibleWaitGroup) Wait() { | ||
<-fwg.done | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
// Copyright 2022 TiKV Project Authors. | ||
// | ||
// Licensed 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. | ||
|
||
package syncutil | ||
|
||
import ( | ||
"testing" | ||
"time" | ||
) | ||
|
||
func TestFlexibleWaitGroup(t *testing.T) { | ||
fwg := NewFlexibleWaitGroup() | ||
go func() { | ||
for i := 0; i < 20; i++ { | ||
fwg.Add(1) | ||
go func(i int) { | ||
defer fwg.Done() | ||
time.Sleep(time.Millisecond * time.Duration(i*50)) | ||
}(i) | ||
} | ||
}() | ||
fwg.Wait() | ||
} | ||
|
||
func TestAddAfterWait(t *testing.T) { | ||
fwg := NewFlexibleWaitGroup() | ||
startWait := make(chan struct{}) | ||
addTwice := make(chan struct{}) | ||
done := make(chan struct{}) | ||
|
||
// First goroutine: Adds a task, then waits for the second task to be added before finishing. | ||
go func() { | ||
defer fwg.Done() | ||
fwg.Add(1) | ||
<-addTwice | ||
}() | ||
|
||
// Second goroutine: adds a second task after ensure the third goroutine has started to wait | ||
// and triggers the first goroutine to finish. | ||
go func() { | ||
defer fwg.Done() | ||
<-startWait | ||
fwg.Add(1) | ||
addTwice <- struct{}{} | ||
}() | ||
|
||
// Third goroutine: waits for all tasks to be added, then finishes. | ||
go func() { | ||
startWait <- struct{}{} | ||
fwg.Wait() | ||
done <- struct{}{} | ||
}() | ||
<-done | ||
} |