View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.impl.resolver;
20  
21  import java.time.Instant;
22  import java.util.Collection;
23  import java.util.Collections;
24  import java.util.LinkedHashMap;
25  import java.util.Map;
26  
27  import org.apache.maven.api.Constants;
28  import org.apache.maven.api.MonotonicClock;
29  import org.eclipse.aether.RepositorySystemSession;
30  import org.eclipse.aether.artifact.Artifact;
31  import org.eclipse.aether.impl.MetadataGenerator;
32  import org.eclipse.aether.installation.InstallRequest;
33  import org.eclipse.aether.metadata.Metadata;
34  import org.eclipse.aether.util.ConfigUtils;
35  
36  /**
37   * Maven local GAV level metadata generator.
38   * <p>
39   * Local snapshot metadata contains non-transformed snapshot version.
40   */
41  class LocalSnapshotMetadataGenerator implements MetadataGenerator {
42  
43      private final Map<Object, LocalSnapshotMetadata> snapshots;
44  
45      private final Instant timestamp;
46  
47      LocalSnapshotMetadataGenerator(RepositorySystemSession session, InstallRequest request) {
48          timestamp = (Instant) ConfigUtils.getObject(session, MonotonicClock.now(), Constants.MAVEN_START_INSTANT);
49  
50          snapshots = new LinkedHashMap<>();
51      }
52  
53      @Override
54      public Collection<? extends Metadata> prepare(Collection<? extends Artifact> artifacts) {
55          for (Artifact artifact : artifacts) {
56              if (artifact.isSnapshot()) {
57                  Object key = LocalSnapshotMetadata.getKey(artifact);
58                  LocalSnapshotMetadata snapshotMetadata = snapshots.get(key);
59                  if (snapshotMetadata == null) {
60                      snapshotMetadata = new LocalSnapshotMetadata(artifact, timestamp);
61                      snapshots.put(key, snapshotMetadata);
62                  }
63                  snapshotMetadata.bind(artifact);
64              }
65          }
66  
67          return Collections.emptyList();
68      }
69  
70      @Override
71      public Artifact transformArtifact(Artifact artifact) {
72          return artifact;
73      }
74  
75      @Override
76      public Collection<? extends Metadata> finish(Collection<? extends Artifact> artifacts) {
77          return snapshots.values();
78      }
79  }