View Javadoc
1   package org.apache.maven.repository.internal;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import java.util.Collection;
23  import java.util.Collections;
24  import java.util.Date;
25  import java.util.LinkedHashMap;
26  import java.util.Map;
27  
28  import org.eclipse.aether.RepositorySystemSession;
29  import org.eclipse.aether.artifact.Artifact;
30  import org.eclipse.aether.deployment.DeployRequest;
31  import org.eclipse.aether.impl.MetadataGenerator;
32  import org.eclipse.aether.metadata.Metadata;
33  import org.eclipse.aether.util.ConfigUtils;
34  
35  /**
36   * @author Benjamin Bentmann
37   */
38  class RemoteSnapshotMetadataGenerator
39      implements MetadataGenerator
40  {
41  
42      private final Map<Object, RemoteSnapshotMetadata> snapshots;
43  
44      private final boolean legacyFormat;
45  
46      private final Date timestamp;
47  
48      RemoteSnapshotMetadataGenerator( RepositorySystemSession session, DeployRequest request )
49      {
50          legacyFormat = ConfigUtils.getBoolean( session, false, "maven.metadata.legacy" );
51  
52          timestamp = (Date) ConfigUtils.getObject( session, new Date(), "maven.startTime" );
53  
54          snapshots = new LinkedHashMap<>();
55  
56          /*
57           * NOTE: This should be considered a quirk to support interop with Maven's legacy ArtifactDeployer which
58           * processes one artifact at a time and hence cannot associate the artifacts from the same project to use the
59           * same timestamp+buildno for the snapshot versions. Allowing the caller to pass in metadata from a previous
60           * deployment allows to re-establish the association between the artifacts of the same project.
61           */
62          for ( Metadata metadata : request.getMetadata() )
63          {
64              if ( metadata instanceof RemoteSnapshotMetadata )
65              {
66                  RemoteSnapshotMetadata snapshotMetadata = (RemoteSnapshotMetadata) metadata;
67                  snapshots.put( snapshotMetadata.getKey(), snapshotMetadata );
68              }
69          }
70      }
71  
72      public Collection<? extends Metadata> prepare( Collection<? extends Artifact> artifacts )
73      {
74          for ( Artifact artifact : artifacts )
75          {
76              if ( artifact.isSnapshot() )
77              {
78                  Object key = RemoteSnapshotMetadata.getKey( artifact );
79                  RemoteSnapshotMetadata snapshotMetadata = snapshots.get( key );
80                  if ( snapshotMetadata == null )
81                  {
82                      snapshotMetadata = new RemoteSnapshotMetadata( artifact, legacyFormat, timestamp );
83                      snapshots.put( key, snapshotMetadata );
84                  }
85                  snapshotMetadata.bind( artifact );
86              }
87          }
88  
89          return snapshots.values();
90      }
91  
92      public Artifact transformArtifact( Artifact artifact )
93      {
94          if ( artifact.isSnapshot() && artifact.getVersion().equals( artifact.getBaseVersion() ) )
95          {
96              Object key = RemoteSnapshotMetadata.getKey( artifact );
97              RemoteSnapshotMetadata snapshotMetadata = snapshots.get( key );
98              if ( snapshotMetadata != null )
99              {
100                 artifact = artifact.setVersion( snapshotMetadata.getExpandedVersion( artifact ) );
101             }
102         }
103 
104         return artifact;
105     }
106 
107     public Collection<? extends Metadata> finish( Collection<? extends Artifact> artifacts )
108     {
109         return Collections.emptyList();
110     }
111 
112 }