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