api.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482
  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 api
  14. import (
  15. "context"
  16. "fmt"
  17. "strings"
  18. "time"
  19. "github.com/compose-spec/compose-go/types"
  20. )
  21. // Service manages a compose project
  22. type Service interface {
  23. // Build executes the equivalent to a `compose build`
  24. Build(ctx context.Context, project *types.Project, options BuildOptions) error
  25. // Push executes the equivalent to a `compose push`
  26. Push(ctx context.Context, project *types.Project, options PushOptions) error
  27. // Pull executes the equivalent of a `compose pull`
  28. Pull(ctx context.Context, project *types.Project, options PullOptions) error
  29. // Create executes the equivalent to a `compose create`
  30. Create(ctx context.Context, project *types.Project, options CreateOptions) error
  31. // Start executes the equivalent to a `compose start`
  32. Start(ctx context.Context, projectName string, options StartOptions) error
  33. // Restart restarts containers
  34. Restart(ctx context.Context, projectName string, options RestartOptions) error
  35. // Stop executes the equivalent to a `compose stop`
  36. Stop(ctx context.Context, projectName string, options StopOptions) error
  37. // Up executes the equivalent to a `compose up`
  38. Up(ctx context.Context, project *types.Project, options UpOptions) error
  39. // Down executes the equivalent to a `compose down`
  40. Down(ctx context.Context, projectName string, options DownOptions) error
  41. // Logs executes the equivalent to a `compose logs`
  42. Logs(ctx context.Context, projectName string, consumer LogConsumer, options LogOptions) error
  43. // Ps executes the equivalent to a `compose ps`
  44. Ps(ctx context.Context, projectName string, options PsOptions) ([]ContainerSummary, error)
  45. // List executes the equivalent to a `docker stack ls`
  46. List(ctx context.Context, options ListOptions) ([]Stack, error)
  47. // Convert translate compose model into backend's native format
  48. Convert(ctx context.Context, project *types.Project, options ConvertOptions) ([]byte, error)
  49. // Kill executes the equivalent to a `compose kill`
  50. Kill(ctx context.Context, projectName string, options KillOptions) error
  51. // RunOneOffContainer creates a service oneoff container and starts its dependencies
  52. RunOneOffContainer(ctx context.Context, project *types.Project, opts RunOptions) (int, error)
  53. // Remove executes the equivalent to a `compose rm`
  54. Remove(ctx context.Context, projectName string, options RemoveOptions) error
  55. // Exec executes a command in a running service container
  56. Exec(ctx context.Context, projectName string, options RunOptions) (int, error)
  57. // Copy copies a file/folder between a service container and the local filesystem
  58. Copy(ctx context.Context, projectName string, options CopyOptions) error
  59. // Pause executes the equivalent to a `compose pause`
  60. Pause(ctx context.Context, projectName string, options PauseOptions) error
  61. // UnPause executes the equivalent to a `compose unpause`
  62. UnPause(ctx context.Context, projectName string, options PauseOptions) error
  63. // Top executes the equivalent to a `compose top`
  64. Top(ctx context.Context, projectName string, services []string) ([]ContainerProcSummary, error)
  65. // Events executes the equivalent to a `compose events`
  66. Events(ctx context.Context, projectName string, options EventsOptions) error
  67. // Port executes the equivalent to a `compose port`
  68. Port(ctx context.Context, projectName string, service string, port int, options PortOptions) (string, int, error)
  69. // Images executes the equivalent of a `compose images`
  70. Images(ctx context.Context, projectName string, options ImagesOptions) ([]ImageSummary, error)
  71. }
  72. // BuildOptions group options of the Build API
  73. type BuildOptions struct {
  74. // Pull always attempt to pull a newer version of the image
  75. Pull bool
  76. // Progress set type of progress output ("auto", "plain", "tty")
  77. Progress string
  78. // Args set build-time args
  79. Args types.MappingWithEquals
  80. // NoCache disables cache use
  81. NoCache bool
  82. // Quiet make the build process not output to the console
  83. Quiet bool
  84. // Services passed in the command line to be built
  85. Services []string
  86. // Ssh authentications passed in the command line
  87. SSHs []types.SSHKey
  88. }
  89. // CreateOptions group options of the Create API
  90. type CreateOptions struct {
  91. // Services defines the services user interacts with
  92. Services []string
  93. // Remove legacy containers for services that are not defined in the project
  94. RemoveOrphans bool
  95. // Ignore legacy containers for services that are not defined in the project
  96. IgnoreOrphans bool
  97. // Recreate define the strategy to apply on existing containers
  98. Recreate string
  99. // RecreateDependencies define the strategy to apply on dependencies services
  100. RecreateDependencies string
  101. // Inherit reuse anonymous volumes from previous container
  102. Inherit bool
  103. // Timeout set delay to wait for container to gracelfuly stop before sending SIGKILL
  104. Timeout *time.Duration
  105. // QuietPull makes the pulling process quiet
  106. QuietPull bool
  107. }
  108. // StartOptions group options of the Start API
  109. type StartOptions struct {
  110. // Project is the compose project used to define this app. Might be nil if user ran command just with project name
  111. Project *types.Project
  112. // Attach to container and forward logs if not nil
  113. Attach LogConsumer
  114. // AttachTo set the services to attach to
  115. AttachTo []string
  116. // CascadeStop stops the application when a container stops
  117. CascadeStop bool
  118. // ExitCodeFrom return exit code from specified service
  119. ExitCodeFrom string
  120. // Wait won't return until containers reached the running|healthy state
  121. Wait bool
  122. // Services passed in the command line to be started
  123. Services []string
  124. }
  125. // RestartOptions group options of the Restart API
  126. type RestartOptions struct {
  127. // Project is the compose project used to define this app. Might be nil if user ran command just with project name
  128. Project *types.Project
  129. // Timeout override container restart timeout
  130. Timeout *time.Duration
  131. // Services passed in the command line to be restarted
  132. Services []string
  133. }
  134. // StopOptions group options of the Stop API
  135. type StopOptions struct {
  136. // Project is the compose project used to define this app. Might be nil if user ran command just with project name
  137. Project *types.Project
  138. // Timeout override container stop timeout
  139. Timeout *time.Duration
  140. // Services passed in the command line to be stopped
  141. Services []string
  142. }
  143. // UpOptions group options of the Up API
  144. type UpOptions struct {
  145. Create CreateOptions
  146. Start StartOptions
  147. }
  148. // DownOptions group options of the Down API
  149. type DownOptions struct {
  150. // RemoveOrphans will cleanup containers that are not declared on the compose model but own the same labels
  151. RemoveOrphans bool
  152. // Project is the compose project used to define this app. Might be nil if user ran `down` just with project name
  153. Project *types.Project
  154. // Timeout override container stop timeout
  155. Timeout *time.Duration
  156. // Images remove image used by services. 'all': Remove all images. 'local': Remove only images that don't have a tag
  157. Images string
  158. // Volumes remove volumes, both declared in the `volumes` section and anonymous ones
  159. Volumes bool
  160. }
  161. // ConvertOptions group options of the Convert API
  162. type ConvertOptions struct {
  163. // Format define the output format used to dump converted application model (json|yaml)
  164. Format string
  165. // Output defines the path to save the application model
  166. Output string
  167. }
  168. // PushOptions group options of the Push API
  169. type PushOptions struct {
  170. Quiet bool
  171. IgnoreFailures bool
  172. }
  173. // PullOptions group options of the Pull API
  174. type PullOptions struct {
  175. Quiet bool
  176. IgnoreFailures bool
  177. }
  178. // ImagesOptions group options of the Images API
  179. type ImagesOptions struct {
  180. Services []string
  181. }
  182. // KillOptions group options of the Kill API
  183. type KillOptions struct {
  184. // RemoveOrphans will cleanup containers that are not declared on the compose model but own the same labels
  185. RemoveOrphans bool
  186. // Project is the compose project used to define this app. Might be nil if user ran command just with project name
  187. Project *types.Project
  188. // Services passed in the command line to be killed
  189. Services []string
  190. // Signal to send to containers
  191. Signal string
  192. }
  193. // RemoveOptions group options of the Remove API
  194. type RemoveOptions struct {
  195. // Project is the compose project used to define this app. Might be nil if user ran command just with project name
  196. Project *types.Project
  197. // DryRun just list removable resources
  198. DryRun bool
  199. // Volumes remove anonymous volumes
  200. Volumes bool
  201. // Force don't ask to confirm removal
  202. Force bool
  203. // Services passed in the command line to be removed
  204. Services []string
  205. }
  206. // RunOptions group options of the Run API
  207. type RunOptions struct {
  208. // Project is the compose project used to define this app. Might be nil if user ran command just with project name
  209. Project *types.Project
  210. Name string
  211. Service string
  212. Command []string
  213. Entrypoint []string
  214. Detach bool
  215. AutoRemove bool
  216. Tty bool
  217. Interactive bool
  218. WorkingDir string
  219. User string
  220. Environment []string
  221. Labels types.Labels
  222. Privileged bool
  223. UseNetworkAliases bool
  224. NoDeps bool
  225. // QuietPull makes the pulling process quiet
  226. QuietPull bool
  227. // used by exec
  228. Index int
  229. }
  230. // EventsOptions group options of the Events API
  231. type EventsOptions struct {
  232. Services []string
  233. Consumer func(event Event) error
  234. }
  235. // Event is a container runtime event served by Events API
  236. type Event struct {
  237. Timestamp time.Time
  238. Service string
  239. Container string
  240. Status string
  241. Attributes map[string]string
  242. }
  243. // PortOptions group options of the Port API
  244. type PortOptions struct {
  245. Protocol string
  246. Index int
  247. }
  248. func (e Event) String() string {
  249. t := e.Timestamp.Format("2006-01-02 15:04:05.000000")
  250. var attr []string
  251. for k, v := range e.Attributes {
  252. attr = append(attr, fmt.Sprintf("%s=%s", k, v))
  253. }
  254. return fmt.Sprintf("%s container %s %s (%s)\n", t, e.Status, e.Container, strings.Join(attr, ", "))
  255. }
  256. // ListOptions group options of the ls API
  257. type ListOptions struct {
  258. All bool
  259. }
  260. // PsOptions group options of the Ps API
  261. type PsOptions struct {
  262. Project *types.Project
  263. All bool
  264. Services []string
  265. }
  266. // CopyOptions group options of the cp API
  267. type CopyOptions struct {
  268. Source string
  269. Destination string
  270. All bool
  271. Index int
  272. FollowLink bool
  273. CopyUIDGID bool
  274. }
  275. // PortPublisher hold status about published port
  276. type PortPublisher struct {
  277. URL string
  278. TargetPort int
  279. PublishedPort int
  280. Protocol string
  281. }
  282. // ContainerSummary hold high-level description of a container
  283. type ContainerSummary struct {
  284. ID string
  285. Name string
  286. Command string
  287. Project string
  288. Service string
  289. State string
  290. Health string
  291. ExitCode int
  292. Publishers PortPublishers
  293. }
  294. // PortPublishers is a slice of PortPublisher
  295. type PortPublishers []PortPublisher
  296. // Len implements sort.Interface
  297. func (p PortPublishers) Len() int {
  298. return len(p)
  299. }
  300. // Less implements sort.Interface
  301. func (p PortPublishers) Less(i, j int) bool {
  302. left := p[i]
  303. right := p[j]
  304. if left.URL != right.URL {
  305. return left.URL < right.URL
  306. }
  307. if left.TargetPort != right.TargetPort {
  308. return left.TargetPort < right.TargetPort
  309. }
  310. if left.PublishedPort != right.PublishedPort {
  311. return left.PublishedPort < right.PublishedPort
  312. }
  313. return left.Protocol < right.Protocol
  314. }
  315. // Swap implements sort.Interface
  316. func (p PortPublishers) Swap(i, j int) {
  317. p[i], p[j] = p[j], p[i]
  318. }
  319. // ContainerProcSummary holds container processes top data
  320. type ContainerProcSummary struct {
  321. ID string
  322. Name string
  323. Processes [][]string
  324. Titles []string
  325. }
  326. // ImageSummary holds container image description
  327. type ImageSummary struct {
  328. ID string
  329. ContainerName string
  330. Repository string
  331. Tag string
  332. Size int64
  333. }
  334. // ServiceStatus hold status about a service
  335. type ServiceStatus struct {
  336. ID string
  337. Name string
  338. Replicas int
  339. Desired int
  340. Ports []string
  341. Publishers []PortPublisher
  342. }
  343. // LogOptions defines optional parameters for the `Log` API
  344. type LogOptions struct {
  345. Project *types.Project
  346. Services []string
  347. Tail string
  348. Since string
  349. Until string
  350. Follow bool
  351. Timestamps bool
  352. }
  353. // PauseOptions group options of the Pause API
  354. type PauseOptions struct {
  355. // Services passed in the command line to be started
  356. Services []string
  357. // Project is the compose project used to define this app. Might be nil if user ran command just with project name
  358. Project *types.Project
  359. }
  360. const (
  361. // STARTING indicates that stack is being deployed
  362. STARTING string = "Starting"
  363. // RUNNING indicates that stack is deployed and services are running
  364. RUNNING string = "Running"
  365. // UPDATING indicates that some stack resources are being recreated
  366. UPDATING string = "Updating"
  367. // REMOVING indicates that stack is being deleted
  368. REMOVING string = "Removing"
  369. // UNKNOWN indicates unknown stack state
  370. UNKNOWN string = "Unknown"
  371. // FAILED indicates that stack deployment failed
  372. FAILED string = "Failed"
  373. )
  374. const (
  375. // RecreateDiverged to recreate services which configuration diverges from compose model
  376. RecreateDiverged = "diverged"
  377. // RecreateForce to force service container being recreated
  378. RecreateForce = "force"
  379. // RecreateNever to never recreate existing service containers
  380. RecreateNever = "never"
  381. )
  382. // Stack holds the name and state of a compose application/stack
  383. type Stack struct {
  384. ID string
  385. Name string
  386. Status string
  387. ConfigFiles string
  388. Reason string
  389. }
  390. // LogConsumer is a callback to process log messages from services
  391. type LogConsumer interface {
  392. Log(containerName, service, message string)
  393. Status(container, msg string)
  394. Register(container string)
  395. }
  396. // ContainerEventListener is a callback to process ContainerEvent from services
  397. type ContainerEventListener func(event ContainerEvent)
  398. // ContainerEvent notify an event has been collected on source container implementing Service
  399. type ContainerEvent struct {
  400. Type int
  401. // Container is the name of the container _without the project prefix_.
  402. //
  403. // This is only suitable for display purposes within Compose, as it's
  404. // not guaranteed to be unique across services.
  405. Container string
  406. Service string
  407. Line string
  408. // ContainerEventExit only
  409. ExitCode int
  410. Restarting bool
  411. }
  412. const (
  413. // ContainerEventLog is a ContainerEvent of type log. Line is set
  414. ContainerEventLog = iota
  415. // ContainerEventAttach is a ContainerEvent of type attach. First event sent about a container
  416. ContainerEventAttach
  417. // ContainerEventStopped is a ContainerEvent of type stopped.
  418. ContainerEventStopped
  419. // ContainerEventExit is a ContainerEvent of type exit. ExitCode is set
  420. ContainerEventExit
  421. // UserCancel user cancelled compose up, we are stopping containers
  422. UserCancel
  423. )
  424. // Separator is used for naming components
  425. var Separator = "-"
  426. // GetImageNameOrDefault computes the default image name for a service, used to tag built images
  427. func GetImageNameOrDefault(service types.ServiceConfig, projectName string) string {
  428. imageName := service.Image
  429. if imageName == "" {
  430. imageName = projectName + Separator + service.Name
  431. }
  432. return imageName
  433. }