Coverage Report - org.apache.maven.plugin.dependency.AnalyzeReportView
 
Classes in this File Line Coverage Branch Coverage Complexity
AnalyzeReportView
0 %
0/121
0 %
0/10
3,5
 
 1  
 package org.apache.maven.plugin.dependency;
 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.util.Iterator;
 23  
 import java.util.ResourceBundle;
 24  
 
 25  
 import org.apache.maven.artifact.Artifact;
 26  
 import org.apache.maven.doxia.sink.Sink;
 27  
 import org.apache.maven.shared.dependency.analyzer.ProjectDependencyAnalysis;
 28  
 
 29  
 /**
 30  
  * This is the view part of the analyze-report mojo. It generates the HTML report for the project website. The HTML
 31  
  * output is same as the CLI output.
 32  
  */
 33  0
 public class AnalyzeReportView
 34  
 {
 35  
     /**
 36  
      * Generates the HTML report.
 37  
      */
 38  
     public void generateReport( ProjectDependencyAnalysis analysis, Sink sink, ResourceBundle bundle )
 39  
     {
 40  0
         sink.head();
 41  0
         sink.title();
 42  0
         sink.text( bundle.getString( "analyze.report.header" ) );
 43  0
         sink.title_();
 44  0
         sink.head_();
 45  0
         sink.body();
 46  
 
 47  
         // Generate title
 48  0
         sink.section1();
 49  0
         sink.sectionTitle1();
 50  0
         sink.text( bundle.getString( "analyze.report.mainTitle" ) );
 51  0
         sink.sectionTitle1_();
 52  
 
 53  
         // Generate Used Declared dependencies:
 54  0
         sink.section2();
 55  0
         sink.sectionTitle2();
 56  0
         sink.text( bundle.getString( "analyze.report.UsedDeclaredDependencies" ) );
 57  0
         sink.sectionTitle2_();
 58  0
         if ( analysis.getUsedDeclaredArtifacts().isEmpty() )
 59  
         {
 60  0
             sink.paragraph();
 61  0
             sink.text( bundle.getString( "analyze.report.noDependency" ) );
 62  0
             sink.paragraph_();
 63  0
             sink.horizontalRule();
 64  
         }
 65  
         else
 66  
         {
 67  
             @SuppressWarnings( "unchecked" )
 68  0
             Iterator<Artifact> iter = analysis.getUsedDeclaredArtifacts().iterator();
 69  0
             generateDependenciesTable( sink, iter );
 70  
         }
 71  0
         sink.section2_();
 72  
 
 73  
         // Generate Used Undeclared dependencies:
 74  0
         sink.section2();
 75  0
         sink.sectionTitle2();
 76  0
         sink.text( bundle.getString( "analyze.report.UsedUndeclaredDependencies" ) );
 77  0
         sink.sectionTitle2_();
 78  0
         if ( analysis.getUsedUndeclaredArtifacts().isEmpty() )
 79  
         {
 80  0
             sink.paragraph();
 81  0
             sink.text( bundle.getString( "analyze.report.noDependency" ) );
 82  0
             sink.paragraph_();
 83  0
             sink.horizontalRule();
 84  
         }
 85  
         else
 86  
         {
 87  
             @SuppressWarnings( "unchecked" )
 88  0
             Iterator<Artifact> iter = analysis.getUsedUndeclaredArtifacts().iterator();
 89  0
             generateDependenciesTable( sink, iter );
 90  
         }
 91  0
         sink.section2_();
 92  
 
 93  
         // Generate Unused declared dependencies:
 94  0
         sink.section2();
 95  0
         sink.sectionTitle2();
 96  0
         sink.text( bundle.getString( "analyze.report.UnusedDeclaredDependencies" ) );
 97  0
         sink.sectionTitle2_();
 98  0
         if ( analysis.getUnusedDeclaredArtifacts().isEmpty() )
 99  
         {
 100  0
             sink.paragraph();
 101  0
             sink.text( bundle.getString( "analyze.report.noDependency" ) );
 102  0
             sink.paragraph_();
 103  0
             sink.horizontalRule();
 104  
         }
 105  
         else
 106  
         {
 107  
             @SuppressWarnings( "unchecked" )
 108  0
             Iterator<Artifact> iter = analysis.getUnusedDeclaredArtifacts().iterator();
 109  0
             generateDependenciesTable( sink, iter );
 110  
         }
 111  0
         sink.section2_();
 112  
 
 113  0
         sink.section1_();
 114  
 
 115  
         // Closing the report
 116  0
         sink.body_();
 117  0
         sink.flush();
 118  0
         sink.close();
 119  0
     }
 120  
 
 121  
     /**
 122  
      * Generate a table for the given dependencies iterator.
 123  
      */
 124  
     public void generateDependenciesTable( Sink sink, Iterator<Artifact> iter )
 125  
     {
 126  0
         sink.table();
 127  
 
 128  0
         sink.tableRow();
 129  0
         sink.tableCell();
 130  0
         sink.bold();
 131  0
         sink.text( "GroupId" );
 132  0
         sink.bold_();
 133  0
         sink.tableCell_();
 134  
 
 135  0
         sink.tableCell();
 136  0
         sink.bold();
 137  0
         sink.text( "ArtifactId" );
 138  0
         sink.bold_();
 139  0
         sink.tableCell_();
 140  
 
 141  0
         sink.tableCell();
 142  0
         sink.bold();
 143  0
         sink.text( "Version" );
 144  0
         sink.bold_();
 145  0
         sink.tableCell_();
 146  
 
 147  0
         sink.tableCell();
 148  0
         sink.bold();
 149  0
         sink.text( "Scope" );
 150  0
         sink.bold_();
 151  0
         sink.tableCell_();
 152  
 
 153  0
         sink.tableCell();
 154  0
         sink.bold();
 155  0
         sink.text( "Classifier" );
 156  0
         sink.bold_();
 157  0
         sink.tableCell_();
 158  
 
 159  0
         sink.tableCell();
 160  0
         sink.bold();
 161  0
         sink.text( "Type" );
 162  0
         sink.bold_();
 163  0
         sink.tableCell_();
 164  
 
 165  0
         sink.tableCell();
 166  0
         sink.bold();
 167  0
         sink.text( "Optional" );
 168  0
         sink.bold_();
 169  0
         sink.tableCell_();
 170  
 
 171  0
         sink.tableRow_();
 172  0
         while ( iter.hasNext() )
 173  
         {
 174  0
             Artifact artifact = iter.next();
 175  
 
 176  0
             sink.tableRow();
 177  0
             sink.tableCell();
 178  0
             sink.text( artifact.getGroupId() );
 179  0
             sink.tableCell_();
 180  0
             sink.tableCell();
 181  0
             sink.text( artifact.getArtifactId() );
 182  0
             sink.tableCell_();
 183  0
             sink.tableCell();
 184  0
             sink.text( artifact.getVersion() );
 185  0
             sink.tableCell_();
 186  0
             sink.tableCell();
 187  0
             sink.text( artifact.getScope() );
 188  0
             sink.tableCell_();
 189  0
             sink.tableCell();
 190  0
             sink.text( artifact.getClassifier() );
 191  0
             sink.tableCell_();
 192  0
             sink.tableCell();
 193  0
             sink.text( artifact.getType() );
 194  0
             sink.tableCell_();
 195  0
             sink.tableCell();
 196  0
             if ( artifact.isOptional() )
 197  
             {
 198  0
                 sink.text( "" );
 199  
             }
 200  
             else
 201  
             {
 202  0
                 sink.text( "false" );
 203  
             }
 204  
 
 205  0
             sink.tableCell_();
 206  0
             sink.tableRow_();
 207  0
         }
 208  
 
 209  0
         sink.table_();
 210  0
         sink.horizontalRule();
 211  0
     }
 212  
 }