mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
libnetwork.Endpoint is an interface with a single implementation. https://github.com/golang/go/wiki/CodeReviewComments#interfaces Signed-off-by: Cory Snider <csnider@mirantis.com>
48 lines
1.0 KiB
Go
48 lines
1.0 KiB
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package libnetwork
|
|
|
|
import "fmt"
|
|
|
|
// DriverInfo returns a collection of driver operational data related to this endpoint retrieved from the driver.
|
|
func (ep *Endpoint) DriverInfo() (map[string]interface{}, error) {
|
|
ep, err := ep.retrieveFromStore()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var gwDriverInfo map[string]interface{}
|
|
if sb, ok := ep.getSandbox(); ok {
|
|
if gwep := sb.getEndpointInGWNetwork(); gwep != nil && gwep.ID() != ep.ID() {
|
|
|
|
gwDriverInfo, err = gwep.DriverInfo()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
}
|
|
|
|
n, err := ep.getNetworkFromStore()
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not find network in store for driver info: %v", err)
|
|
}
|
|
|
|
driver, err := n.driver(true)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to get driver info: %v", err)
|
|
}
|
|
|
|
epInfo, err := driver.EndpointOperInfo(n.ID(), ep.ID())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if epInfo != nil {
|
|
epInfo["GW_INFO"] = gwDriverInfo
|
|
return epInfo, nil
|
|
}
|
|
|
|
return gwDriverInfo, nil
|
|
}
|