-
-
Notifications
You must be signed in to change notification settings - Fork 270
/
segment-exitcode.go
69 lines (62 loc) · 1.22 KB
/
segment-exitcode.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
65
66
67
68
69
package main
import (
"fmt"
"strconv"
"github.com/justjanne/powerline-go/exitcode"
pwl "github.com/justjanne/powerline-go/powerline"
)
var exitCodes = map[int]string{
// 1: generic
1: "ERROR",
// 2, 126, 127: common shell conventions, e.g. bash, zsh
2: "USAGE",
126: "NOEXEC",
127: "NOTFOUND",
// 64-78: BSD, sysexits.h
64: "USAGE",
65: "DATAERR",
66: "NOINPUT",
67: "NOUSER",
68: "NOHOST",
69: "UNAVAILABLE",
70: "SOFTWARE",
71: "OSERR",
72: "OSFILE",
73: "CANTCREAT",
74: "IOERR",
75: "TEMPFAIL",
76: "PROTOCOL",
77: "NOPERM",
78: "CONFIG",
}
func getMeaningFromExitCode(exitCode int) string {
if exitCode < 128 {
name, ok := exitCodes[exitCode]
if ok {
return name
}
} else {
name, ok := exitcode.Signals[exitCode-128]
if ok {
return name
}
}
return fmt.Sprintf("%d", exitCode)
}
func segmentExitCode(p *powerline) []pwl.Segment {
var meaning string
if p.cfg.PrevError == 0 {
return []pwl.Segment{}
}
if p.cfg.NumericExitCodes {
meaning = strconv.Itoa(p.cfg.PrevError)
} else {
meaning = getMeaningFromExitCode(p.cfg.PrevError)
}
return []pwl.Segment{{
Name: "exit",
Content: meaning,
Foreground: p.theme.CmdFailedFg,
Background: p.theme.CmdFailedBg,
}}
}