Skip to content

Commit 4e8053e

Browse files
Merge pull request #7 from thaJeztah/remove_go1.4
remove support for go1.3
2 parents 3a66f25 + 15567a6 commit 4e8053e

File tree

3 files changed

+17
-118
lines changed

3 files changed

+17
-118
lines changed

trap_others.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build !windows
12
// +build !windows
23

34
package mousetrap

trap_windows.go

+16-72
Original file line numberDiff line numberDiff line change
@@ -1,98 +1,42 @@
1-
// +build windows
2-
// +build !go1.4
3-
41
package mousetrap
52

63
import (
7-
"fmt"
8-
"os"
94
"syscall"
105
"unsafe"
116
)
127

13-
const (
14-
// defined by the Win32 API
15-
th32cs_snapprocess uintptr = 0x2
16-
)
17-
18-
var (
19-
kernel = syscall.MustLoadDLL("kernel32.dll")
20-
CreateToolhelp32Snapshot = kernel.MustFindProc("CreateToolhelp32Snapshot")
21-
Process32First = kernel.MustFindProc("Process32FirstW")
22-
Process32Next = kernel.MustFindProc("Process32NextW")
23-
)
24-
25-
// ProcessEntry32 structure defined by the Win32 API
26-
type processEntry32 struct {
27-
dwSize uint32
28-
cntUsage uint32
29-
th32ProcessID uint32
30-
th32DefaultHeapID int
31-
th32ModuleID uint32
32-
cntThreads uint32
33-
th32ParentProcessID uint32
34-
pcPriClassBase int32
35-
dwFlags uint32
36-
szExeFile [syscall.MAX_PATH]uint16
37-
}
38-
39-
func getProcessEntry(pid int) (pe *processEntry32, err error) {
40-
snapshot, _, e1 := CreateToolhelp32Snapshot.Call(th32cs_snapprocess, uintptr(0))
41-
if snapshot == uintptr(syscall.InvalidHandle) {
42-
err = fmt.Errorf("CreateToolhelp32Snapshot: %v", e1)
43-
return
8+
func getProcessEntry(pid int) (*syscall.ProcessEntry32, error) {
9+
snapshot, err := syscall.CreateToolhelp32Snapshot(syscall.TH32CS_SNAPPROCESS, 0)
10+
if err != nil {
11+
return nil, err
4412
}
45-
defer syscall.CloseHandle(syscall.Handle(snapshot))
46-
47-
var processEntry processEntry32
48-
processEntry.dwSize = uint32(unsafe.Sizeof(processEntry))
49-
ok, _, e1 := Process32First.Call(snapshot, uintptr(unsafe.Pointer(&processEntry)))
50-
if ok == 0 {
51-
err = fmt.Errorf("Process32First: %v", e1)
52-
return
13+
defer syscall.CloseHandle(snapshot)
14+
var procEntry syscall.ProcessEntry32
15+
procEntry.Size = uint32(unsafe.Sizeof(procEntry))
16+
if err = syscall.Process32First(snapshot, &procEntry); err != nil {
17+
return nil, err
5318
}
54-
5519
for {
56-
if processEntry.th32ProcessID == uint32(pid) {
57-
pe = &processEntry
58-
return
20+
if procEntry.ProcessID == uint32(pid) {
21+
return &procEntry, nil
5922
}
60-
61-
ok, _, e1 = Process32Next.Call(snapshot, uintptr(unsafe.Pointer(&processEntry)))
62-
if ok == 0 {
63-
err = fmt.Errorf("Process32Next: %v", e1)
64-
return
23+
err = syscall.Process32Next(snapshot, &procEntry)
24+
if err != nil {
25+
return nil, err
6526
}
6627
}
6728
}
6829

69-
func getppid() (pid int, err error) {
70-
pe, err := getProcessEntry(os.Getpid())
71-
if err != nil {
72-
return
73-
}
74-
75-
pid = int(pe.th32ParentProcessID)
76-
return
77-
}
78-
7930
// StartedByExplorer returns true if the program was invoked by the user double-clicking
8031
// on the executable from explorer.exe
8132
//
8233
// It is conservative and returns false if any of the internal calls fail.
8334
// It does not guarantee that the program was run from a terminal. It only can tell you
8435
// whether it was launched from explorer.exe
8536
func StartedByExplorer() bool {
86-
ppid, err := getppid()
37+
pe, err := getProcessEntry(syscall.Getppid())
8738
if err != nil {
8839
return false
8940
}
90-
91-
pe, err := getProcessEntry(ppid)
92-
if err != nil {
93-
return false
94-
}
95-
96-
name := syscall.UTF16ToString(pe.szExeFile[:])
97-
return name == "explorer.exe"
41+
return "explorer.exe" == syscall.UTF16ToString(pe.ExeFile[:])
9842
}

trap_windows_1.4.go

-46
This file was deleted.

0 commit comments

Comments
 (0)