forked from jedisct1/piknik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signals_bsd.go
44 lines (41 loc) · 928 Bytes
/
signals_bsd.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
// +build darwin dragonfly freebsd netbsd openbsd
package main
import (
"encoding/binary"
"fmt"
"os"
"os/signal"
"syscall"
"time"
)
func handleSignals() {
signals := make(chan os.Signal, 1)
signal.Notify(signals, syscall.SIGINFO)
for {
signal, ok := <-signals
if !ok {
break
}
switch signal {
case syscall.SIGINFO:
storedContent.RLock()
procName := "piknik"
if len(os.Args) >= 1 {
procName = os.Args[0]
}
if storedContent.ts == nil {
fmt.Printf("%v: the clipboard is empty\n", procName)
} else {
elapsed := time.Since(time.Unix(int64(binary.LittleEndian.Uint64(storedContent.ts)), 0))
if elapsed <= 1 {
fmt.Printf("%v: the clipboard is not empty (last filled a few moments ago)\n",
procName)
} else {
fmt.Printf("%v: the clipboard is not empty (last filled %v minutes ago)\n",
procName, elapsed)
}
}
storedContent.RUnlock()
}
}
}