-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.go
64 lines (58 loc) · 1.18 KB
/
utils.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package main
import (
"fmt"
"os"
"os/exec"
"os/signal"
"runtime"
"sync/atomic"
"syscall"
)
// clear screen function
func clearScreen() {
var cmd *exec.Cmd
switch runtime.GOOS {
case "linux", "darwin":
cmd = exec.Command("clear")
case "windows":
cmd = exec.Command("cmd", "/c", "cls")
default:
return
}
cmd.Stdout = os.Stdout
if err := cmd.Run(); err != nil {
fmt.Fprintln(os.Stderr, "Failed to clear screen:", err)
}
}
func closeStopChannel(stopChan chan struct{}) {
select {
case <-stopChan:
// channel already closed, do nothing
default:
close(stopChan)
}
}
// ctrl+c
func handleGracefulShutdown(stopChan chan struct{}) {
interruptChan := make(chan os.Signal, 1)
signal.Notify(interruptChan, os.Interrupt, syscall.SIGTERM)
go func() {
<-interruptChan
fmt.Fprintln(os.Stderr, "\nCtrl+C pressed. Shutting down...")
closeStopChannel(stopChan)
}()
}
func setNumThreads(userThreads int) int {
if userThreads <= 0 || userThreads > runtime.NumCPU() {
return runtime.NumCPU()
}
return userThreads
}
func isAllHashesCracked(hashes []YescryptHash) bool {
for i := range hashes {
if atomic.LoadInt32(&hashes[i].Cracked) == 0 {
return false
}
}
return true
}