CoverageNodeImpl.java

  1. /*******************************************************************************
  2.  * Copyright (c) 2009, 2025 Mountainminds GmbH & Co. KG and Contributors
  3.  * This program and the accompanying materials are made available under
  4.  * the terms of the Eclipse Public License 2.0 which is available at
  5.  * http://www.eclipse.org/legal/epl-2.0
  6.  *
  7.  * SPDX-License-Identifier: EPL-2.0
  8.  *
  9.  * Contributors:
  10.  *    Marc R. Hoffmann - initial API and implementation
  11.  *
  12.  *******************************************************************************/
  13. package org.jacoco.core.analysis;

  14. import java.util.Collection;

  15. import org.jacoco.core.internal.analysis.CounterImpl;

  16. /**
  17.  * Base implementation for coverage data nodes.
  18.  */
  19. public class CoverageNodeImpl implements ICoverageNode {

  20.     private final ElementType elementType;

  21.     private final String name;

  22.     /** Counter for branches. */
  23.     protected CounterImpl branchCounter;

  24.     /** Counter for instructions. */
  25.     protected CounterImpl instructionCounter;

  26.     /** Counter for lines */
  27.     protected CounterImpl lineCounter;

  28.     /** Counter for complexity. */
  29.     protected CounterImpl complexityCounter;

  30.     /** Counter for methods. */
  31.     protected CounterImpl methodCounter;

  32.     /** Counter for classes. */
  33.     protected CounterImpl classCounter;

  34.     /**
  35.      * Creates a new coverage data node.
  36.      *
  37.      * @param elementType
  38.      *            type of the element represented by this instance
  39.      * @param name
  40.      *            name of this node
  41.      */
  42.     public CoverageNodeImpl(final ElementType elementType, final String name) {
  43.         this.elementType = elementType;
  44.         this.name = name;
  45.         this.branchCounter = CounterImpl.COUNTER_0_0;
  46.         this.instructionCounter = CounterImpl.COUNTER_0_0;
  47.         this.complexityCounter = CounterImpl.COUNTER_0_0;
  48.         this.methodCounter = CounterImpl.COUNTER_0_0;
  49.         this.classCounter = CounterImpl.COUNTER_0_0;
  50.         this.lineCounter = CounterImpl.COUNTER_0_0;
  51.     }

  52.     /**
  53.      * Increments the counters by the values given by another element.
  54.      *
  55.      * @param child
  56.      *            counters to add
  57.      */
  58.     public void increment(final ICoverageNode child) {
  59.         instructionCounter = instructionCounter
  60.                 .increment(child.getInstructionCounter());
  61.         branchCounter = branchCounter.increment(child.getBranchCounter());
  62.         lineCounter = lineCounter.increment(child.getLineCounter());
  63.         complexityCounter = complexityCounter
  64.                 .increment(child.getComplexityCounter());
  65.         methodCounter = methodCounter.increment(child.getMethodCounter());
  66.         classCounter = classCounter.increment(child.getClassCounter());
  67.     }

  68.     /**
  69.      * Increments the counters by the values given by the collection of
  70.      * elements.
  71.      *
  72.      * @param children
  73.      *            list of nodes, which counters will be added to this node
  74.      */
  75.     public void increment(final Collection<? extends ICoverageNode> children) {
  76.         for (final ICoverageNode child : children) {
  77.             increment(child);
  78.         }
  79.     }

  80.     // === ICoverageDataNode ===

  81.     public ElementType getElementType() {
  82.         return elementType;
  83.     }

  84.     public String getName() {
  85.         return name;
  86.     }

  87.     public ICounter getInstructionCounter() {
  88.         return instructionCounter;
  89.     }

  90.     public ICounter getBranchCounter() {
  91.         return branchCounter;
  92.     }

  93.     public ICounter getLineCounter() {
  94.         return lineCounter;
  95.     }

  96.     public ICounter getComplexityCounter() {
  97.         return complexityCounter;
  98.     }

  99.     public ICounter getMethodCounter() {
  100.         return methodCounter;
  101.     }

  102.     public ICounter getClassCounter() {
  103.         return classCounter;
  104.     }

  105.     public ICounter getCounter(final CounterEntity entity) {
  106.         switch (entity) {
  107.         case INSTRUCTION:
  108.             return getInstructionCounter();
  109.         case BRANCH:
  110.             return getBranchCounter();
  111.         case LINE:
  112.             return getLineCounter();
  113.         case COMPLEXITY:
  114.             return getComplexityCounter();
  115.         case METHOD:
  116.             return getMethodCounter();
  117.         case CLASS:
  118.             return getClassCounter();
  119.         }
  120.         throw new AssertionError(entity);
  121.     }

  122.     public boolean containsCode() {
  123.         return getInstructionCounter().getTotalCount() != 0;
  124.     }

  125.     public ICoverageNode getPlainCopy() {
  126.         final CoverageNodeImpl copy = new CoverageNodeImpl(elementType, name);
  127.         copy.instructionCounter = CounterImpl.getInstance(instructionCounter);
  128.         copy.branchCounter = CounterImpl.getInstance(branchCounter);
  129.         copy.lineCounter = CounterImpl.getInstance(lineCounter);
  130.         copy.complexityCounter = CounterImpl.getInstance(complexityCounter);
  131.         copy.methodCounter = CounterImpl.getInstance(methodCounter);
  132.         copy.classCounter = CounterImpl.getInstance(classCounter);
  133.         return copy;
  134.     }

  135.     @Override
  136.     public String toString() {
  137.         final StringBuilder sb = new StringBuilder();
  138.         sb.append(name).append(" [").append(elementType).append("]");
  139.         return sb.toString();
  140.     }

  141. }