]> source.dussan.org Git - archiva.git/blob
947b1508b3b8121c07b278424318d89abd640e24
[archiva.git] /
1 package org.apache.maven.archiva.repository.metadata;
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 org.apache.maven.archiva.model.ArchivaModelCloner;
23 import org.apache.maven.archiva.model.ArchivaRepositoryMetadata;
24 import org.apache.maven.archiva.model.SnapshotVersion;
25
26 import java.util.Iterator;
27 import java.util.List;
28
29 /**
30  * RepositoryMetadataMerge 
31  *
32  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
33  * @version $Id$
34  */
35 public class RepositoryMetadataMerge
36 {
37     public static ArchivaRepositoryMetadata merge( final ArchivaRepositoryMetadata mainMetadata,
38                                                    final ArchivaRepositoryMetadata sourceMetadata )
39         throws RepositoryMetadataException
40     {
41         if ( mainMetadata == null )
42         {
43             throw new RepositoryMetadataException( "Cannot merge a null main project." );
44         }
45
46         if ( sourceMetadata == null )
47         {
48             throw new RepositoryMetadataException( "Cannot copy to a null parent project." );
49         }
50
51         ArchivaRepositoryMetadata merged = new ArchivaRepositoryMetadata();
52
53         merged.setGroupId( merge( mainMetadata.getGroupId(), sourceMetadata.getGroupId() ) );
54
55         merged.setReleasedVersion( merge( mainMetadata.getReleasedVersion(), sourceMetadata.getReleasedVersion() ) );
56         merged.setSnapshotVersion( merge( mainMetadata.getSnapshotVersion(), sourceMetadata.getSnapshotVersion() ) );
57         merged.setLastUpdated( merge( mainMetadata.getLastUpdated(), sourceMetadata.getLastUpdated() ) );
58         merged.setAvailableVersions( mergeAvailableVersions( mainMetadata.getAvailableVersions(), sourceMetadata
59             .getAvailableVersions() ) );
60
61         return merged;
62     }
63
64     private static boolean empty( String val )
65     {
66         if ( val == null )
67         {
68             return true;
69         }
70
71         return ( val.trim().length() <= 0 );
72     }
73
74     private static SnapshotVersion merge( SnapshotVersion mainSnapshotVersion, SnapshotVersion sourceSnapshotVersion )
75     {
76         if ( sourceSnapshotVersion == null )
77         {
78             return mainSnapshotVersion;
79         }
80
81         if ( mainSnapshotVersion == null )
82         {
83             return ArchivaModelCloner.clone( sourceSnapshotVersion );
84         }
85
86         SnapshotVersion merged = new SnapshotVersion();
87
88         merged.setTimestamp( merge( mainSnapshotVersion.getTimestamp(), sourceSnapshotVersion.getTimestamp() ) );
89         merged
90             .setBuildNumber( Math.max( mainSnapshotVersion.getBuildNumber(), sourceSnapshotVersion.getBuildNumber() ) );
91
92         return merged;
93     }
94
95     private static String merge( String main, String source )
96     {
97         if ( empty( main ) && !empty( source ) )
98         {
99             return source;
100         }
101
102         return main;
103     }
104
105     private static List mergeAvailableVersions( List mainAvailableVersions, List sourceAvailableVersions )
106     {
107         if ( sourceAvailableVersions == null )
108         {
109             return mainAvailableVersions;
110         }
111
112         if ( mainAvailableVersions == null )
113         {
114             return ArchivaModelCloner.cloneAvailableVersions( sourceAvailableVersions );
115         }
116
117         List merged = ArchivaModelCloner.cloneAvailableVersions( mainAvailableVersions );
118
119         Iterator it = sourceAvailableVersions.iterator();
120         while ( it.hasNext() )
121         {
122             String sourceVersion = (String) it.next();
123             if ( !merged.contains( sourceVersion ) )
124             {
125                 merged.add( sourceVersion );
126             }
127         }
128
129         return merged;
130     }
131 }