mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-14 18:30:21 +00:00
93 lines
2.6 KiB
Go
93 lines
2.6 KiB
Go
|
/*
|
||
|
Copyright 2015 The Kubernetes Authors.
|
||
|
|
||
|
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 rkt
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"strconv"
|
||
|
"strings"
|
||
|
|
||
|
"github.com/coreos/go-systemd/dbus"
|
||
|
)
|
||
|
|
||
|
// systemdVersion is a type wraps the int to implement kubecontainer.Version interface.
|
||
|
type systemdVersion int
|
||
|
|
||
|
func (s systemdVersion) String() string {
|
||
|
return fmt.Sprintf("%d", s)
|
||
|
}
|
||
|
|
||
|
func (s systemdVersion) Compare(other string) (int, error) {
|
||
|
v, err := strconv.Atoi(other)
|
||
|
if err != nil {
|
||
|
return -1, err
|
||
|
}
|
||
|
if int(s) < v {
|
||
|
return -1, nil
|
||
|
} else if int(s) > v {
|
||
|
return 1, nil
|
||
|
}
|
||
|
return 0, nil
|
||
|
}
|
||
|
|
||
|
// systemdInterface is an abstraction of the go-systemd/dbus to make
|
||
|
// it mockable for testing.
|
||
|
// TODO(yifan): Eventually we should move these functionalities to:
|
||
|
// 1. a package for launching/stopping rkt pods.
|
||
|
// 2. rkt api-service interface for listing pods.
|
||
|
// See https://github.com/coreos/rkt/issues/1769.
|
||
|
type systemdInterface interface {
|
||
|
// Version returns the version of the systemd.
|
||
|
Version() (systemdVersion, error)
|
||
|
// ListUnits lists all the loaded units.
|
||
|
ListUnits() ([]dbus.UnitStatus, error)
|
||
|
// StopUnits stops the unit with the given name.
|
||
|
StopUnit(name string, mode string, ch chan<- string) (int, error)
|
||
|
// RestartUnit restarts the unit with the given name.
|
||
|
RestartUnit(name string, mode string, ch chan<- string) (int, error)
|
||
|
// ResetFailedUnit resets the "failed" state of a specific unit.
|
||
|
ResetFailedUnit(name string) error
|
||
|
}
|
||
|
|
||
|
// systemd implements the systemdInterface using dbus and systemctl.
|
||
|
// All the functions other then Version() are already implemented by go-systemd/dbus.
|
||
|
type systemd struct {
|
||
|
*dbus.Conn
|
||
|
}
|
||
|
|
||
|
// newSystemd creates a systemd object that implements systemdInterface.
|
||
|
func newSystemd() (*systemd, error) {
|
||
|
dbusConn, err := dbus.New()
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return &systemd{dbusConn}, nil
|
||
|
}
|
||
|
|
||
|
// Version returns the version of the systemd.
|
||
|
func (s *systemd) Version() (systemdVersion, error) {
|
||
|
versionStr, err := s.Conn.GetManagerProperty("Version")
|
||
|
if err != nil {
|
||
|
return -1, err
|
||
|
}
|
||
|
result, err := strconv.Atoi(strings.Trim(versionStr, "\""))
|
||
|
if err != nil {
|
||
|
return -1, err
|
||
|
}
|
||
|
return systemdVersion(result), nil
|
||
|
}
|