
Details about CimFs project are discussed in #8346 Signed-off-by: Amit Barve <ambarve@microsoft.com>
23 lines
484 B
Go
23 lines
484 B
Go
//go:build windows
|
|
|
|
package runhcs
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
)
|
|
|
|
// State outputs the state of a container.
|
|
func (r *Runhcs) State(ctx context.Context, id string) (*ContainerState, error) {
|
|
data, err := cmdOutput(r.command(ctx, "state", id), true)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("%s: %s", err, data) //nolint:errorlint // legacy code
|
|
}
|
|
var out ContainerState
|
|
if err := json.Unmarshal(data, &out); err != nil {
|
|
return nil, err
|
|
}
|
|
return &out, nil
|
|
}
|