lombok.eclipse.handlers.HandleConditionAndLock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lombok-pg Show documentation
Show all versions of lombok-pg Show documentation
lombok-pg is a collection of extensions to Project Lombok
The newest version!
/*
* Copyright © 2010-2012 Philipp Eichhorn
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package lombok.eclipse.handlers;
import lombok.*;
import lombok.core.AnnotationValues;
import lombok.core.handlers.ConditionAndLockHandler;
import lombok.core.handlers.ConditionAndLockHandler.*;
import lombok.eclipse.DeferUntilPostDiet;
import lombok.eclipse.EclipseAnnotationHandler;
import lombok.eclipse.EclipseNode;
import lombok.eclipse.handlers.ast.EclipseMethod;
import lombok.eclipse.handlers.ast.EclipseType;
import org.eclipse.jdt.internal.compiler.ast.Annotation;
import org.mangosdk.spi.ProviderFor;
public class HandleConditionAndLock {
/**
* Handles the {@code lombok.ReadLock} annotation for eclipse.
*/
@ProviderFor(EclipseAnnotationHandler.class)
@DeferUntilPostDiet
public static class HandleReadLock extends EclipseAnnotationHandler {
@Override
public void preHandle(final AnnotationValues annotation, final Annotation ast, final EclipseNode annotationNode) {
ReadLock ann = annotation.getInstance();
prepareConditionAndLockHandler(annotationNode, ast) //
.withLockMethod("readLock") //
.preHandle(ann.value(), ReadLock.class);
}
@Override
public void handle(final AnnotationValues annotation, final Annotation ast, final EclipseNode annotationNode) {
ReadLock ann = annotation.getInstance();
prepareConditionAndLockHandler(annotationNode, ast) //
.withLockMethod("readLock") //
.handle(ann.value(), ReadLock.class, new EclipseParameterValidator(), new EclipseParameterSanitizer());
}
}
/**
* Handles the {@code lombok.WriteLock} annotation for eclipse.
*/
@ProviderFor(EclipseAnnotationHandler.class)
@DeferUntilPostDiet
public static class HandleWriteLock extends EclipseAnnotationHandler {
@Override
public void preHandle(final AnnotationValues annotation, final Annotation ast, final EclipseNode annotationNode) {
WriteLock ann = annotation.getInstance();
prepareConditionAndLockHandler(annotationNode, ast) //
.withLockMethod("writeLock") //
.preHandle(ann.value(), WriteLock.class);
}
@Override
public void handle(final AnnotationValues annotation, final Annotation ast, final EclipseNode annotationNode) {
WriteLock ann = annotation.getInstance();
prepareConditionAndLockHandler(annotationNode, ast) //
.withLockMethod("writeLock") //
.handle(ann.value(), WriteLock.class, new EclipseParameterValidator(), new EclipseParameterSanitizer());
}
}
/**
* Handles the {@code lombok.Signal} annotation for eclipse.
*/
@ProviderFor(EclipseAnnotationHandler.class)
@DeferUntilPostDiet
public static class HandleSignal extends EclipseAnnotationHandler {
@Override
public void preHandle(final AnnotationValues annotation, final Annotation ast, final EclipseNode annotationNode) {
Signal ann = annotation.getInstance();
prepareConditionAndLockHandler(annotationNode, ast) //
.withSignal(new SignalData(ann.value(), ann.pos())) //
.preHandle(ann.lockName(), Signal.class);
}
@Override
public void handle(final AnnotationValues annotation, final Annotation ast, final EclipseNode annotationNode) {
Signal ann = annotation.getInstance();
prepareConditionAndLockHandler(annotationNode, ast) //
.withSignal(new SignalData(ann.value(), ann.pos())) //
.handle(ann.lockName(), Signal.class, new EclipseParameterValidator(), new EclipseParameterSanitizer());
}
}
/**
* Handles the {@code lombok.Await} annotation for eclipse.
*/
@ProviderFor(EclipseAnnotationHandler.class)
@DeferUntilPostDiet
public static class HandleAwait extends EclipseAnnotationHandler {
@Override
public void preHandle(final AnnotationValues annotation, final Annotation ast, final EclipseNode annotationNode) {
Await ann = annotation.getInstance();
prepareConditionAndLockHandler(annotationNode, ast) //
.withAwait(new AwaitData(ann.conditionName(), ann.conditionMethod(), ann.pos())) //
.preHandle(ann.lockName(), Await.class);
}
@Override
public void handle(final AnnotationValues annotation, final Annotation ast, final EclipseNode annotationNode) {
Await ann = annotation.getInstance();
prepareConditionAndLockHandler(annotationNode, ast) //
.withAwait(new AwaitData(ann.conditionName(), ann.conditionMethod(), ann.pos())) //
.handle(ann.lockName(), Await.class, new EclipseParameterValidator(), new EclipseParameterSanitizer());
}
}
/**
* Handles the {@code lombok.AwaitBeforeAndSignalAfter} annotation for eclipse.
*/
@ProviderFor(EclipseAnnotationHandler.class)
@DeferUntilPostDiet
public static class HandleAwaitBeforeAndSignalAfter extends EclipseAnnotationHandler {
@Override
public void preHandle(final AnnotationValues annotation, final Annotation ast, final EclipseNode annotationNode) {
AwaitBeforeAndSignalAfter ann = annotation.getInstance();
prepareConditionAndLockHandler(annotationNode, ast) //
.withAwait(new AwaitData(ann.awaitConditionName(), ann.awaitConditionMethod(), Position.BEFORE)) //
.withSignal(new SignalData(ann.signalConditionName(), Position.AFTER)) //
.preHandle(ann.lockName(), AwaitBeforeAndSignalAfter.class);
}
@Override
public void handle(final AnnotationValues annotation, final Annotation ast, final EclipseNode annotationNode) {
AwaitBeforeAndSignalAfter ann = annotation.getInstance();
prepareConditionAndLockHandler(annotationNode, ast) //
.withAwait(new AwaitData(ann.awaitConditionName(), ann.awaitConditionMethod(), Position.BEFORE)) //
.withSignal(new SignalData(ann.signalConditionName(), Position.AFTER)) //
.handle(ann.lockName(), AwaitBeforeAndSignalAfter.class, new EclipseParameterValidator(), new EclipseParameterSanitizer());
}
}
private static ConditionAndLockHandler prepareConditionAndLockHandler(final EclipseNode node, final Annotation source) {
return new ConditionAndLockHandler(EclipseType.typeOf(node, source), EclipseMethod.methodOf(node, source), node);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy