org.grouplens.lenskit.config.LenskitConfigScript Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lenskit-groovy Show documentation
Show all versions of lenskit-groovy Show documentation
Groovy-based DSL for configuring LensKit recommenders.
/*
* LensKit, an open source recommender systems toolkit.
* Copyright 2010-2014 Regents of the University of Minnesota and contributors
* Work on LensKit has been funded by the National Science Foundation under
* grants IIS 05-34939, 08-08692, 08-12148, and 10-17697.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 51
* Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.grouplens.lenskit.config;
import com.google.common.base.Joiner;
import groovy.lang.Binding;
import groovy.lang.MissingMethodException;
import groovy.lang.MissingPropertyException;
import groovy.lang.Script;
import org.codehaus.groovy.runtime.InvokerHelper;
import org.grouplens.lenskit.core.LenskitConfiguration;
import org.grouplens.lenskit.core.RecommenderConfigurationException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Set;
/**
* Base class for LensKit configuration scripts. This class mixes in {@code LenskitConfigDSL}, so
* all methods on that class are directly available in configuraiton scripts.
*
* @since 1.2
* @author GroupLens Research
*/
public abstract class LenskitConfigScript extends Script {
protected final Logger logger = LoggerFactory.getLogger(LenskitConfigScript.class);
private LenskitConfigDSL delegate;
protected LenskitConfigScript() {
this(new Binding());
}
protected LenskitConfigScript(Binding binding) {
super(binding);
}
public LenskitConfiguration getConfig() {
return delegate.getConfig();
}
/**
* Get the delegate.
* @return The DSL delegate.
*/
LenskitConfigDSL getDelegate() {
if (delegate == null) {
throw new IllegalStateException("no delegate set");
}
return delegate;
}
/**
* Set the delegate.
* @param dsl The delegate.
*/
void setDelegate(LenskitConfigDSL dsl) {
delegate = dsl;
}
/**
* Groovy override to pass things off to the delegate.
* @param name The name of the method.
* @param args The method arguments.
* @return The return value of the method.
*/
public Object methodMissing(String name, Object args) {
try {
return InvokerHelper.invokeMethod(getDelegate(), name, args);
} catch (MissingMethodException mme) {
throw new MissingMethodException(name, getClass(), mme.getArguments());
}
}
/**
* Run this script against an existing configuration.
* @throws RecommenderConfigurationException if an error occurs.
*/
public void configure(LenskitConfiguration config) throws RecommenderConfigurationException {
LenskitConfigDSL old = getDelegate();
setDelegate(new LenskitConfigDSL(old.getConfigLoader(), config));
try {
run();
} catch (MissingPropertyException e) {
String name = e.getProperty();
Set packages = delegate.getConfigLoader().getDirectory().getPackages(name);
logger.error("Cannot resolve class or property " + name);
if (!packages.isEmpty()) {
logger.info("Did you intend to import it from {}?", Joiner.on(", ").join(packages));
}
throw new RecommenderConfigurationException("error configuring recommender", e);
} catch (Exception ex) {
throw new RecommenderConfigurationException("error configuring recommender", ex);
} finally {
setDelegate(old);
}
}
/**
* Run this script and produce a new configuration.
* @return The configuration.
* @throws RecommenderConfigurationException if an error occurs.
*/
public LenskitConfiguration configure() throws RecommenderConfigurationException {
try {
run();
} catch (MissingPropertyException e) {
String name = e.getProperty();
Set packages = delegate.getConfigLoader().getDirectory().getPackages(name);
logger.error("Cannot resolve class or property " + name);
if (!packages.isEmpty()) {
logger.info("Did you intend to import it from {}?", Joiner.on(", ").join(packages));
}
throw new RecommenderConfigurationException("error configuring recommender", e);
} catch (Exception ex) {
throw new RecommenderConfigurationException("error configuring recommender", ex);
}
return delegate.getConfig();
}
}