1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Add deadcode linter

Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
Daniel Nephin 2017-08-21 17:51:45 -04:00
parent 372670b507
commit 62c1f0ef41
21 changed files with 19 additions and 122 deletions

View file

@ -13,14 +13,6 @@ import (
"google.golang.org/grpc/codes" "google.golang.org/grpc/codes"
) )
// httpStatusError is an interface
// that errors with custom status codes
// implement to tell the api layer
// which response status to set.
type httpStatusError interface {
HTTPErrorStatusCode() int
}
type causer interface { type causer interface {
Cause() error Cause() error
} }

View file

@ -276,14 +276,6 @@ func (filters Args) Validate(accepted map[string]bool) error {
return nil return nil
} }
type invalidFilterError string
func (e invalidFilterError) Error() string {
return "Invalid filter: '" + string(e) + "'"
}
func (invalidFilterError) InvalidParameter() {}
// WalkValues iterates over the list of filtered values for a field. // WalkValues iterates over the list of filtered values for a field.
// It stops the iteration if it finds an error and it returns that error. // It stops the iteration if it finds an error and it returns that error.
func (filters Args) WalkValues(field string, op func(value string) error) error { func (filters Args) WalkValues(field string, op func(value string) error) error {

View file

@ -9,6 +9,14 @@ import (
"github.com/docker/docker/api/types" "github.com/docker/docker/api/types"
) )
// transportFunc allows us to inject a mock transport for testing. We define it
// here so we can detect the tlsconfig and return nil for only this type.
type transportFunc func(*http.Request) (*http.Response, error)
func (tf transportFunc) RoundTrip(req *http.Request) (*http.Response, error) {
return tf(req)
}
func newMockClient(doer func(*http.Request) (*http.Response, error)) *http.Client { func newMockClient(doer func(*http.Request) (*http.Response, error)) *http.Client {
return &http.Client{ return &http.Client{
Transport: transportFunc(doer), Transport: transportFunc(doer),

View file

@ -5,14 +5,6 @@ import (
"net/http" "net/http"
) )
// transportFunc allows us to inject a mock transport for testing. We define it
// here so we can detect the tlsconfig and return nil for only this type.
type transportFunc func(*http.Request) (*http.Response, error)
func (tf transportFunc) RoundTrip(req *http.Request) (*http.Response, error) {
return tf(req)
}
// resolveTLSConfig attempts to resolve the TLS configuration from the // resolveTLSConfig attempts to resolve the TLS configuration from the
// RoundTripper. // RoundTripper.
func resolveTLSConfig(transport http.RoundTripper) *tls.Config { func resolveTLSConfig(transport http.RoundTripper) *tls.Config {

View file

@ -5,27 +5,14 @@ package main
import ( import (
"fmt" "fmt"
"net" "net"
"os"
"path/filepath" "path/filepath"
"github.com/docker/docker/libcontainerd" "github.com/docker/docker/libcontainerd"
"github.com/docker/docker/pkg/system"
"golang.org/x/sys/unix" "golang.org/x/sys/unix"
) )
const defaultDaemonConfigFile = "" const defaultDaemonConfigFile = ""
// currentUserIsOwner checks whether the current user is the owner of the given
// file.
func currentUserIsOwner(f string) bool {
if fileInfo, err := system.Stat(f); err == nil && fileInfo != nil {
if int(fileInfo.UID()) == os.Getuid() {
return true
}
}
return false
}
// setDefaultUmask sets the umask to 0022 to avoid problems // setDefaultUmask sets the umask to 0022 to avoid problems
// caused by custom umask // caused by custom umask
func setDefaultUmask() error { func setDefaultUmask() error {

View file

@ -14,12 +14,6 @@ import (
var defaultDaemonConfigFile = "" var defaultDaemonConfigFile = ""
// currentUserIsOwner checks whether the current user is the owner of the given
// file.
func currentUserIsOwner(f string) bool {
return false
}
// setDefaultUmask doesn't do anything on windows // setDefaultUmask doesn't do anything on windows
func setDefaultUmask() error { func setDefaultUmask() error {
return nil return nil

View file

@ -22,7 +22,7 @@ import (
"github.com/docker/libnetwork/netlabel" "github.com/docker/libnetwork/netlabel"
"github.com/docker/libnetwork/netutils" "github.com/docker/libnetwork/netutils"
lntypes "github.com/docker/libnetwork/types" lntypes "github.com/docker/libnetwork/types"
"github.com/opencontainers/runtime-spec/specs-go" specs "github.com/opencontainers/runtime-spec/specs-go"
"github.com/opencontainers/selinux/go-selinux/label" "github.com/opencontainers/selinux/go-selinux/label"
"github.com/pkg/errors" "github.com/pkg/errors"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
@ -32,7 +32,6 @@ import (
import "C" import "C"
const ( const (
defaultVirtualSwitch = "Virtual Switch"
platformSupported = true platformSupported = true
solarisMinCPUShares = 1 solarisMinCPUShares = 1
solarisMaxCPUShares = 65535 solarisMaxCPUShares = 65535

View file

@ -5,7 +5,6 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"strings" "strings"
"syscall"
"github.com/Microsoft/hcsshim" "github.com/Microsoft/hcsshim"
"github.com/docker/docker/api/types" "github.com/docker/docker/api/types"
@ -38,9 +37,6 @@ const (
windowsMaxCPUShares = 10000 windowsMaxCPUShares = 10000
windowsMinCPUPercent = 1 windowsMinCPUPercent = 1
windowsMaxCPUPercent = 100 windowsMaxCPUPercent = 100
windowsMinCPUCount = 1
errInvalidState = syscall.Errno(0x139F)
) )
// Windows has no concept of an execution state directory. So use config.Root here. // Windows has no concept of an execution state directory. So use config.Root here.
@ -60,22 +56,6 @@ func parseSecurityOpt(container *container.Container, config *containertypes.Hos
return nil return nil
} }
func getBlkioReadIOpsDevices(config *containertypes.HostConfig) ([]blkiodev.ThrottleDevice, error) {
return nil, nil
}
func getBlkioWriteIOpsDevices(config *containertypes.HostConfig) ([]blkiodev.ThrottleDevice, error) {
return nil, nil
}
func getBlkioReadBpsDevices(config *containertypes.HostConfig) ([]blkiodev.ThrottleDevice, error) {
return nil, nil
}
func getBlkioWriteBpsDevices(config *containertypes.HostConfig) ([]blkiodev.ThrottleDevice, error) {
return nil, nil
}
func (daemon *Daemon) getLayerInit() func(string) error { func (daemon *Daemon) getLayerInit() func(string) error {
return nil return nil
} }

View file

@ -2,22 +2,12 @@ package graphdriver
import ( import (
"fmt" "fmt"
"io"
"path/filepath" "path/filepath"
"github.com/docker/docker/pkg/plugingetter" "github.com/docker/docker/pkg/plugingetter"
"github.com/docker/docker/plugin/v2" "github.com/docker/docker/plugin/v2"
) )
type pluginClient interface {
// Call calls the specified method with the specified arguments for the plugin.
Call(string, interface{}, interface{}) error
// Stream calls the specified method with the specified arguments for the plugin and returns the response IO stream
Stream(string, interface{}) (io.ReadCloser, error)
// SendFile calls the specified method, and passes through the IO stream
SendFile(string, io.Reader, interface{}) error
}
func lookupPlugin(name string, pg plugingetter.PluginGetter, config Options) (Driver, error) { func lookupPlugin(name string, pg plugingetter.PluginGetter, config Options) (Driver, error) {
if !config.ExperimentalEnabled { if !config.ExperimentalEnabled {
return nil, fmt.Errorf("graphdriver plugins are only supported with experimental mode") return nil, fmt.Errorf("graphdriver plugins are only supported with experimental mode")

View file

@ -46,7 +46,6 @@ const (
// Exit status codes that can be returned by the probe command. // Exit status codes that can be returned by the probe command.
exitStatusHealthy = 0 // Container is healthy exitStatusHealthy = 0 // Container is healthy
exitStatusUnhealthy = 1 // Container is unhealthy
) )
// probe implementations know how to run a particular type of probe. // probe implementations know how to run a particular type of probe.

View file

@ -6,7 +6,7 @@ import (
"github.com/docker/docker/pkg/mount" "github.com/docker/docker/pkg/mount"
"github.com/docker/docker/pkg/plugingetter" "github.com/docker/docker/pkg/plugingetter"
"github.com/docker/go-metrics" metrics "github.com/docker/go-metrics"
"github.com/pkg/errors" "github.com/pkg/errors"
"github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
@ -16,7 +16,6 @@ const metricsPluginType = "MetricsCollector"
var ( var (
containerActions metrics.LabeledTimer containerActions metrics.LabeledTimer
containerStates metrics.LabeledGauge
imageActions metrics.LabeledTimer imageActions metrics.LabeledTimer
networkActions metrics.LabeledTimer networkActions metrics.LabeledTimer
engineInfo metrics.LabeledGauge engineInfo metrics.LabeledGauge

View file

@ -60,12 +60,7 @@ install_gometalinter() {
cd "$GOPATH/src/github.com/alecthomas/gometalinter" cd "$GOPATH/src/github.com/alecthomas/gometalinter"
git checkout -q "$GOMETALINTER_COMMIT" git checkout -q "$GOMETALINTER_COMMIT"
go build -o /usr/local/bin/gometalinter github.com/alecthomas/gometalinter go build -o /usr/local/bin/gometalinter github.com/alecthomas/gometalinter
( GOBIN=/usr/local/bin gometalinter --install
export GOBIN=/usr/local/bin
export GOPATH="$PWD/_linters/"
go install github.com/golang/lint/golint
go install golang.org/x/tools/cmd/goimports
)
} }
for prog in "$@" for prog in "$@"

View file

@ -10,6 +10,7 @@
], ],
"Enable": [ "Enable": [
"deadcode",
"gofmt", "gofmt",
"goimports", "goimports",
"golint", "golint",

View file

@ -14,6 +14,7 @@ import (
) )
// Same as DM_DEVICE_* enum values from libdevmapper.h // Same as DM_DEVICE_* enum values from libdevmapper.h
// nolint: deadcode
const ( const (
deviceCreate TaskType = iota deviceCreate TaskType = iota
deviceReload deviceReload

View file

@ -1,17 +1,11 @@
package foo package foo
import ( import (
"fmt"
aliasedio "io" aliasedio "io"
"github.com/docker/docker/pkg/plugins/pluginrpc-gen/fixtures/otherfixture" "github.com/docker/docker/pkg/plugins/pluginrpc-gen/fixtures/otherfixture"
) )
var (
errFakeImport = fmt.Errorf("just to import fmt for imports tests")
)
type wobble struct { type wobble struct {
Some string Some string
Val string Val string

View file

@ -32,7 +32,7 @@ import (
"github.com/docker/docker/pkg/system" "github.com/docker/docker/pkg/system"
"github.com/docker/docker/plugin/v2" "github.com/docker/docker/plugin/v2"
refstore "github.com/docker/docker/reference" refstore "github.com/docker/docker/reference"
"github.com/opencontainers/go-digest" digest "github.com/opencontainers/go-digest"
"github.com/pkg/errors" "github.com/pkg/errors"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"golang.org/x/net/context" "golang.org/x/net/context"
@ -652,22 +652,6 @@ func (pm *Manager) Remove(name string, config *types.PluginRmConfig) error {
return nil return nil
} }
func getMounts(root string) ([]string, error) {
infos, err := mount.GetMounts()
if err != nil {
return nil, errors.Wrap(err, "failed to read mount table")
}
var mounts []string
for _, m := range infos {
if strings.HasPrefix(m.Mountpoint, root) {
mounts = append(mounts, m.Mountpoint)
}
}
return mounts, nil
}
// Set sets plugin args // Set sets plugin args
func (pm *Manager) Set(name string, args []string) error { func (pm *Manager) Set(name string, args []string) error {
p, err := pm.config.Store.GetV2Plugin(name) p, err := pm.config.Store.GetV2Plugin(name)

View file

@ -32,6 +32,7 @@ func NewVolumeDriver(name string, baseHostPath string, c client) volume.Driver {
// volumeDriver defines the available functions that volume plugins must implement. // volumeDriver defines the available functions that volume plugins must implement.
// This interface is only defined to generate the proxy objects. // This interface is only defined to generate the proxy objects.
// It's not intended to be public or reused. // It's not intended to be public or reused.
// nolint: deadcode
type volumeDriver interface { type volumeDriver interface {
// Create a volume with the given name // Create a volume with the given name
Create(name string, opts map[string]string) (err error) Create(name string, opts map[string]string) (err error)

View file

@ -119,10 +119,6 @@ func validateNotRoot(p string) error {
return nil return nil
} }
func validateCopyMode(mode bool) error {
return nil
}
func convertSlash(p string) string { func convertSlash(p string) string {
return p return p
} }

View file

@ -183,13 +183,6 @@ func validateNotRoot(p string) error {
return nil return nil
} }
func validateCopyMode(mode bool) error {
if mode {
return fmt.Errorf("Windows does not support copying image path content")
}
return nil
}
func convertSlash(p string) string { func convertSlash(p string) string {
return filepath.FromSlash(p) return filepath.FromSlash(p)
} }