forked from cilium/cilium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
map_get.go
87 lines (74 loc) · 2 KB
/
map_get.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// Copyright 2018 Authors of Cilium
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cmd
import (
"fmt"
"os"
"text/tabwriter"
daemonAPI "github.com/cilium/cilium/api/v1/client/daemon"
"github.com/cilium/cilium/api/v1/models"
"github.com/cilium/cilium/pkg/api"
"github.com/cilium/cilium/pkg/command"
"github.com/spf13/cobra"
)
// mapGetCmd represents the map_get command
var mapGetCmd = &cobra.Command{
Use: "get <name>",
Short: "Display BPF map information",
Example: "cilium map get cilium_ipcache",
Run: func(cmd *cobra.Command, args []string) {
if len(args) == 0 {
Fatalf("map name must be specified")
}
params := daemonAPI.NewGetMapNameParams().WithName(args[0]).WithTimeout(api.ClientTimeout)
resp, err := client.Daemon.GetMapName(params)
if err != nil {
Fatalf("%s", err)
}
m := resp.Payload
if m == nil {
return
}
if command.OutputJSON() {
if err := command.PrintOutput(m); err != nil {
os.Exit(1)
}
} else {
printMapEntries(m)
}
},
}
func printMapEntries(m *models.BPFMap) {
if m.Cache == nil {
fmt.Printf("Cache is disabled\n\n")
return
}
if len(m.Cache) == 0 {
fmt.Printf("Cache is empty\n\n")
return
}
w := tabwriter.NewWriter(os.Stdout, 5, 0, 3, ' ', 0)
fmt.Fprintf(w, "Key\tValue\tState\tError\n")
for _, e := range m.Cache {
if e != nil {
fmt.Fprintf(w, "%s\t%s\t%s\t%s\n",
e.Key, e.Value, e.DesiredAction, e.LastError)
}
}
w.Flush()
}
func init() {
mapCmd.AddCommand(mapGetCmd)
command.AddJSONOutput(mapGetCmd)
}