View Javadoc

1   package org.apache.maven.plugin.assembly.archive.phase;
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.io.File;
23  import java.util.Iterator;
24  import java.util.List;
25  
26  import org.apache.maven.plugin.assembly.AssemblerConfigurationSource;
27  import org.apache.maven.plugin.assembly.AssemblyContext;
28  import org.apache.maven.plugin.assembly.InvalidAssemblerConfigurationException;
29  import org.apache.maven.plugin.assembly.archive.ArchiveCreationException;
30  import org.apache.maven.plugin.assembly.archive.phase.wrappers.RepoBuilderConfigSourceWrapper;
31  import org.apache.maven.plugin.assembly.archive.phase.wrappers.RepoInfoWrapper;
32  import org.apache.maven.plugin.assembly.archive.task.AddDirectoryTask;
33  import org.apache.maven.plugin.assembly.format.AssemblyFormattingException;
34  import org.apache.maven.plugin.assembly.model.Assembly;
35  import org.apache.maven.plugin.assembly.model.Repository;
36  import org.apache.maven.plugin.assembly.utils.AssemblyFormatUtils;
37  import org.apache.maven.plugin.assembly.utils.TypeConversionUtils;
38  import org.apache.maven.shared.repository.RepositoryAssembler;
39  import org.apache.maven.shared.repository.RepositoryAssemblyException;
40  import org.apache.maven.shared.repository.RepositoryBuilderConfigSource;
41  import org.apache.maven.shared.repository.model.RepositoryInfo;
42  import org.codehaus.plexus.archiver.Archiver;
43  import org.codehaus.plexus.component.annotations.Component;
44  import org.codehaus.plexus.component.annotations.Requirement;
45  import org.codehaus.plexus.logging.AbstractLogEnabled;
46  
47  /**
48   * @version $Id: RepositoryAssemblyPhase.java 1163853 2011-08-31 22:42:32Z jdcasey $
49   */
50  @Component( role = AssemblyArchiverPhase.class, hint = "repositories" )
51  public class RepositoryAssemblyPhase
52      extends AbstractLogEnabled
53      implements AssemblyArchiverPhase
54  {
55  
56      @Requirement
57      private RepositoryAssembler repositoryAssembler;
58  
59      public RepositoryAssemblyPhase()
60      {
61          // used for plexus.
62      }
63  
64      // introduced for testing.
65      public RepositoryAssemblyPhase( final RepositoryAssembler repositoryAssembler )
66      {
67          this.repositoryAssembler = repositoryAssembler;
68      }
69  
70      /**
71       * {@inheritDoc}
72       */
73      public void execute( final Assembly assembly, final Archiver archiver,
74                           final AssemblerConfigurationSource configSource, final AssemblyContext context )
75          throws ArchiveCreationException, AssemblyFormattingException, InvalidAssemblerConfigurationException
76      {
77          final List<Repository> repositoriesList = assembly.getRepositories();
78  
79          final File tempRoot = configSource.getTemporaryRootDirectory();
80  
81          for ( final Iterator<Repository> i = repositoriesList.iterator(); i.hasNext(); )
82          {
83              final Repository repository = i.next();
84  
85              final String outputDirectory =
86                  AssemblyFormatUtils.getOutputDirectory( repository.getOutputDirectory(), configSource.getProject(),
87                                                          null, configSource.getFinalName(), configSource );
88  
89              final File repositoryDirectory = new File( tempRoot, outputDirectory );
90  
91              if ( !repositoryDirectory.exists() )
92              {
93                  repositoryDirectory.mkdirs();
94              }
95  
96              try
97              {
98                  getLogger().debug( "Assembling repository to: " + repositoryDirectory );
99                  repositoryAssembler.buildRemoteRepository( repositoryDirectory, wrap( repository ), wrap( configSource ) );
100                 getLogger().debug( "Finished assembling repository to: " + repositoryDirectory );
101             }
102             catch ( final RepositoryAssemblyException e )
103             {
104                 throw new ArchiveCreationException( "Failed to assemble repository: " + e.getMessage(), e );
105             }
106 
107             final AddDirectoryTask task = new AddDirectoryTask( repositoryDirectory );
108 
109             final int dirMode = TypeConversionUtils.modeToInt( repository.getDirectoryMode(), getLogger() );
110             if ( dirMode != -1 )
111             {
112                 task.setDirectoryMode( dirMode );
113             }
114 
115             final int fileMode = TypeConversionUtils.modeToInt( repository.getFileMode(), getLogger() );
116             if ( fileMode != -1 )
117             {
118                 task.setFileMode( fileMode );
119             }
120 
121             task.setOutputDirectory( outputDirectory );
122 
123             task.execute( archiver, configSource );
124         }
125     }
126 
127     private RepositoryBuilderConfigSource wrap( final AssemblerConfigurationSource configSource )
128     {
129         return new RepoBuilderConfigSourceWrapper( configSource );
130     }
131 
132     private RepositoryInfo wrap( final Repository repository )
133     {
134         return new RepoInfoWrapper( repository );
135     }
136 
137 }