mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 12:42:34 +02:00
157 lines
3.3 KiB
Go
157 lines
3.3 KiB
Go
package docker
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"runtime/debug"
|
|
"sync"
|
|
|
|
"github.com/docker/cli/cli/connhelper"
|
|
"github.com/docker/docker/client"
|
|
"github.com/rs/zerolog"
|
|
"github.com/yusing/go-proxy/agent/pkg/agent"
|
|
"github.com/yusing/go-proxy/internal/common"
|
|
config "github.com/yusing/go-proxy/internal/config/types"
|
|
"github.com/yusing/go-proxy/internal/logging"
|
|
"github.com/yusing/go-proxy/internal/task"
|
|
U "github.com/yusing/go-proxy/internal/utils"
|
|
)
|
|
|
|
type (
|
|
SharedClient struct {
|
|
*client.Client
|
|
|
|
key string
|
|
refCount *U.RefCount
|
|
|
|
l zerolog.Logger
|
|
}
|
|
)
|
|
|
|
var (
|
|
clientMap = make(map[string]*SharedClient, 5)
|
|
clientMapMu sync.Mutex
|
|
|
|
clientOptEnvHost = []client.Opt{
|
|
client.WithHostFromEnv(),
|
|
client.WithAPIVersionNegotiation(),
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
task.OnProgramExit("docker_clients_cleanup", func() {
|
|
clientMapMu.Lock()
|
|
defer clientMapMu.Unlock()
|
|
|
|
for _, c := range clientMap {
|
|
if c.Connected() {
|
|
c.Client.Close()
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
func (c *SharedClient) Connected() bool {
|
|
return c != nil && c.Client != nil
|
|
}
|
|
|
|
// if the client is still referenced, this is no-op.
|
|
func (c *SharedClient) Close() {
|
|
if c.Connected() {
|
|
c.refCount.Sub()
|
|
}
|
|
}
|
|
|
|
// ConnectClient creates a new Docker client connection to the specified host.
|
|
//
|
|
// Returns existing client if available.
|
|
//
|
|
// Parameters:
|
|
// - host: the host to connect to (either a URL or common.DockerHostFromEnv).
|
|
//
|
|
// Returns:
|
|
// - Client: the Docker client connection.
|
|
// - error: an error if the connection failed.
|
|
func ConnectClient(host string) (*SharedClient, error) {
|
|
clientMapMu.Lock()
|
|
defer clientMapMu.Unlock()
|
|
|
|
if client, ok := clientMap[host]; ok {
|
|
client.refCount.Add()
|
|
return client, nil
|
|
}
|
|
|
|
// create client
|
|
var opt []client.Opt
|
|
|
|
if agent.IsDockerHostAgent(host) {
|
|
cfg, ok := config.GetInstance().GetAgent(host)
|
|
if !ok {
|
|
return nil, fmt.Errorf("agent %q not found\n%s", host, debug.Stack())
|
|
}
|
|
opt = []client.Opt{
|
|
client.WithHost(agent.DockerHost),
|
|
client.WithHTTPClient(cfg.NewHTTPClient()),
|
|
client.WithAPIVersionNegotiation(),
|
|
}
|
|
} else {
|
|
switch host {
|
|
case "":
|
|
return nil, errors.New("empty docker host")
|
|
case common.DockerHostFromEnv:
|
|
opt = clientOptEnvHost
|
|
default:
|
|
helper, err := connhelper.GetConnectionHelper(host)
|
|
if err != nil {
|
|
logging.Panic().Err(err).Msg("failed to get connection helper")
|
|
}
|
|
if helper != nil {
|
|
httpClient := &http.Client{
|
|
Transport: &http.Transport{
|
|
DialContext: helper.Dialer,
|
|
},
|
|
}
|
|
opt = []client.Opt{
|
|
client.WithHTTPClient(httpClient),
|
|
client.WithHost(helper.Host),
|
|
client.WithAPIVersionNegotiation(),
|
|
client.WithDialContext(helper.Dialer),
|
|
}
|
|
} else {
|
|
opt = []client.Opt{
|
|
client.WithHost(host),
|
|
client.WithAPIVersionNegotiation(),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
client, err := client.NewClientWithOpts(opt...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
c := &SharedClient{
|
|
Client: client,
|
|
key: host,
|
|
refCount: U.NewRefCounter(),
|
|
l: logging.With().Str("address", client.DaemonHost()).Logger(),
|
|
}
|
|
c.l.Trace().Msg("client connected")
|
|
|
|
clientMap[host] = c
|
|
|
|
go func() {
|
|
<-c.refCount.Zero()
|
|
clientMapMu.Lock()
|
|
delete(clientMap, c.key)
|
|
clientMapMu.Unlock()
|
|
|
|
if c.Connected() {
|
|
c.Client.Close()
|
|
c.l.Trace().Msg("client closed")
|
|
}
|
|
}()
|
|
return c, nil
|
|
}
|