optimise sign
This commit is contained in:
parent
d2023a5789
commit
e323da1a41
52
src/main.go
52
src/main.go
@ -128,61 +128,11 @@ func compare(basePackages map[string]packageInfo, targetPackages map[string]pack
|
|||||||
}
|
}
|
||||||
|
|
||||||
func signFiles(path string) {
|
func signFiles(path string) {
|
||||||
|
|
||||||
dir, err := os.Open(path)
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
defer dir.Close()
|
|
||||||
|
|
||||||
files, err := dir.Readdirnames(-1)
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
signQueue := make(chan string, 10)
|
|
||||||
var wg sync.WaitGroup
|
|
||||||
for i := 0; i < 10; i++ {
|
|
||||||
wg.Add(1)
|
|
||||||
go func() {
|
|
||||||
defer wg.Done()
|
|
||||||
for {
|
|
||||||
select {
|
|
||||||
case path, ok := <-signQueue:
|
|
||||||
if !ok {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
ch := make(chan bool)
|
ch := make(chan bool)
|
||||||
go func() {
|
go func() {
|
||||||
sign(ch, path)
|
sign(ch, path+"*.deb")
|
||||||
}()
|
}()
|
||||||
<-ch
|
<-ch
|
||||||
default:
|
|
||||||
// No more files to sign, exit the goroutine
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
count := 0
|
|
||||||
totalCount := len(files)
|
|
||||||
filePath := ""
|
|
||||||
for _, file := range files {
|
|
||||||
totalCount--
|
|
||||||
if count < 10 && totalCount > 0 {
|
|
||||||
count++
|
|
||||||
filePath = filePath + " " + path + file
|
|
||||||
} else {
|
|
||||||
count = 0
|
|
||||||
filePath = filePath + " " + path + file
|
|
||||||
signQueue <- filePath
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
close(signQueue)
|
|
||||||
|
|
||||||
wg.Wait()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func sign(ch chan bool, path string) {
|
func sign(ch chan bool, path string) {
|
||||||
|
Loading…
Reference in New Issue
Block a user