grails.util.DomainBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grails-core Show documentation
Show all versions of grails-core Show documentation
Grails Web Application Framework
/* Copyright 2004-2005 Graeme Rocher
*
* 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 grails.util;
import groovy.util.ObjectGraphBuilder;
import java.lang.reflect.Field;
import java.util.Collection;
import org.codehaus.groovy.runtime.InvokerHelper;
/**
* Allows the construction of object graphs of domain classes. Example:
*
*
* def builder = new DomainBuilder()
def company = builder.company(name: 'ACME') {
employee(name: 'Duke', employeeId: 1) {
address(street: '123 Groovy Rd')
}
employee(name: 'George', employeeId: 2)
}
*
* @author Scott Vlaminck
*/
public class DomainBuilder extends ObjectGraphBuilder {
public DomainBuilder() {
setChildPropertySetter(new DefaultGrailsChildPropertySetter());
setClassLoader(Thread.currentThread().getContextClassLoader());
}
public static class DefaultGrailsChildPropertySetter implements ChildPropertySetter {
public void setChild(Object parent, Object child, String parentName, String propertyName) {
if (isCollection(parent, child, parentName, propertyName)) {
String propName = propertyName.substring(0,1).toUpperCase() + propertyName.substring(1);
String methodName = "addTo" + propName;
InvokerHelper.invokeMethod(parent, methodName, child);
}
else {
InvokerHelper.setProperty(parent, propertyName, child);
}
}
@SuppressWarnings("unused")
private boolean isCollection(Object parent, Object child, String parentName, String propertyName) {
try {
Field field = parent.getClass().getDeclaredField(propertyName);
return Collection.class.isAssignableFrom(field.getType());
}
catch (NoSuchFieldException ignored) { /* ignored */}
return false;
}
}
}