mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 07:40:56 +08:00 
			
		
		
		
	刷新/预热缓存任务可以并行处理
This commit is contained in:
		@@ -1,27 +1,28 @@
 | 
			
		||||
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
 | 
			
		||||
 | 
			
		||||
package goman
 | 
			
		||||
package goman_test
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"github.com/TeaOSLab/EdgeNode/internal/goman"
 | 
			
		||||
	"testing"
 | 
			
		||||
	"time"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func TestNew(t *testing.T) {
 | 
			
		||||
	New(func() {
 | 
			
		||||
	goman.New(func() {
 | 
			
		||||
		t.Log("Hello")
 | 
			
		||||
 | 
			
		||||
		t.Log(List())
 | 
			
		||||
		t.Log(goman.List())
 | 
			
		||||
	})
 | 
			
		||||
 | 
			
		||||
	time.Sleep(1 * time.Second)
 | 
			
		||||
	t.Log(List())
 | 
			
		||||
	t.Log(goman.List())
 | 
			
		||||
 | 
			
		||||
	time.Sleep(1 * time.Second)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func TestNewWithArgs(t *testing.T) {
 | 
			
		||||
	NewWithArgs(func(args ...interface{}) {
 | 
			
		||||
	goman.NewWithArgs(func(args ...interface{}) {
 | 
			
		||||
		t.Log(args[0], args[1])
 | 
			
		||||
	}, 1, 2)
 | 
			
		||||
	time.Sleep(1 * time.Second)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										52
									
								
								internal/goman/task_group.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										52
									
								
								internal/goman/task_group.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,52 @@
 | 
			
		||||
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
 | 
			
		||||
 | 
			
		||||
package goman
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"github.com/TeaOSLab/EdgeNode/internal/zero"
 | 
			
		||||
	"runtime"
 | 
			
		||||
	"sync"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
type TaskGroup struct {
 | 
			
		||||
	semi   chan zero.Zero
 | 
			
		||||
	wg     *sync.WaitGroup
 | 
			
		||||
	locker *sync.RWMutex
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func NewTaskGroup() *TaskGroup {
 | 
			
		||||
	var concurrent = runtime.NumCPU()
 | 
			
		||||
	if concurrent <= 1 {
 | 
			
		||||
		concurrent = 2
 | 
			
		||||
	}
 | 
			
		||||
	return &TaskGroup{
 | 
			
		||||
		semi:   make(chan zero.Zero, concurrent),
 | 
			
		||||
		wg:     &sync.WaitGroup{},
 | 
			
		||||
		locker: &sync.RWMutex{},
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (this *TaskGroup) Run(f func()) {
 | 
			
		||||
	this.wg.Add(1)
 | 
			
		||||
	go func() {
 | 
			
		||||
		defer this.wg.Done()
 | 
			
		||||
 | 
			
		||||
		this.semi <- zero.Zero{}
 | 
			
		||||
 | 
			
		||||
		f()
 | 
			
		||||
 | 
			
		||||
		<-this.semi
 | 
			
		||||
	}()
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (this *TaskGroup) Wait() {
 | 
			
		||||
	this.wg.Wait()
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (this *TaskGroup) Lock() {
 | 
			
		||||
	this.locker.Lock()
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (this *TaskGroup) Unlock() {
 | 
			
		||||
	this.locker.Unlock()
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										30
									
								
								internal/goman/task_group_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								internal/goman/task_group_test.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,30 @@
 | 
			
		||||
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
 | 
			
		||||
 | 
			
		||||
package goman_test
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"github.com/TeaOSLab/EdgeNode/internal/goman"
 | 
			
		||||
	"runtime"
 | 
			
		||||
	"testing"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func TestNewTaskGroup(t *testing.T) {
 | 
			
		||||
	var group = goman.NewTaskGroup()
 | 
			
		||||
	var m = map[int]bool{}
 | 
			
		||||
 | 
			
		||||
	for i := 0; i < runtime.NumCPU()*2; i++ {
 | 
			
		||||
		var index = i
 | 
			
		||||
		group.Run(func() {
 | 
			
		||||
			t.Log("task", index)
 | 
			
		||||
 | 
			
		||||
			group.Lock()
 | 
			
		||||
			_, ok := m[index]
 | 
			
		||||
			if ok {
 | 
			
		||||
				t.Error("duplicated:", index)
 | 
			
		||||
			}
 | 
			
		||||
			m[index] = true
 | 
			
		||||
			group.Unlock()
 | 
			
		||||
		})
 | 
			
		||||
	}
 | 
			
		||||
	group.Wait()
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user