backend.go 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. // +build example
  2. /*
  3. Copyright 2020 Docker, Inc.
  4. Licensed under the Apache License, Version 2.0 (the "License");
  5. you may not use this file except in compliance with the License.
  6. You may obtain a copy of the License at
  7. http://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing, software
  9. distributed under the License is distributed on an "AS IS" BASIS,
  10. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. See the License for the specific language governing permissions and
  12. limitations under the License.
  13. */
  14. package example
  15. import (
  16. "context"
  17. "errors"
  18. "fmt"
  19. "io"
  20. "github.com/compose-spec/compose-go/cli"
  21. "github.com/docker/compose-cli/backend"
  22. "github.com/docker/compose-cli/compose"
  23. "github.com/docker/compose-cli/containers"
  24. "github.com/docker/compose-cli/context/cloud"
  25. "github.com/docker/compose-cli/errdefs"
  26. "github.com/docker/compose-cli/secrets"
  27. )
  28. type apiService struct {
  29. containerService
  30. composeService
  31. }
  32. func (a *apiService) ContainerService() containers.Service {
  33. return &a.containerService
  34. }
  35. func (a *apiService) ComposeService() compose.Service {
  36. return &a.composeService
  37. }
  38. func (a *apiService) SecretsService() secrets.Service {
  39. return nil
  40. }
  41. func init() {
  42. backend.Register("example", "example", service, cloud.NotImplementedCloudService)
  43. }
  44. func service(ctx context.Context) (backend.Service, error) {
  45. return &apiService{}, nil
  46. }
  47. type containerService struct{}
  48. func (cs *containerService) Inspect(ctx context.Context, id string) (containers.Container, error) {
  49. return containers.Container{
  50. ID: "id",
  51. Image: "nginx",
  52. Platform: "Linux",
  53. RestartPolicyCondition: "none",
  54. }, nil
  55. }
  56. func (cs *containerService) List(ctx context.Context, all bool) ([]containers.Container, error) {
  57. result := []containers.Container{
  58. {
  59. ID: "id",
  60. Image: "nginx",
  61. },
  62. {
  63. ID: "1234",
  64. Image: "alpine",
  65. },
  66. }
  67. if all {
  68. result = append(result, containers.Container{
  69. ID: "stopped",
  70. Image: "nginx",
  71. })
  72. }
  73. return result, nil
  74. }
  75. func (cs *containerService) Run(ctx context.Context, r containers.ContainerConfig) error {
  76. fmt.Printf("Running container %q with name %q\n", r.Image, r.ID)
  77. return nil
  78. }
  79. func (cs *containerService) Start(ctx context.Context, containerID string) error {
  80. return errors.New("not implemented")
  81. }
  82. func (cs *containerService) Stop(ctx context.Context, containerName string, timeout *uint32) error {
  83. return errors.New("not implemented")
  84. }
  85. func (cs *containerService) Exec(ctx context.Context, name string, request containers.ExecRequest) error {
  86. fmt.Printf("Executing command %q on container %q", request.Command, name)
  87. return nil
  88. }
  89. func (cs *containerService) Logs(ctx context.Context, containerName string, request containers.LogsRequest) error {
  90. fmt.Fprintf(request.Writer, "Following logs for container %q", containerName)
  91. return nil
  92. }
  93. func (cs *containerService) Delete(ctx context.Context, id string, request containers.DeleteRequest) error {
  94. fmt.Printf("Deleting container %q with force = %t\n", id, request.Force)
  95. return nil
  96. }
  97. type composeService struct{}
  98. func (cs *composeService) Up(ctx context.Context, opts *cli.ProjectOptions) error {
  99. prj, err := cli.ProjectFromOptions(opts)
  100. if err != nil {
  101. return err
  102. }
  103. fmt.Printf("Up command on project %q", prj.Name)
  104. return nil
  105. }
  106. func (cs *composeService) Down(ctx context.Context, opts *cli.ProjectOptions) error {
  107. prj, err := cli.ProjectFromOptions(opts)
  108. if err != nil {
  109. return err
  110. }
  111. fmt.Printf("Down command on project %q", prj.Name)
  112. return nil
  113. }
  114. func (cs *composeService) Ps(ctx context.Context, opts *cli.ProjectOptions) ([]compose.ServiceStatus, error) {
  115. return nil, errdefs.ErrNotImplemented
  116. }
  117. func (cs *composeService) Logs(ctx context.Context, opts *cli.ProjectOptions, w io.Writer) error {
  118. return errdefs.ErrNotImplemented
  119. }
  120. func (cs *composeService) Convert(ctx context.Context, opts *cli.ProjectOptions) ([]byte, error) {
  121. return nil, errdefs.ErrNotImplemented
  122. }