View Javadoc
1   package org.apache.maven.archetype.source;
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.archetype.catalog.Archetype;
23  import org.apache.maven.archetype.catalog.ArchetypeCatalog;
24  import org.apache.maven.archetype.catalog.io.xpp3.ArchetypeCatalogXpp3Writer;
25  import org.codehaus.plexus.logging.AbstractLogEnabled;
26  import org.codehaus.plexus.util.IOUtil;
27  
28  import java.io.IOException;
29  import java.io.Writer;
30  import java.util.List;
31  import java.util.Properties;
32  
33  /** @author Jason van Zyl */
34  public class CatalogArchetypeDataSink
35      extends AbstractLogEnabled
36      implements ArchetypeDataSink
37  {
38      private ArchetypeCatalogXpp3Writer catalogWriter = new ArchetypeCatalogXpp3Writer();
39  
40      public void putArchetypes( List<Archetype> archetypes, Writer writer )
41          throws ArchetypeDataSinkException
42      {
43          ArchetypeCatalog catalog = new ArchetypeCatalog();
44  
45          for ( Archetype archetype : archetypes )
46          {
47              catalog.addArchetype( archetype );
48          }
49  
50          try
51          {
52              catalogWriter.write( writer, catalog );
53          }
54          catch ( IOException e )
55          {
56              throw new ArchetypeDataSinkException( "Error writing archetype catalog.", e );
57          }
58          finally
59          {
60              IOUtil.close( writer );
61          }
62      }
63  
64      public void putArchetypes( ArchetypeDataSource source, Properties properties, Writer writer )
65          throws ArchetypeDataSourceException, ArchetypeDataSinkException
66      {
67          List<Archetype> archetypes = source.getArchetypeCatalog( properties ).getArchetypes();
68  
69          putArchetypes( archetypes, writer );
70      }
71  }