|
| 1 | +/** |
| 2 | + * Copyright 2025 the original author or authors. |
| 3 | + * |
| 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 | + * |
| 8 | + * https://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | +package io.micrometer.release.train; |
| 17 | + |
| 18 | +import java.util.List; |
| 19 | + |
| 20 | +public record TrainOptions() { |
| 21 | + |
| 22 | + enum ProjectName { |
| 23 | + |
| 24 | + CONTEXT_PROPAGATION("context-propagation"), MICROMETER("micrometer-bom"), TRACING("micrometer-tracing-bom"), |
| 25 | + DOC_GEN("micrometer-docs-generator"); |
| 26 | + |
| 27 | + private final String groupId = "io.micrometer"; |
| 28 | + |
| 29 | + private final String artifactId; |
| 30 | + |
| 31 | + ProjectName(String artifactId) { |
| 32 | + this.artifactId = artifactId; |
| 33 | + } |
| 34 | + |
| 35 | + public String getGroupId() { |
| 36 | + return groupId; |
| 37 | + } |
| 38 | + |
| 39 | + public String getArtifactId() { |
| 40 | + return artifactId; |
| 41 | + } |
| 42 | + |
| 43 | + } |
| 44 | + |
| 45 | + public record Project(ProjectName projectName, List<Dependency> dependencies) { |
| 46 | + |
| 47 | + public static Project contextPropagation() { |
| 48 | + return new Project(ProjectName.CONTEXT_PROPAGATION, List.of()); |
| 49 | + } |
| 50 | + |
| 51 | + public static Project micrometer(String contextPropagationVersion) { |
| 52 | + return new Project(ProjectName.MICROMETER, List |
| 53 | + .of(new Dependency(ProjectName.CONTEXT_PROPAGATION, versionOrNotSet(contextPropagationVersion)))); |
| 54 | + } |
| 55 | + |
| 56 | + public static Project tracing(String contextPropagationVersion, String micrometerVersion) { |
| 57 | + return new Project(ProjectName.TRACING, |
| 58 | + List.of(new Dependency(ProjectName.CONTEXT_PROPAGATION, versionOrNotSet(contextPropagationVersion)), |
| 59 | + new Dependency(ProjectName.MICROMETER, versionOrNotSet(micrometerVersion)))); |
| 60 | + } |
| 61 | + |
| 62 | + public static Project dosGen(String micrometerVersion, String tracingVersion) { |
| 63 | + return new Project(ProjectName.DOC_GEN, |
| 64 | + List.of(new Dependency(ProjectName.MICROMETER, versionOrNotSet(micrometerVersion)), |
| 65 | + new Dependency(ProjectName.TRACING, versionOrNotSet(tracingVersion)))); |
| 66 | + } |
| 67 | + |
| 68 | + private static String versionOrNotSet(String contextPropagationVersion) { |
| 69 | + return contextPropagationVersion != null ? contextPropagationVersion : Dependency.NO_VERSION_SET; |
| 70 | + } |
| 71 | + |
| 72 | + public String name() { |
| 73 | + return projectName().name(); |
| 74 | + } |
| 75 | + } |
| 76 | + |
| 77 | + public record Dependency(ProjectName projectName, String version) { |
| 78 | + |
| 79 | + public static final String NO_VERSION_SET = ""; |
| 80 | + |
| 81 | + public boolean isVersionSet() { |
| 82 | + return NO_VERSION_SET.equals(version); |
| 83 | + } |
| 84 | + } |
| 85 | + |
| 86 | +} |
0 commit comments