ClassInstrumenter.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.internal.instr;

  14. import org.jacoco.core.internal.flow.ClassProbesVisitor;
  15. import org.jacoco.core.internal.flow.MethodProbesVisitor;
  16. import org.objectweb.asm.ClassVisitor;
  17. import org.objectweb.asm.FieldVisitor;
  18. import org.objectweb.asm.MethodVisitor;

  19. /**
  20.  * Adapter that instruments a class for coverage tracing.
  21.  */
  22. public class ClassInstrumenter extends ClassProbesVisitor {

  23.     private final IProbeArrayStrategy probeArrayStrategy;

  24.     private String className;

  25.     /**
  26.      * Emits an instrumented version of this class to the given class visitor.
  27.      *
  28.      * @param probeArrayStrategy
  29.      *            this strategy will be used to access the probe array
  30.      * @param cv
  31.      *            next delegate in the visitor chain will receive the
  32.      *            instrumented class
  33.      */
  34.     public ClassInstrumenter(final IProbeArrayStrategy probeArrayStrategy,
  35.             final ClassVisitor cv) {
  36.         super(cv);
  37.         this.probeArrayStrategy = probeArrayStrategy;
  38.     }

  39.     @Override
  40.     public void visit(final int version, final int access, final String name,
  41.             final String signature, final String superName,
  42.             final String[] interfaces) {
  43.         this.className = name;
  44.         super.visit(version, access, name, signature, superName, interfaces);
  45.     }

  46.     @Override
  47.     public FieldVisitor visitField(final int access, final String name,
  48.             final String desc, final String signature, final Object value) {
  49.         InstrSupport.assertNotInstrumented(name, className);
  50.         return super.visitField(access, name, desc, signature, value);
  51.     }

  52.     @Override
  53.     public MethodProbesVisitor visitMethod(final int access, final String name,
  54.             final String desc, final String signature,
  55.             final String[] exceptions) {

  56.         InstrSupport.assertNotInstrumented(name, className);

  57.         final MethodVisitor mv = cv.visitMethod(access, name, desc, signature,
  58.                 exceptions);

  59.         if (mv == null) {
  60.             return null;
  61.         }
  62.         final MethodVisitor frameEliminator = new DuplicateFrameEliminator(mv);
  63.         final ProbeInserter probeVariableInserter = new ProbeInserter(access,
  64.                 name, desc, frameEliminator, probeArrayStrategy);
  65.         return new MethodInstrumenter(probeVariableInserter,
  66.                 probeVariableInserter);
  67.     }

  68.     @Override
  69.     public void visitTotalProbeCount(final int count) {
  70.         probeArrayStrategy.addMembers(cv, count);
  71.     }

  72. }