api.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. /*
  2. Copyright 2020 Docker Compose CLI authors
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package compose
  14. import (
  15. "context"
  16. "fmt"
  17. "io"
  18. "strings"
  19. "time"
  20. "github.com/compose-spec/compose-go/types"
  21. )
  22. // Service manages a compose project
  23. type Service interface {
  24. // Build executes the equivalent to a `compose build`
  25. Build(ctx context.Context, project *types.Project, options BuildOptions) error
  26. // Push executes the equivalent ot a `compose push`
  27. Push(ctx context.Context, project *types.Project, options PushOptions) error
  28. // Pull executes the equivalent of a `compose pull`
  29. Pull(ctx context.Context, project *types.Project) error
  30. // Create executes the equivalent to a `compose create`
  31. Create(ctx context.Context, project *types.Project, opts CreateOptions) error
  32. // Start executes the equivalent to a `compose start`
  33. Start(ctx context.Context, project *types.Project, options StartOptions) error
  34. // Restart restarts containers
  35. Restart(ctx context.Context, project *types.Project, options RestartOptions) error
  36. // Stop executes the equivalent to a `compose stop`
  37. Stop(ctx context.Context, project *types.Project, options StopOptions) error
  38. // Up executes the equivalent to a `compose up`
  39. Up(ctx context.Context, project *types.Project, options UpOptions) error
  40. // Down executes the equivalent to a `compose down`
  41. Down(ctx context.Context, projectName string, options DownOptions) error
  42. // Logs executes the equivalent to a `compose logs`
  43. Logs(ctx context.Context, projectName string, consumer LogConsumer, options LogOptions) error
  44. // Ps executes the equivalent to a `compose ps`
  45. Ps(ctx context.Context, projectName string, options PsOptions) ([]ContainerSummary, error)
  46. // List executes the equivalent to a `docker stack ls`
  47. List(ctx context.Context, options ListOptions) ([]Stack, error)
  48. // Convert translate compose model into backend's native format
  49. Convert(ctx context.Context, project *types.Project, options ConvertOptions) ([]byte, error)
  50. // Kill executes the equivalent to a `compose kill`
  51. Kill(ctx context.Context, project *types.Project, options KillOptions) error
  52. // RunOneOffContainer creates a service oneoff container and starts its dependencies
  53. RunOneOffContainer(ctx context.Context, project *types.Project, opts RunOptions) (int, error)
  54. // Remove executes the equivalent to a `compose rm`
  55. Remove(ctx context.Context, project *types.Project, options RemoveOptions) ([]string, error)
  56. // Exec executes a command in a running service container
  57. Exec(ctx context.Context, project *types.Project, opts RunOptions) error
  58. // Pause executes the equivalent to a `compose pause`
  59. Pause(ctx context.Context, project *types.Project) error
  60. // UnPause executes the equivalent to a `compose unpause`
  61. UnPause(ctx context.Context, project *types.Project) error
  62. // Top executes the equivalent to a `compose top`
  63. Top(ctx context.Context, projectName string, services []string) ([]ContainerProcSummary, error)
  64. // Events executes the equivalent to a `compose events`
  65. Events(ctx context.Context, project string, options EventsOptions) error
  66. // Port executes the equivalent to a `compose port`
  67. Port(ctx context.Context, project string, service string, port int, options PortOptions) (string, int, error)
  68. }
  69. // BuildOptions group options of the Build API
  70. type BuildOptions struct {
  71. // Pull always attempt to pull a newer version of the image
  72. Pull bool
  73. // Progress set type of progress output ("auto", "plain", "tty")
  74. Progress string
  75. // Args set build-time args
  76. Args types.Mapping
  77. }
  78. // CreateOptions group options of the Create API
  79. type CreateOptions struct {
  80. // Services defines the services user interacts with
  81. Services []string
  82. // Remove legacy containers for services that are not defined in the project
  83. RemoveOrphans bool
  84. // Recreate define the strategy to apply on existing containers
  85. Recreate string
  86. // RecreateDependencies define the strategy to apply on dependencies services
  87. RecreateDependencies string
  88. // Inherit reuse anonymous volumes from previous container
  89. Inherit bool
  90. // Timeout set delay to wait for container to gracelfuly stop before sending SIGKILL
  91. Timeout *time.Duration
  92. // QuietPull makes the pulling process quiet
  93. QuietPull bool
  94. }
  95. // StartOptions group options of the Start API
  96. type StartOptions struct {
  97. // Attach will attach to service containers and send container logs and events
  98. Attach ContainerEventListener
  99. // Services passed in the command line to be started
  100. Services []string
  101. }
  102. // RestartOptions group options of the Restart API
  103. type RestartOptions struct {
  104. // Timeout override container restart timeout
  105. Timeout *time.Duration
  106. }
  107. // StopOptions group options of the Stop API
  108. type StopOptions struct {
  109. // Timeout override container stop timeout
  110. Timeout *time.Duration
  111. }
  112. // UpOptions group options of the Up API
  113. type UpOptions struct {
  114. // Detach will create services and return immediately
  115. Detach bool
  116. // QuietPull makes the pulling process quiet
  117. QuietPull bool
  118. }
  119. // DownOptions group options of the Down API
  120. type DownOptions struct {
  121. // RemoveOrphans will cleanup containers that are not declared on the compose model but own the same labels
  122. RemoveOrphans bool
  123. // Project is the compose project used to define this app. Might be nil if user ran `down` just with project name
  124. Project *types.Project
  125. // Timeout override container stop timeout
  126. Timeout *time.Duration
  127. // Images remove image used by services. 'all': Remove all images. 'local': Remove only images that don't have a tag
  128. Images string
  129. // Volumes remove volumes, both declared in the `volumes` section and anonymous ones
  130. Volumes bool
  131. }
  132. // ConvertOptions group options of the Convert API
  133. type ConvertOptions struct {
  134. // Format define the output format used to dump converted application model (json|yaml)
  135. Format string
  136. // Output defines the path to save the application model
  137. Output string
  138. }
  139. // PushOptions group options of the Push API
  140. type PushOptions struct {
  141. IgnoreFailures bool
  142. }
  143. // KillOptions group options of the Kill API
  144. type KillOptions struct {
  145. // Signal to send to containers
  146. Signal string
  147. }
  148. // RemoveOptions group options of the Remove API
  149. type RemoveOptions struct {
  150. // DryRun just list removable resources
  151. DryRun bool
  152. // Volumes remove anonymous volumes
  153. Volumes bool
  154. // Force don't ask to confirm removal
  155. Force bool
  156. }
  157. // RunOptions group options of the Run API
  158. type RunOptions struct {
  159. Name string
  160. Service string
  161. Command []string
  162. Entrypoint []string
  163. Detach bool
  164. AutoRemove bool
  165. Writer io.Writer
  166. Reader io.Reader
  167. Tty bool
  168. WorkingDir string
  169. User string
  170. Environment []string
  171. Labels types.Labels
  172. Privileged bool
  173. UseNetworkAliases bool
  174. // used by exec
  175. Index int
  176. }
  177. // EventsOptions group options of the Events API
  178. type EventsOptions struct {
  179. Services []string
  180. Consumer func(event Event) error
  181. }
  182. // Event is a container runtime event served by Events API
  183. type Event struct {
  184. Timestamp time.Time
  185. Service string
  186. Container string
  187. Status string
  188. Attributes map[string]string
  189. }
  190. // PortOptions group options of the Port API
  191. type PortOptions struct {
  192. Protocol string
  193. Index int
  194. }
  195. func (e Event) String() string {
  196. t := e.Timestamp.Format("2006-01-02 15:04:05.000000")
  197. var attr []string
  198. for k, v := range e.Attributes {
  199. attr = append(attr, fmt.Sprintf("%s=%s", k, v))
  200. }
  201. return fmt.Sprintf("%s container %s %s (%s)\n", t, e.Status, e.Container, strings.Join(attr, ", "))
  202. }
  203. // EnvironmentMap return RunOptions.Environment as a MappingWithEquals
  204. func (opts *RunOptions) EnvironmentMap() types.MappingWithEquals {
  205. environment := types.MappingWithEquals{}
  206. for _, s := range opts.Environment {
  207. parts := strings.SplitN(s, "=", 2)
  208. key := parts[0]
  209. switch {
  210. case len(parts) == 1:
  211. environment[key] = nil
  212. default:
  213. environment[key] = &parts[1]
  214. }
  215. }
  216. return environment
  217. }
  218. // ListOptions group options of the ls API
  219. type ListOptions struct {
  220. All bool
  221. }
  222. // PsOptions group options of the Ps API
  223. type PsOptions struct {
  224. All bool
  225. }
  226. // PortPublisher hold status about published port
  227. type PortPublisher struct {
  228. URL string
  229. TargetPort int
  230. PublishedPort int
  231. Protocol string
  232. }
  233. // ContainerSummary hold high-level description of a container
  234. type ContainerSummary struct {
  235. ID string
  236. Name string
  237. Project string
  238. Service string
  239. State string
  240. Health string
  241. Publishers []PortPublisher
  242. }
  243. // ContainerProcSummary holds container processes top data
  244. type ContainerProcSummary struct {
  245. ID string
  246. Name string
  247. Processes [][]string
  248. Titles []string
  249. }
  250. // ServiceStatus hold status about a service
  251. type ServiceStatus struct {
  252. ID string
  253. Name string
  254. Replicas int
  255. Desired int
  256. Ports []string
  257. Publishers []PortPublisher
  258. }
  259. // LogOptions defines optional parameters for the `Log` API
  260. type LogOptions struct {
  261. Services []string
  262. Tail string
  263. Follow bool
  264. Timestamps bool
  265. }
  266. const (
  267. // STARTING indicates that stack is being deployed
  268. STARTING string = "Starting"
  269. // RUNNING indicates that stack is deployed and services are running
  270. RUNNING string = "Running"
  271. // UPDATING indicates that some stack resources are being recreated
  272. UPDATING string = "Updating"
  273. // REMOVING indicates that stack is being deleted
  274. REMOVING string = "Removing"
  275. // UNKNOWN indicates unknown stack state
  276. UNKNOWN string = "Unknown"
  277. // FAILED indicates that stack deployment failed
  278. FAILED string = "Failed"
  279. )
  280. const (
  281. // RecreateDiverged to recreate services which configuration diverges from compose model
  282. RecreateDiverged = "diverged"
  283. // RecreateForce to force service container being recreated
  284. RecreateForce = "force"
  285. // RecreateNever to never recreate existing service containers
  286. RecreateNever = "never"
  287. )
  288. // Stack holds the name and state of a compose application/stack
  289. type Stack struct {
  290. ID string
  291. Name string
  292. Status string
  293. Reason string
  294. }
  295. // LogConsumer is a callback to process log messages from services
  296. type LogConsumer interface {
  297. Log(service, container, message string)
  298. Status(container, msg string)
  299. Register(container string)
  300. }
  301. // ContainerEventListener is a callback to process ContainerEvent from services
  302. type ContainerEventListener func(event ContainerEvent)
  303. // ContainerEvent notify an event has been collected on source container implementing Service
  304. type ContainerEvent struct {
  305. Type int
  306. Container string
  307. Service string
  308. Line string
  309. ExitCode int
  310. }
  311. const (
  312. // ContainerEventLog is a ContainerEvent of type log. Line is set
  313. ContainerEventLog = iota
  314. // ContainerEventAttach is a ContainerEvent of type attach. First event sent about a container
  315. ContainerEventAttach
  316. // ContainerEventExit is a ContainerEvent of type exit. ExitCode is set
  317. ContainerEventExit
  318. // UserCancel user cancelled compose up, we are stopping containers
  319. UserCancel
  320. )