]> source.dussan.org Git - archiva.git/blob
9b0d1b283b9e94cae8218daed950a769ba2de6f3
[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.commons.collections.CollectionUtils;
23 import org.apache.commons.io.IOUtils;
24 import org.apache.commons.lang.StringUtils;
25 import org.apache.maven.archiva.model.ArchivaRepositoryMetadata;
26 import org.apache.maven.archiva.model.Plugin;
27 import org.apache.maven.archiva.xml.XMLException;
28 import org.apache.maven.archiva.xml.XMLWriter;
29 import org.dom4j.Document;
30 import org.dom4j.DocumentHelper;
31 import org.dom4j.Element;
32
33 import java.io.File;
34 import java.io.FileWriter;
35 import java.io.IOException;
36 import java.io.Writer;
37 import java.util.Iterator;
38 import java.util.List;
39
40 /**
41  * RepositoryMetadataWriter 
42  *
43  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
44  * @version $Id$
45  */
46 public class RepositoryMetadataWriter
47 {
48     public static void write( ArchivaRepositoryMetadata metadata, File outputFile )
49         throws RepositoryMetadataException
50     {
51         FileWriter writer = null;
52         try
53         {
54             writer = new FileWriter( outputFile );
55             write( metadata, writer );
56             writer.flush();
57         }
58         catch ( IOException e )
59         {
60             throw new RepositoryMetadataException( "Unable to write metadata file: " + outputFile.getAbsolutePath()
61                 + " - " + e.getMessage(), e );
62         }
63         finally
64         {
65             IOUtils.closeQuietly( writer );
66         }
67     }
68
69     public static void write( ArchivaRepositoryMetadata metadata, Writer writer )
70         throws RepositoryMetadataException
71     {
72         Document doc = DocumentHelper.createDocument();
73
74         Element root = DocumentHelper.createElement( "metadata" );
75         doc.setRootElement( root );
76
77         root.addElement( "groupId" ).setText( metadata.getGroupId() );
78         addOptionalElementText( root, "artifactId", metadata.getArtifactId() );
79         addOptionalElementText( root, "version", metadata.getVersion() );
80
81         if ( CollectionUtils.isNotEmpty( metadata.getPlugins() ) )
82         {
83             Element plugins = root.addElement( "plugins" );
84             for ( Plugin plugin : (List<Plugin>)metadata.getPlugins() )
85             {
86                 Element p = plugins.addElement( "plugin" );
87                 p.addElement( "prefix" ).setText( plugin.getPrefix() );
88                 p.addElement( "artifactId" ).setText( plugin.getArtifactId() );
89                 addOptionalElementText( p, "name", plugin.getName() );
90             }
91         }
92
93         if ( CollectionUtils.isNotEmpty( metadata.getAvailableVersions() )
94             || StringUtils.isNotBlank( metadata.getReleasedVersion() )
95             || StringUtils.isNotBlank( metadata.getLatestVersion() )
96             || StringUtils.isNotBlank( metadata.getLastUpdated() ) || ( metadata.getSnapshotVersion() != null ) )
97         {
98             Element versioning = root.addElement( "versioning" );
99
100             addOptionalElementText( versioning, "latest", metadata.getLatestVersion() );
101             addOptionalElementText( versioning, "release", metadata.getReleasedVersion() );
102
103             if ( metadata.getSnapshotVersion() != null )
104             {
105                 Element snapshot = versioning.addElement( "snapshot" );
106                 String bnum = String.valueOf( metadata.getSnapshotVersion().getBuildNumber() );
107                 addOptionalElementText( snapshot, "buildNumber", bnum );
108                 addOptionalElementText( snapshot, "timestamp", metadata.getSnapshotVersion().getTimestamp() );
109             }
110             
111             if ( CollectionUtils.isNotEmpty( metadata.getAvailableVersions() ) )
112             {
113                 Element versions = versioning.addElement( "versions" );
114                 Iterator<String> it = metadata.getAvailableVersions().iterator();
115                 while ( it.hasNext() )
116                 {
117                     String version = (String) it.next();
118                     versions.addElement( "version" ).setText( version );
119                 }
120             }
121
122             addOptionalElementText( versioning, "lastUpdated", metadata.getLastUpdated() );
123         }
124
125         try
126         {
127             XMLWriter.write( doc, writer );
128         }
129         catch ( XMLException e )
130         {
131             throw new RepositoryMetadataException( "Unable to write xml contents to writer: " + e.getMessage(), e );
132         }
133     }
134
135     private static void addOptionalElementText( Element elem, String elemName, String text )
136     {
137         if ( StringUtils.isBlank( text ) )
138         {
139             return;
140         }
141
142         elem.addElement( elemName ).setText( text );
143     }
144 }