Skip to content

Commit 3232191

Browse files
committed
Docker compose dev service
Fix amqp username prop
1 parent 02377d5 commit 3232191

File tree

100 files changed

+5390
-538
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+5390
-538
lines changed

core/deployment/src/main/java/io/quarkus/deployment/Feature.java

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ public enum Feature {
1717
AWT,
1818
CACHE,
1919
CDI,
20+
COMPOSE,
2021
CONFIG_YAML,
2122
CONFLUENT_REGISTRY_AVRO,
2223
CONFLUENT_REGISTRY_JSON,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
package io.quarkus.deployment.builditem;
2+
3+
import java.util.Arrays;
4+
import java.util.Collections;
5+
import java.util.List;
6+
import java.util.Map;
7+
import java.util.Objects;
8+
import java.util.Optional;
9+
import java.util.stream.Stream;
10+
11+
import io.quarkus.builder.item.SimpleBuildItem;
12+
import io.quarkus.deployment.dev.devservices.ContainerInfo;
13+
import io.quarkus.deployment.dev.devservices.ImageName;
14+
import io.quarkus.deployment.dev.devservices.RunningContainer;
15+
16+
/**
17+
* BuildItem for running services provided by compose
18+
*/
19+
public final class DevServicesComposeProjectBuildItem extends SimpleBuildItem {
20+
21+
public static final String COMPOSE_IGNORE = "io.quarkus.devservices.compose.ignore";
22+
23+
private final String project;
24+
25+
private final Map<String, List<RunningContainer>> composeServices;
26+
27+
private final Map<String, String> config;
28+
29+
public DevServicesComposeProjectBuildItem() {
30+
this(null, Collections.emptyMap(), Collections.emptyMap());
31+
}
32+
33+
public DevServicesComposeProjectBuildItem(String project,
34+
Map<String, List<RunningContainer>> composeServices,
35+
Map<String, String> config) {
36+
this.project = project;
37+
this.composeServices = composeServices;
38+
this.config = config;
39+
}
40+
41+
public String getProject() {
42+
return project;
43+
}
44+
45+
public Map<String, String> getConfig() {
46+
return config;
47+
}
48+
49+
public Map<String, List<RunningContainer>> getComposeServices() {
50+
return composeServices;
51+
}
52+
53+
/**
54+
* Locate a running container by image partial and port
55+
* The container image partial can be a substring of the full image name
56+
*
57+
* @param imagePartials image partials
58+
* @param port exposed port
59+
* @return the running container or null if not found
60+
*/
61+
public Optional<RunningContainer> locate(List<String> imagePartials, int port) {
62+
return locateContainers(imagePartials)
63+
.filter(r -> Optional.ofNullable(r.containerInfo().exposedPorts())
64+
.map(ports -> Arrays.stream(ports)
65+
.anyMatch(p -> Objects.equals(p.privatePort(), port)))
66+
.isPresent())
67+
.findFirst();
68+
}
69+
70+
/**
71+
* Locate a running container by image partial
72+
* The container image partial can be a substring of the full image name
73+
* Ignored services are not returned
74+
*
75+
* @param imagePartials image partials
76+
* @return the list of running containers
77+
*/
78+
public List<RunningContainer> locate(List<String> imagePartials) {
79+
return locateContainers(imagePartials).toList();
80+
}
81+
82+
/**
83+
* Locate the first running container by image partial
84+
* The container image partial can be a substring of the full image name
85+
* Ignored services are not returned
86+
*
87+
* @param imagePartials image partials
88+
* @return the first running container
89+
*/
90+
public Optional<RunningContainer> locateFirst(List<String> imagePartials) {
91+
return locateContainers(imagePartials).findFirst();
92+
}
93+
94+
private Stream<RunningContainer> locateContainers(List<String> imagePartials) {
95+
return imagePartials.stream()
96+
.flatMap(imagePartial -> composeServices.values().stream().flatMap(List::stream)
97+
// Ignore service if contains ignore label
98+
.filter(c -> !isContainerIgnored(c.containerInfo()))
99+
.filter(runningContainer -> {
100+
String imageName = runningContainer.containerInfo().imageName();
101+
return imageName.contains(imagePartial)
102+
|| ImageName.parse(imageName).withLibraryPrefix().toString().contains(imagePartial);
103+
}));
104+
}
105+
106+
/**
107+
* Ignored services are not returned by locate
108+
*
109+
* @param containerInfo container info
110+
* @return true if the container should be ignored
111+
*/
112+
public static boolean isContainerIgnored(ContainerInfo containerInfo) {
113+
return Boolean.parseBoolean(containerInfo.labels().get(COMPOSE_IGNORE));
114+
}
115+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package io.quarkus.deployment.dev.devservices;
2+
3+
import io.quarkus.runtime.annotations.ConfigDocSection;
4+
import io.quarkus.runtime.annotations.ConfigPhase;
5+
import io.quarkus.runtime.annotations.ConfigRoot;
6+
import io.smallrye.config.ConfigMapping;
7+
8+
@ConfigRoot(phase = ConfigPhase.BUILD_TIME)
9+
@ConfigMapping(prefix = "quarkus.compose")
10+
public interface ComposeBuildTimeConfig {
11+
12+
/**
13+
* Compose dev services config
14+
*/
15+
@ConfigDocSection(generated = true)
16+
ComposeDevServicesBuildTimeConfig devservices();
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
package io.quarkus.deployment.dev.devservices;
2+
3+
import java.util.List;
4+
import java.util.Map;
5+
import java.util.Optional;
6+
7+
import io.quarkus.runtime.annotations.ConfigGroup;
8+
import io.smallrye.config.WithDefault;
9+
10+
@ConfigGroup
11+
public interface ComposeDevServicesBuildTimeConfig {
12+
13+
/**
14+
* Compose dev service enabled or disabled
15+
*/
16+
@WithDefault("true")
17+
boolean enabled();
18+
19+
/**
20+
* List of file paths relative to the project root for Compose dev service configuration,
21+
* if not provided will look for compose files in the project root
22+
*/
23+
Optional<List<String>> files();
24+
25+
/**
26+
* Name of the compose project, used to discover running containers,
27+
* if not provided a project name will be generated
28+
*/
29+
Optional<String> projectName();
30+
31+
/**
32+
* Compose profiles to activate
33+
*/
34+
Optional<List<String>> profiles();
35+
36+
/**
37+
* List of additional options to pass to compose command
38+
*/
39+
Optional<List<String>> options();
40+
41+
/**
42+
* Whether to run compose down and stop containers at shutdown
43+
*/
44+
@WithDefault("true")
45+
boolean stopContainers();
46+
47+
/**
48+
* Whether to use test containers Ryuk resource reaper to clean up containers
49+
*/
50+
@WithDefault("true")
51+
boolean ryukEnabled();
52+
53+
/**
54+
* Whether to remove volumes on compose down
55+
*/
56+
@WithDefault("true")
57+
boolean removeVolumes();
58+
59+
/**
60+
* Which images to remove on compose down
61+
* <p>
62+
* Locally built images, without custom tags are removed by default.
63+
*/
64+
Optional<RemoveImages> removeImages();
65+
66+
/**
67+
* --rmi option for compose down
68+
*/
69+
enum RemoveImages {
70+
ALL,
71+
LOCAL
72+
}
73+
74+
/**
75+
* Env variables to pass to all Compose instances
76+
*/
77+
Map<String, String> envVariables();
78+
79+
/**
80+
* Scale configuration for services: Configure the number of instances for specific services
81+
*/
82+
Map<String, Integer> scale();
83+
84+
/**
85+
* Whether to tail container logs to the console
86+
*/
87+
@WithDefault("false")
88+
boolean followContainerLogs();
89+
90+
/**
91+
* Whether to build images before starting containers.
92+
* <p>
93+
* When not provided, Compose images are built per-service `pull-policy`.
94+
* When `true`, forces build of all images before starting containers.
95+
* When `false`, skips re-building images before starting containers.
96+
*/
97+
Optional<Boolean> build();
98+
}

0 commit comments

Comments
 (0)