123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- package convert
- import (
- "fmt"
- "strings"
- "github.com/Sirupsen/logrus"
- container "github.com/docker/docker/api/types/container"
- mounttypes "github.com/docker/docker/api/types/mount"
- types "github.com/docker/docker/api/types/swarm"
- swarmapi "github.com/docker/swarmkit/api"
- gogotypes "github.com/gogo/protobuf/types"
- )
- func containerSpecFromGRPC(c *swarmapi.ContainerSpec) types.ContainerSpec {
- containerSpec := types.ContainerSpec{
- Image: c.Image,
- Labels: c.Labels,
- Command: c.Command,
- Args: c.Args,
- Hostname: c.Hostname,
- Env: c.Env,
- Dir: c.Dir,
- User: c.User,
- Groups: c.Groups,
- TTY: c.TTY,
- OpenStdin: c.OpenStdin,
- ReadOnly: c.ReadOnly,
- Hosts: c.Hosts,
- Secrets: secretReferencesFromGRPC(c.Secrets),
- }
- if c.DNSConfig != nil {
- containerSpec.DNSConfig = &types.DNSConfig{
- Nameservers: c.DNSConfig.Nameservers,
- Search: c.DNSConfig.Search,
- Options: c.DNSConfig.Options,
- }
- }
- // Mounts
- for _, m := range c.Mounts {
- mount := mounttypes.Mount{
- Target: m.Target,
- Source: m.Source,
- Type: mounttypes.Type(strings.ToLower(swarmapi.Mount_MountType_name[int32(m.Type)])),
- ReadOnly: m.ReadOnly,
- }
- if m.BindOptions != nil {
- mount.BindOptions = &mounttypes.BindOptions{
- Propagation: mounttypes.Propagation(strings.ToLower(swarmapi.Mount_BindOptions_MountPropagation_name[int32(m.BindOptions.Propagation)])),
- }
- }
- if m.VolumeOptions != nil {
- mount.VolumeOptions = &mounttypes.VolumeOptions{
- NoCopy: m.VolumeOptions.NoCopy,
- Labels: m.VolumeOptions.Labels,
- }
- if m.VolumeOptions.DriverConfig != nil {
- mount.VolumeOptions.DriverConfig = &mounttypes.Driver{
- Name: m.VolumeOptions.DriverConfig.Name,
- Options: m.VolumeOptions.DriverConfig.Options,
- }
- }
- }
- if m.TmpfsOptions != nil {
- mount.TmpfsOptions = &mounttypes.TmpfsOptions{
- SizeBytes: m.TmpfsOptions.SizeBytes,
- Mode: m.TmpfsOptions.Mode,
- }
- }
- containerSpec.Mounts = append(containerSpec.Mounts, mount)
- }
- if c.StopGracePeriod != nil {
- grace, _ := gogotypes.DurationFromProto(c.StopGracePeriod)
- containerSpec.StopGracePeriod = &grace
- }
- if c.Healthcheck != nil {
- containerSpec.Healthcheck = healthConfigFromGRPC(c.Healthcheck)
- }
- return containerSpec
- }
- func secretReferencesToGRPC(sr []*types.SecretReference) []*swarmapi.SecretReference {
- refs := make([]*swarmapi.SecretReference, 0, len(sr))
- for _, s := range sr {
- ref := &swarmapi.SecretReference{
- SecretID: s.SecretID,
- SecretName: s.SecretName,
- }
- if s.File != nil {
- ref.Target = &swarmapi.SecretReference_File{
- File: &swarmapi.SecretReference_FileTarget{
- Name: s.File.Name,
- UID: s.File.UID,
- GID: s.File.GID,
- Mode: s.File.Mode,
- },
- }
- }
- refs = append(refs, ref)
- }
- return refs
- }
- func secretReferencesFromGRPC(sr []*swarmapi.SecretReference) []*types.SecretReference {
- refs := make([]*types.SecretReference, 0, len(sr))
- for _, s := range sr {
- target := s.GetFile()
- if target == nil {
- // not a file target
- logrus.Warnf("secret target not a file: secret=%s", s.SecretID)
- continue
- }
- refs = append(refs, &types.SecretReference{
- File: &types.SecretReferenceFileTarget{
- Name: target.Name,
- UID: target.UID,
- GID: target.GID,
- Mode: target.Mode,
- },
- SecretID: s.SecretID,
- SecretName: s.SecretName,
- })
- }
- return refs
- }
- func containerToGRPC(c types.ContainerSpec) (*swarmapi.ContainerSpec, error) {
- containerSpec := &swarmapi.ContainerSpec{
- Image: c.Image,
- Labels: c.Labels,
- Command: c.Command,
- Args: c.Args,
- Hostname: c.Hostname,
- Env: c.Env,
- Dir: c.Dir,
- User: c.User,
- Groups: c.Groups,
- TTY: c.TTY,
- OpenStdin: c.OpenStdin,
- ReadOnly: c.ReadOnly,
- Hosts: c.Hosts,
- Secrets: secretReferencesToGRPC(c.Secrets),
- }
- if c.DNSConfig != nil {
- containerSpec.DNSConfig = &swarmapi.ContainerSpec_DNSConfig{
- Nameservers: c.DNSConfig.Nameservers,
- Search: c.DNSConfig.Search,
- Options: c.DNSConfig.Options,
- }
- }
- if c.StopGracePeriod != nil {
- containerSpec.StopGracePeriod = gogotypes.DurationProto(*c.StopGracePeriod)
- }
- // Mounts
- for _, m := range c.Mounts {
- mount := swarmapi.Mount{
- Target: m.Target,
- Source: m.Source,
- ReadOnly: m.ReadOnly,
- }
- if mountType, ok := swarmapi.Mount_MountType_value[strings.ToUpper(string(m.Type))]; ok {
- mount.Type = swarmapi.Mount_MountType(mountType)
- } else if string(m.Type) != "" {
- return nil, fmt.Errorf("invalid MountType: %q", m.Type)
- }
- if m.BindOptions != nil {
- if mountPropagation, ok := swarmapi.Mount_BindOptions_MountPropagation_value[strings.ToUpper(string(m.BindOptions.Propagation))]; ok {
- mount.BindOptions = &swarmapi.Mount_BindOptions{Propagation: swarmapi.Mount_BindOptions_MountPropagation(mountPropagation)}
- } else if string(m.BindOptions.Propagation) != "" {
- return nil, fmt.Errorf("invalid MountPropagation: %q", m.BindOptions.Propagation)
- }
- }
- if m.VolumeOptions != nil {
- mount.VolumeOptions = &swarmapi.Mount_VolumeOptions{
- NoCopy: m.VolumeOptions.NoCopy,
- Labels: m.VolumeOptions.Labels,
- }
- if m.VolumeOptions.DriverConfig != nil {
- mount.VolumeOptions.DriverConfig = &swarmapi.Driver{
- Name: m.VolumeOptions.DriverConfig.Name,
- Options: m.VolumeOptions.DriverConfig.Options,
- }
- }
- }
- if m.TmpfsOptions != nil {
- mount.TmpfsOptions = &swarmapi.Mount_TmpfsOptions{
- SizeBytes: m.TmpfsOptions.SizeBytes,
- Mode: m.TmpfsOptions.Mode,
- }
- }
- containerSpec.Mounts = append(containerSpec.Mounts, mount)
- }
- if c.Healthcheck != nil {
- containerSpec.Healthcheck = healthConfigToGRPC(c.Healthcheck)
- }
- return containerSpec, nil
- }
- func healthConfigFromGRPC(h *swarmapi.HealthConfig) *container.HealthConfig {
- interval, _ := gogotypes.DurationFromProto(h.Interval)
- timeout, _ := gogotypes.DurationFromProto(h.Timeout)
- return &container.HealthConfig{
- Test: h.Test,
- Interval: interval,
- Timeout: timeout,
- Retries: int(h.Retries),
- }
- }
- func healthConfigToGRPC(h *container.HealthConfig) *swarmapi.HealthConfig {
- return &swarmapi.HealthConfig{
- Test: h.Test,
- Interval: gogotypes.DurationProto(h.Interval),
- Timeout: gogotypes.DurationProto(h.Timeout),
- Retries: int32(h.Retries),
- }
- }
|