Coverage Report - org.apache.maven.usability.diagnostics.ErrorDiagnostics
 
Classes in this File Line Coverage Branch Coverage Complexity
ErrorDiagnostics
0%
0/33
0%
0/14
2.6
ErrorDiagnostics$1
N/A
N/A
2.6
ErrorDiagnostics$PuntErrorDiagnoser
0%
0/6
N/A
2.6
 
 1  
 package org.apache.maven.usability.diagnostics;
 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.codehaus.plexus.PlexusConstants;
 23  
 import org.codehaus.plexus.PlexusContainer;
 24  
 import org.codehaus.plexus.component.repository.exception.ComponentLifecycleException;
 25  
 import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
 26  
 import org.codehaus.plexus.context.Context;
 27  
 import org.codehaus.plexus.context.ContextException;
 28  
 import org.codehaus.plexus.logging.AbstractLogEnabled;
 29  
 import org.codehaus.plexus.personality.plexus.lifecycle.phase.Contextualizable;
 30  
 
 31  
 import java.util.Iterator;
 32  
 import java.util.List;
 33  
 
 34  0
 public class ErrorDiagnostics
 35  
     extends AbstractLogEnabled
 36  
     implements Contextualizable
 37  
 {
 38  0
     public static final String ROLE = ErrorDiagnostics.class.getName();
 39  
 
 40  
     private PlexusContainer container;
 41  
 
 42  
     private List errorDiagnosers;
 43  
 
 44  
     public void setErrorDiagnosers( List errorDiagnosers )
 45  
     {
 46  0
         this.errorDiagnosers = errorDiagnosers;
 47  0
     }
 48  
 
 49  
     public String diagnose( Throwable error )
 50  
     {
 51  0
         List diags = errorDiagnosers;
 52  
 
 53  0
         boolean releaseDiags = false;
 54  0
         boolean errorProcessed = false;
 55  
 
 56  0
         String message = null;
 57  
 
 58  
         try
 59  
         {
 60  0
             if ( diags == null )
 61  
             {
 62  0
                 releaseDiags = true;
 63  
 
 64  
                 try
 65  
                 {
 66  0
                     diags = container.lookupList( ErrorDiagnoser.ROLE );
 67  
                 }
 68  0
                 catch ( ComponentLookupException e )
 69  
                 {
 70  0
                     getLogger().error( "Failed to lookup the list of error diagnosers.", e );
 71  0
                 }
 72  
             }
 73  
 
 74  0
             if ( diags != null )
 75  
             {
 76  0
                 for ( Iterator it = diags.iterator(); it.hasNext(); )
 77  
                 {
 78  0
                     ErrorDiagnoser diagnoser = (ErrorDiagnoser) it.next();
 79  
 
 80  0
                     if ( diagnoser.canDiagnose( error ) )
 81  
                     {
 82  0
                         errorProcessed = true;
 83  
 
 84  0
                         message = diagnoser.diagnose( error );
 85  
 
 86  0
                         break;
 87  
                     }
 88  0
                 }
 89  
             }
 90  
         }
 91  
         finally
 92  
         {
 93  0
             if ( releaseDiags && diags != null )
 94  
             {
 95  
                 try
 96  
                 {
 97  0
                     container.releaseAll( diags );
 98  
                 }
 99  0
                 catch ( ComponentLifecycleException e )
 100  
                 {
 101  0
                     getLogger().debug( "Failed to release error diagnoser list.", e );
 102  0
                 }
 103  
             }
 104  
 
 105  0
             if ( !errorProcessed )
 106  
             {
 107  0
                 message = new PuntErrorDiagnoser().diagnose( error );
 108  
             }
 109  
         }
 110  
 
 111  0
         return message;
 112  
     }
 113  
 
 114  
     public void contextualize( Context context )
 115  
         throws ContextException
 116  
     {
 117  0
         this.container = (PlexusContainer) context.get( PlexusConstants.PLEXUS_KEY );
 118  0
     }
 119  
 
 120  0
     private static class PuntErrorDiagnoser
 121  
         implements ErrorDiagnoser
 122  
     {
 123  
 
 124  
         public boolean canDiagnose( Throwable error )
 125  
         {
 126  0
             return true;
 127  
         }
 128  
 
 129  
         public String diagnose( Throwable error )
 130  
         {
 131  0
             StringBuffer message = new StringBuffer();
 132  
 
 133  0
             message.append( error.getMessage() );
 134  
 
 135  0
             DiagnosisUtils.appendRootCauseIfPresentAndUnique( error, message, false );
 136  
 
 137  0
             return message.toString();
 138  
         }
 139  
 
 140  
     }
 141  
 }