Skip to content

Commit b392a3a

Browse files
committed
signals: move ParseSignal to containerd package
Signed-off-by: Samuel Karp <[email protected]>
1 parent df60d32 commit b392a3a

File tree

6 files changed

+48
-27
lines changed

6 files changed

+48
-27
lines changed

cmd/ctr/commands/signals.go

-23
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,8 @@ package commands
1818

1919
import (
2020
gocontext "context"
21-
"fmt"
2221
"os"
2322
"os/signal"
24-
"strconv"
25-
"strings"
2623
"syscall"
2724

2825
"github.com/containerd/containerd"
@@ -53,23 +50,3 @@ func StopCatch(sigc chan os.Signal) {
5350
signal.Stop(sigc)
5451
close(sigc)
5552
}
56-
57-
// ParseSignal parses a given string into a syscall.Signal
58-
// it checks that the signal exists in the platform-appropriate signalMap
59-
func ParseSignal(rawSignal string) (syscall.Signal, error) {
60-
s, err := strconv.Atoi(rawSignal)
61-
if err == nil {
62-
sig := syscall.Signal(s)
63-
for _, msig := range signalMap {
64-
if sig == msig {
65-
return sig, nil
66-
}
67-
}
68-
return -1, fmt.Errorf("unknown signal %q", rawSignal)
69-
}
70-
signal, ok := signalMap[strings.TrimPrefix(strings.ToUpper(rawSignal), "SIG")]
71-
if !ok {
72-
return -1, fmt.Errorf("unknown signal %q", rawSignal)
73-
}
74-
return signal, nil
75-
}

cmd/ctr/commands/tasks/kill.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ var killCommand = cli.Command{
4747
if id == "" {
4848
return errors.New("container id must be provided")
4949
}
50-
signal, err := commands.ParseSignal(context.String("signal"))
50+
signal, err := containerd.ParseSignal(context.String("signal"))
5151
if err != nil {
5252
return err
5353
}

cmd/ctr/commands/signal_map_linux.go signal_map_linux.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
limitations under the License.
1515
*/
1616

17-
package commands
17+
package containerd
1818

1919
import (
2020
"syscall"

cmd/ctr/commands/signal_map_unix.go signal_map_unix.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
limitations under the License.
1717
*/
1818

19-
package commands
19+
package containerd
2020

2121
import (
2222
"syscall"

cmd/ctr/commands/signal_map_windows.go signal_map_windows.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
limitations under the License.
1515
*/
1616

17-
package commands
17+
package containerd
1818

1919
import (
2020
"syscall"

signals.go

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/*
2+
Copyright The containerd Authors.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
package containerd
18+
19+
import (
20+
"fmt"
21+
"strconv"
22+
"strings"
23+
"syscall"
24+
)
25+
26+
// ParseSignal parses a given string into a syscall.Signal
27+
// it checks that the signal exists in the platform-appropriate signalMap
28+
func ParseSignal(rawSignal string) (syscall.Signal, error) {
29+
s, err := strconv.Atoi(rawSignal)
30+
if err == nil {
31+
sig := syscall.Signal(s)
32+
for _, msig := range signalMap {
33+
if sig == msig {
34+
return sig, nil
35+
}
36+
}
37+
return -1, fmt.Errorf("unknown signal %q", rawSignal)
38+
}
39+
signal, ok := signalMap[strings.TrimPrefix(strings.ToUpper(rawSignal), "SIG")]
40+
if !ok {
41+
return -1, fmt.Errorf("unknown signal %q", rawSignal)
42+
}
43+
return signal, nil
44+
}

0 commit comments

Comments
 (0)