Coverage Report - org.apache.maven.plugin.assembly.archive.ManifestCreationFinalizer
 
Classes in this File Line Coverage Branch Coverage Complexity
ManifestCreationFinalizer
58%
21/36
58%
7/12
6,667
 
 1  
 package org.apache.maven.plugin.assembly.archive;
 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.archiver.MavenArchiveConfiguration;
 23  
 import org.apache.maven.archiver.MavenArchiver;
 24  
 import org.apache.maven.artifact.DependencyResolutionRequiredException;
 25  
 import org.apache.maven.execution.MavenSession;
 26  
 import org.apache.maven.project.MavenProject;
 27  
 import org.codehaus.plexus.archiver.AbstractArchiveFinalizer;
 28  
 import org.codehaus.plexus.archiver.Archiver;
 29  
 import org.codehaus.plexus.archiver.ArchiverException;
 30  
 import org.codehaus.plexus.archiver.jar.JarArchiver;
 31  
 import org.codehaus.plexus.archiver.jar.Manifest;
 32  
 import org.codehaus.plexus.archiver.jar.ManifestException;
 33  
 import org.codehaus.plexus.util.IOUtil;
 34  
 
 35  
 import java.io.File;
 36  
 import java.io.FileInputStream;
 37  
 import java.io.FileNotFoundException;
 38  
 import java.io.IOException;
 39  
 import java.io.InputStreamReader;
 40  
 import java.io.Reader;
 41  
 import java.util.Collections;
 42  
 import java.util.List;
 43  
 
 44  
 /**
 45  
  * @version $Id: ManifestCreationFinalizer.java 1402062 2012-10-25 09:47:28Z dennisl $
 46  
  */
 47  
 public class ManifestCreationFinalizer
 48  
     extends AbstractArchiveFinalizer
 49  
 {
 50  
 
 51  
     private final MavenProject project;
 52  
 
 53  
     private final MavenSession session;
 54  
 
 55  
     private final MavenArchiveConfiguration archiveConfiguration;
 56  
 
 57  
     // TODO: I'd really prefer to rewrite MavenArchiver as either a
 58  
     // separate manifest creation utility (and to
 59  
     // create an include pom.properties etc into another archiver), or
 60  
     // an implementation of an archiver
 61  
     // (the first is preferable).
 62  15
     private final MavenArchiver mavenArchiver = new MavenArchiver();
 63  
 
 64  
     public ManifestCreationFinalizer( final MavenSession session, final MavenProject project,
 65  
                                       final MavenArchiveConfiguration archiveConfiguration )
 66  15
     {
 67  15
         this.session = session;
 68  15
         this.project = project;
 69  15
         this.archiveConfiguration = archiveConfiguration;
 70  15
     }
 71  
 
 72  
     @Override
 73  
     public void finalizeArchiveCreation( final Archiver archiver ) throws ArchiverException
 74  
     {
 75  12
         if ( archiveConfiguration != null )
 76  
         {
 77  
             try
 78  
             {
 79  
                 Manifest manifest;
 80  9
                 final File manifestFile = archiveConfiguration.getManifestFile();
 81  
 
 82  9
                 if ( manifestFile != null )
 83  
                 {
 84  3
                     Reader manifestFileReader = null;
 85  
                     try
 86  
                     {
 87  3
                         manifestFileReader = new InputStreamReader( new FileInputStream( manifestFile ), "UTF-8" );
 88  3
                         manifest = new Manifest( manifestFileReader );
 89  
                     }
 90  0
                     catch ( final FileNotFoundException e )
 91  
                     {
 92  0
                         throw new ArchiverException( "Manifest not found: " + e.getMessage(), e );
 93  
                     }
 94  0
                     catch ( final IOException e )
 95  
                     {
 96  0
                         throw new ArchiverException( "Error processing manifest: " + e.getMessage(), e );
 97  
                     }
 98  
                     finally
 99  
                     {
 100  3
                         IOUtil.close( manifestFileReader );
 101  3
                     }
 102  3
                 }
 103  
                 else
 104  
                 {
 105  6
                     manifest = mavenArchiver.getManifest( session, project, archiveConfiguration );
 106  
                 }
 107  
 
 108  9
                 if ( ( manifest != null ) && ( archiver instanceof JarArchiver ) )
 109  
                 {
 110  6
                     final JarArchiver jarArchiver = (JarArchiver) archiver;
 111  6
                     jarArchiver.addConfiguredManifest( manifest );
 112  
                 }
 113  
             }
 114  0
             catch ( final ManifestException e )
 115  
             {
 116  0
                 throw new ArchiverException( "Error creating manifest: " + e.getMessage(), e );
 117  
             }
 118  0
             catch ( final DependencyResolutionRequiredException e )
 119  
             {
 120  0
                 throw new ArchiverException( "Dependencies were not resolved: " + e.getMessage(), e );
 121  9
             }
 122  
         }
 123  12
     }
 124  
 
 125  
     public List<String> getVirtualFiles()
 126  
     {
 127  0
         if ( archiveConfiguration != null )
 128  
         {
 129  
             try
 130  
             {
 131  0
                 if ( mavenArchiver.getManifest( project, archiveConfiguration.getManifest() ) != null )
 132  
                 {
 133  0
                     return Collections.singletonList( "META-INF/MANIFEST.MF" );
 134  
                 }
 135  
             }
 136  0
             catch ( final ManifestException e )
 137  
             {
 138  
             }
 139  0
             catch ( final DependencyResolutionRequiredException e )
 140  
             {
 141  0
             }
 142  
         }
 143  
 
 144  0
         return null;
 145  
     }
 146  
 
 147  
 }