This repository was archived by the owner on Feb 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathlist.go
146 lines (131 loc) · 3.5 KB
/
list.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"text/tabwriter"
"time"
"github.com/urfave/cli"
)
const formatOptions = `table or json`
const defaultOwner = "root"
// containerState represents the platform agnostic pieces relating to a
// running container's status and state
type containerState struct {
// Version is the OCI version for the container
Version string `json:"ociVersion"`
// ID is the container ID
ID string `json:"id"`
// InitProcessPid is the init process id in the parent namespace
InitProcessPid int `json:"pid"`
// Status is the current status of the container, running, paused, ...
Status string `json:"status"`
// Bundle is the path on the filesystem to the bundle
Bundle string `json:"bundle"`
// Rootfs is a path to a directory containing the container's root filesystem.
Rootfs string `json:"rootfs"`
// Created is the unix timestamp for the creation time of the container in UTC
Created time.Time `json:"created"`
// Annotations is the user defined annotations added to the config.
Annotations map[string]string `json:"annotations,omitempty"`
// The owner of the state directory (the owner of the container).
Owner string `json:"owner"`
}
var listCommand = cli.Command{
Name: "list",
Usage: "lists containers started by runv with the given root",
Flags: []cli.Flag{
cli.BoolFlag{
Name: "quiet, q",
Usage: "display only container IDs",
},
cli.StringFlag{
Name: "format, f",
Value: "",
Usage: `select one of: ` + formatOptions + `.
The default format is table. The following will output the list of containers
in json format:
# runv list -f json`,
},
},
Before: func(context *cli.Context) error {
return cmdPrepare(context, false, false)
},
Action: func(context *cli.Context) {
s, err := getContainers(context)
if err != nil {
fatal(err)
}
if context.Bool("quiet") {
for _, item := range s {
fmt.Println(item.ID)
}
return
}
switch context.String("format") {
case "", "table":
w := tabwriter.NewWriter(os.Stdout, 12, 1, 3, ' ', 0)
fmt.Fprint(w, "ID\tPID\tSTATUS\tBUNDLE\tCREATED\tOWNER\n")
for _, item := range s {
fmt.Fprintf(w, "%s\t%d\t%s\t%s\t%s\t%s\n",
item.ID,
item.InitProcessPid,
item.Status,
item.Bundle,
item.Created.Format(time.RFC3339Nano),
item.Owner)
}
if err := w.Flush(); err != nil {
fatal(err)
}
case "json":
data, err := json.Marshal(s)
if err != nil {
fatal(err)
}
os.Stdout.Write(data)
default:
fatal(fmt.Errorf("invalid format option"))
}
},
}
func getContainers(context *cli.Context) ([]containerState, error) {
root := context.GlobalString("root")
absRoot, err := filepath.Abs(root)
if err != nil {
return nil, err
}
list, err := ioutil.ReadDir(absRoot)
if err != nil {
return nil, err
}
var s []containerState
for _, item := range list {
if item.IsDir() {
cs, err := getContainer(context, item.Name())
if err != nil {
fatal(err)
}
s = append(s, containerState{
Version: cs.Version,
ID: cs.ID,
InitProcessPid: cs.InitProcessPid,
Status: cs.Status,
Bundle: cs.Bundle,
Rootfs: cs.Rootfs,
Created: cs.Created,
Owner: cs.Owner,
})
}
}
return s, nil
}
// fatal prints the error's details if it is a runv specific error type
// then exits the program with an exit status of 1.
func fatal(err error) {
// make sure the error is written to the logger
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}