All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jdt.core.compiler.CompilationParticipant Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2005, 2019 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *    [email protected] - initial API as ICompilationParticipant
 *    IBM - changed from interface ICompilationParticipant to abstract class CompilationParticipant
 *    IBM - rewrote specification
 *
 *******************************************************************************/

package org.eclipse.jdt.core.compiler;

import java.io.ByteArrayInputStream;
import java.util.Optional;

import org.eclipse.jdt.core.IJavaProject;

/**
 * A compilation participant is notified of events occurring during the compilation process.
 * The compilation process not only involves generating .class files (i.e. building), it also involves
 * cleaning the output directory, reconciling a working copy, etc.
 * So the notified events are the result of a build action, a clean action, a reconcile operation
 * (for a working copy), etc.
 * 

* Code that participates in the build should in general be implemented with a separate Builder, * rather than a CompilationParticipant. It is only necessary to use a CompilationParticipant if * the build step needs to interact with the Java build, for instance by creating additional * Java source files that must themselves in turn be compiled. *

* Clients wishing to participate in the compilation process must subclass this class, and implement * {@link #isActive(IJavaProject)}, {@link #aboutToBuild(IJavaProject)}, * {@link #reconcile(ReconcileContext)}, etc. *

*

* If the "requires" attribute is not used for participant definition, there will be no specific order in which * potential multiple compilation participants are called. If they have to be called in a specific order, the attribute * "requires" can be set on the extension point entries. *

*

* This class is intended to be subclassed by clients. *

* @since 3.2 */ public abstract class CompilationParticipant { public final static int READY_FOR_BUILD = 1; public final static int NEEDS_FULL_BUILD = 2; /** * Notifies this participant that a build is about to start and provides it the opportunity to * create missing source folders for generated source files. Additional source folders * should be marked as optional so the project can be built when the folders do not exist. * Only sent to participants interested in the project. *

* Default is to return READY_FOR_BUILD. *

* @see #buildFinished(IJavaProject project) * @param project the project about to build * @return READY_FOR_BUILD or NEEDS_FULL_BUILD */ public int aboutToBuild(IJavaProject project) { return READY_FOR_BUILD; } /** * Notifies this participant that a build has finished for the project. * This will be sent, even if buildStarting() was not sent when no source files needed to be compiled * or the build failed. * Only sent to participants interested in the project. * @param project the project about to build * @since 3.4 */ public void buildFinished(IJavaProject project) { // do nothing by default } /** * Notifies this participant that a compile operation is about to start and provides it the opportunity to * generate source files based on the source files about to be compiled. * When isBatchBuild is true, then files contains all source files in the project. * Only sent to participants interested in the current build project. * * @param files is an array of BuildContext * @param isBatch identifies when the build is a batch build */ public void buildStarting(BuildContext[] files, boolean isBatch) { // do nothing by default } /** * Notifies this participant that a clean is about to start and provides it the opportunity to * delete generated source files. * Only sent to participants interested in the project. * @param project the project about to be cleaned */ public void cleanStarting(IJavaProject project) { // do nothing by default } /** * Returns whether this participant is active for a given project. *

* Default is to return false. *

* For efficiency, participants that are not interested in the * given project should return false for that project. *

* Note: In {@link org.eclipse.jdt.core.WorkingCopyOwner#newWorkingCopy(String, org.eclipse.jdt.core.IClasspathEntry[], org.eclipse.core.runtime.IProgressMonitor) * special cases}, the project may be closed and not exist. Participants typically return false when the * underlying project is closed. I.e. when the following check returns false: *
 * 	javaProject.getProject().isOpen();
 * 
* @param project the project to participate in * @return whether this participant is active for a given project */ public boolean isActive(IJavaProject project) { return false; } /** * Returns whether this participant is interested in Annotations. *

* Returning true enables the callback {@link #processAnnotations(BuildContext[])}, where this * participant can influence build results. *

*

* Default is to return false. *

* * @return whether this participant is interested in Annotations */ public boolean isAnnotationProcessor() { return false; } /** * Notifies this participant that a compile operation has found source files using Annotations. * Only sent to participants interested in the current build project that answer true to {@link #isAnnotationProcessor()}. * Each BuildContext was informed whether its source file currently hasAnnotations(). * * @param files is an array of BuildContext */ public void processAnnotations(BuildContext[] files) { // do nothing by default } /** * Returns whether this participant is interested in post processing of generated bytecode. *

* Returning true enables the callback {@link #postProcess(BuildContext,ByteArrayInputStream)}, where this * participant can influence produced class file bytes. *

*

* Default is to return false. *

* * @return whether this participant is interested in post processing * @since 3.34 */ public boolean isPostProcessor() { return false; } /** * Notifies this participant about a finished class compilation. This notification occurs right before the compiled * class is written out to disk. This allows to perform arbitrary byte code manipulation on the generated class. *

* Only sent to participants that answer true to {@link #isPostProcessor()}. *

*
    *
  • If additional dependencies to other classes are introduced by the modified class, these dependencies have to be * recorded by calling {@link BuildContext#recordDependencies(String[])}.
  • *
  • In case problems occur, they can be reported using {@link BuildContext#recordNewProblems(CategorizedProblem[])}. *
  • *
  • No other API's to record build state changes are supported during post-processing.
  • *
* Note: the received class data could have already been transformed by another compilation participant. If the * compilation participants have to be called in a specific order, the attribute "requires" can be used in the * participant contribution entry. * * @param file * context of the generated class * @param bytes * byte representation of the generated class * @return Optional containing byte array representing the modified class or empty Optional if no modification was * applied. Default implementation returns empty Optional. * @since 3.34 */ public Optional postProcess(BuildContext file, ByteArrayInputStream bytes) { return Optional.empty(); } /** * Notifies this participant that a reconcile operation is happening. The participant can act on this reconcile * operation by using the given context. Other participant can then see the result of this participation * on this context. *

* Note that a participant should not modify the buffer of the working copy that is being reconciled. *

* Default is to do nothing. *

* @param context the reconcile context to act on */ public void reconcile(ReconcileContext context) { // do nothing by default } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy