1 Star 0 Fork 0

非空非零/jupiter

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
lifecycle.go 2.20 KB
一键复制 编辑 原始数据 按行查看 历史
aerox 提交于 2020-08-04 17:27 +08:00 . fix xcycle unit test fail
// Copyright 2020 Douyu
//
// 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 xcycle
import (
"sync"
"sync/atomic"
)
//Cycle ..
type Cycle struct {
mu *sync.Mutex
wg *sync.WaitGroup
done chan struct{}
quit chan error
closing uint32
waiting uint32
// works []func() error
}
//NewCycle new a cycle life
func NewCycle() *Cycle {
return &Cycle{
mu: &sync.Mutex{},
wg: &sync.WaitGroup{},
done: make(chan struct{}),
quit: make(chan error),
closing: 0,
waiting: 0,
}
}
/*
// Go ..
func (c *Cycle) Go(fns ...func() error) {
c.works = append(c.works, fns...)
}
//RunWait ..
func (c *Cycle) RunWait() <-chan error {
go func(c *Cycle) {
for _, fn := range c.works {
c.wg.Add(1)
go func(c *Cycle, fn func() error) {
defer c.wg.Done()
if err := fn(); err != nil {
c.quit <- err
}
}(c, fn)
}
c.Wait()
close(c.quit)
}(c)
return c.quit
}
*/
//Run a new goroutine
func (c *Cycle) Run(fn func() error) {
c.mu.Lock()
//todo add check options panic before waiting
defer c.mu.Unlock()
c.wg.Add(1)
go func(c *Cycle) {
defer c.wg.Done()
if err := fn(); err != nil {
c.quit <- err
}
}(c)
}
//Done block and return a chan error
func (c *Cycle) Done() <-chan struct{} {
if atomic.CompareAndSwapUint32(&c.waiting, 0, 1) {
go func(c *Cycle) {
c.mu.Lock()
defer c.mu.Unlock()
c.wg.Wait()
close(c.done)
}(c)
}
return c.done
}
//DoneAndClose ..
func (c *Cycle) DoneAndClose() {
<-c.Done()
c.Close()
}
//Close ..
func (c *Cycle) Close() {
c.mu.Lock()
defer c.mu.Unlock()
if atomic.CompareAndSwapUint32(&c.closing, 0, 1) {
close(c.quit)
}
}
// Wait blocked for a life cycle
func (c *Cycle) Wait() <-chan error {
return c.quit
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nonull/eden.git
git@gitee.com:nonull/eden.git
nonull
eden
jupiter
v0.3.1

搜索帮助