org.gradle.internal.metaobject.ConfigureDelegate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.internal.metaobject;
import groovy.lang.Closure;
import groovy.lang.GroovyObjectSupport;
import groovy.lang.MissingMethodException;
import org.gradle.api.internal.DynamicObjectUtil;
import javax.annotation.concurrent.NotThreadSafe;
@NotThreadSafe
public class ConfigureDelegate extends GroovyObjectSupport {
protected final DynamicObject _owner;
protected final DynamicObject _delegate;
private boolean _configuring;
public ConfigureDelegate(Closure configureClosure, Object delegate) {
_owner = DynamicObjectUtil.asDynamicObject(configureClosure.getOwner());
_delegate = DynamicObjectUtil.asDynamicObject(delegate);
}
@Override
public String toString() {
return _delegate.toString();
}
protected DynamicInvokeResult _configure(String name, Object[] params) {
return DynamicInvokeResult.notFound();
}
protected DynamicInvokeResult _configure(String name) {
return DynamicInvokeResult.notFound();
}
@Override
public Object invokeMethod(String name, Object paramsObj) {
Object[] params = (Object[])paramsObj;
boolean isAlreadyConfiguring = _configuring;
_configuring = true;
try {
DynamicInvokeResult result = _delegate.tryInvokeMethod(name, params);
if (result.isFound()) {
return result.getValue();
}
MissingMethodException failure = null;
if (!isAlreadyConfiguring) {
// Try to configure element
try {
result = _configure(name, params);
} catch (MissingMethodException e) {
// Workaround for backwards compatibility. Previously, this case would unintentionally cause the method to be invoked on the owner
// continue below
failure = e;
}
if (result.isFound()) {
return result.getValue();
}
}
// try the owner
result = _owner.tryInvokeMethod(name, params);
if (result.isFound()) {
return result.getValue();
}
if (failure != null) {
throw failure;
}
throw _delegate.methodMissingException(name, params);
} finally {
_configuring = isAlreadyConfiguring;
}
}
@Override
public void setProperty(String property, Object newValue) {
DynamicInvokeResult result = _delegate.trySetProperty(property, newValue);
if (result.isFound()) {
return;
}
result = _owner.trySetProperty(property, newValue);
if (result.isFound()) {
return;
}
throw _delegate.setMissingProperty(property);
}
public Object getProperty(String name) {
boolean isAlreadyConfiguring = _configuring;
_configuring = true;
try {
DynamicInvokeResult result = _delegate.tryGetProperty(name);
if (result.isFound()) {
return result.getValue();
}
result = _owner.tryGetProperty(name);
if (result.isFound()) {
return result.getValue();
}
if (!isAlreadyConfiguring) {
// Try to configure an element
result = _configure(name);
if (result.isFound()) {
return result.getValue();
}
}
throw _delegate.getMissingProperty(name);
} finally {
_configuring = isAlreadyConfiguring;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy