2015-05-14 13:05:39 -04:00
|
|
|
package plugins
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/Sirupsen/logrus"
|
2015-05-27 18:21:18 -04:00
|
|
|
"github.com/docker/docker/pkg/sockets"
|
|
|
|
"github.com/docker/docker/pkg/tlsconfig"
|
2015-05-14 13:05:39 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2015-05-16 11:49:23 -04:00
|
|
|
versionMimetype = "application/vnd.docker.plugins.v1+json"
|
2015-05-15 07:07:59 -04:00
|
|
|
defaultTimeOut = 30
|
2015-05-14 13:05:39 -04:00
|
|
|
)
|
|
|
|
|
2015-05-27 18:21:18 -04:00
|
|
|
func NewClient(addr string, tlsConfig tlsconfig.Options) (*Client, error) {
|
2015-05-14 13:05:39 -04:00
|
|
|
tr := &http.Transport{}
|
2015-05-27 18:21:18 -04:00
|
|
|
|
|
|
|
c, err := tlsconfig.Client(tlsConfig)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
tr.TLSClientConfig = c
|
|
|
|
|
2015-05-14 13:05:39 -04:00
|
|
|
protoAndAddr := strings.Split(addr, "://")
|
2015-05-27 18:21:18 -04:00
|
|
|
sockets.ConfigureTCPTransport(tr, protoAndAddr[0], protoAndAddr[1])
|
|
|
|
return &Client{&http.Client{Transport: tr}, protoAndAddr[1]}, nil
|
2015-05-14 13:05:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type Client struct {
|
|
|
|
http *http.Client
|
|
|
|
addr string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) Call(serviceMethod string, args interface{}, ret interface{}) error {
|
2015-05-19 16:05:25 -04:00
|
|
|
return c.callWithRetry(serviceMethod, args, ret, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) callWithRetry(serviceMethod string, args interface{}, ret interface{}, retry bool) error {
|
2015-05-14 13:05:39 -04:00
|
|
|
var buf bytes.Buffer
|
|
|
|
if err := json.NewEncoder(&buf).Encode(args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := http.NewRequest("POST", "/"+serviceMethod, &buf)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
req.Header.Add("Accept", versionMimetype)
|
|
|
|
req.URL.Scheme = "http"
|
|
|
|
req.URL.Host = c.addr
|
|
|
|
|
|
|
|
var retries int
|
|
|
|
start := time.Now()
|
|
|
|
|
|
|
|
for {
|
|
|
|
resp, err := c.http.Do(req)
|
|
|
|
if err != nil {
|
2015-05-19 16:05:25 -04:00
|
|
|
if !retry {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-05-14 13:05:39 -04:00
|
|
|
timeOff := backoff(retries)
|
2015-05-19 16:05:25 -04:00
|
|
|
if abort(start, timeOff) {
|
2015-05-14 13:05:39 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
retries++
|
2015-05-19 16:05:25 -04:00
|
|
|
logrus.Warnf("Unable to connect to plugin: %s, retrying in %v", c.addr, timeOff)
|
2015-05-14 13:05:39 -04:00
|
|
|
time.Sleep(timeOff)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2015-05-29 00:03:40 -04:00
|
|
|
defer resp.Body.Close()
|
2015-05-14 13:05:39 -04:00
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
remoteErr, err := ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
2015-05-29 00:51:51 -04:00
|
|
|
return fmt.Errorf("Plugin Error: %s", err)
|
2015-05-14 13:05:39 -04:00
|
|
|
}
|
|
|
|
return fmt.Errorf("Plugin Error: %s", remoteErr)
|
|
|
|
}
|
|
|
|
|
|
|
|
return json.NewDecoder(resp.Body).Decode(&ret)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func backoff(retries int) time.Duration {
|
2015-05-19 16:05:25 -04:00
|
|
|
b, max := 1, defaultTimeOut
|
2015-05-14 13:05:39 -04:00
|
|
|
for b < max && retries > 0 {
|
|
|
|
b *= 2
|
|
|
|
retries--
|
|
|
|
}
|
|
|
|
if b > max {
|
|
|
|
b = max
|
|
|
|
}
|
2015-05-19 16:05:25 -04:00
|
|
|
return time.Duration(b) * time.Second
|
|
|
|
}
|
|
|
|
|
|
|
|
func abort(start time.Time, timeOff time.Duration) bool {
|
2015-07-09 19:31:43 -04:00
|
|
|
return timeOff+time.Since(start) >= time.Duration(defaultTimeOut)*time.Second
|
2015-05-14 13:05:39 -04:00
|
|
|
}
|