blob: bb9b9d996067b2e69922d76bde5d226973d3ff17 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 util
import (
"golang.org/x/net/context"
"sync"
)
type GoRoutine struct {
ctx context.Context
cancel context.CancelFunc
wg sync.WaitGroup
mux sync.RWMutex
closed bool
}
func (g *GoRoutine) Do(f func(context.Context)) {
g.wg.Add(1)
go func() {
defer g.wg.Done()
defer RecoverAndReport()
f(g.ctx)
}()
}
func (g *GoRoutine) Close(wait bool) {
g.mux.Lock()
defer g.mux.Unlock()
if g.closed {
return
}
g.closed = true
g.cancel()
if wait {
g.Wait()
}
}
func (g *GoRoutine) Wait() {
g.wg.Wait()
}
var defaultGo *GoRoutine
func init() {
defaultGo = NewGo(context.Background())
}
func Go(f func(context.Context)) {
defaultGo.Do(f)
}
func GoCloseAndWait() {
defaultGo.Close(true)
Logger().Debugf("all goroutines exited")
}
func NewGo(ctx context.Context) *GoRoutine {
ctx, cancel := context.WithCancel(ctx)
gr := &GoRoutine{
ctx: ctx,
cancel: cancel,
}
return gr
}