1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.maven.repository.internal;
20
21 import java.util.Collection;
22 import java.util.Collections;
23 import java.util.Date;
24 import java.util.LinkedHashMap;
25 import java.util.Map;
26
27 import org.eclipse.aether.RepositorySystemSession;
28 import org.eclipse.aether.artifact.Artifact;
29 import org.eclipse.aether.deployment.DeployRequest;
30 import org.eclipse.aether.impl.MetadataGenerator;
31 import org.eclipse.aether.metadata.Metadata;
32 import org.eclipse.aether.util.ConfigUtils;
33
34
35
36
37
38
39 class RemoteSnapshotMetadataGenerator implements MetadataGenerator {
40
41 private final Map<Object, RemoteSnapshotMetadata> snapshots;
42
43 private final Date timestamp;
44
45 private final Integer buildNumber;
46
47 RemoteSnapshotMetadataGenerator(RepositorySystemSession session, DeployRequest request) {
48 timestamp = (Date) ConfigUtils.getObject(session, new Date(), "maven.startTime");
49 Object bn = ConfigUtils.getObject(session, null, "maven.buildNumber");
50 if (bn instanceof Integer) {
51 this.buildNumber = (Integer) bn;
52 } else if (bn instanceof String) {
53 this.buildNumber = Integer.valueOf((String) bn);
54 } else {
55 this.buildNumber = null;
56 }
57
58 snapshots = new LinkedHashMap<>();
59
60
61
62
63
64
65
66 for (Metadata metadata : request.getMetadata()) {
67 if (metadata instanceof RemoteSnapshotMetadata) {
68 RemoteSnapshotMetadata snapshotMetadata = (RemoteSnapshotMetadata) metadata;
69 snapshots.put(snapshotMetadata.getKey(), snapshotMetadata);
70 }
71 }
72 }
73
74 @Override
75 public Collection<? extends Metadata> prepare(Collection<? extends Artifact> artifacts) {
76 for (Artifact artifact : artifacts) {
77 if (artifact.isSnapshot()) {
78 Object key = RemoteSnapshotMetadata.getKey(artifact);
79 RemoteSnapshotMetadata snapshotMetadata = snapshots.get(key);
80 if (snapshotMetadata == null) {
81 snapshotMetadata = new RemoteSnapshotMetadata(artifact, timestamp, buildNumber);
82 snapshots.put(key, snapshotMetadata);
83 }
84 snapshotMetadata.bind(artifact);
85 }
86 }
87
88 return snapshots.values();
89 }
90
91 @Override
92 public Artifact transformArtifact(Artifact artifact) {
93 if (artifact.isSnapshot() && artifact.getVersion().equals(artifact.getBaseVersion())) {
94 Object key = RemoteSnapshotMetadata.getKey(artifact);
95 RemoteSnapshotMetadata snapshotMetadata = snapshots.get(key);
96 if (snapshotMetadata != null) {
97 artifact = artifact.setVersion(snapshotMetadata.getExpandedVersion(artifact));
98 }
99 }
100
101 return artifact;
102 }
103
104 @Override
105 public Collection<? extends Metadata> finish(Collection<? extends Artifact> artifacts) {
106 return Collections.emptyList();
107 }
108 }