123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- package TestCode
- import (
- "fmt"
- "golang.org/x/net/context"
- "runtime"
- "sync"
- "time"
- )
- func hardWork(job interface{}) error {
- index := job.(int)
- println("Index:", index, "Start")
- time.Sleep(time.Second * 10)
- println("Index:", index, "End")
- return nil
- }
- func requestWork(ctx context.Context, job interface{}) error {
- ctx, cancel := context.WithTimeout(ctx, time.Second*2)
- defer cancel()
- done := make(chan error, 1)
- panicChan := make(chan interface{}, 1)
- go func() {
- defer func() {
- if p := recover(); p != nil {
- panicChan <- p
- }
- }()
- done <- hardWork(job)
- }()
- select {
- case err := <-done:
- return err
- case p := <-panicChan:
- panic(p)
- case <-ctx.Done():
- return ctx.Err()
- }
- }
- func Process() {
- const total = 10
- var wg sync.WaitGroup
- wg.Add(total)
- now := time.Now()
- for i := 0; i < total; i++ {
- go func(index int) {
- defer func() {
- if p := recover(); p != nil {
- fmt.Println("oops, panic")
- }
- }()
- defer wg.Done()
- requestWork(context.Background(), index)
- }(i)
- }
- wg.Wait()
- fmt.Println("elapsed:", time.Since(now))
- time.Sleep(time.Second * 20)
- fmt.Println("number of goroutines:", runtime.NumGoroutine())
- }
|