Search in sources :

Example 6 with ScriptExecutionException

use of org.eclipse.smarthome.model.script.engine.ScriptExecutionException in project smarthome by eclipse.

the class RuleContextHelper method getContext.

/**
 * Retrieves the evaluation context (= set of variables) for a rule. The context is shared with all rules in the
 * same model (= rule file).
 *
 * @param rule the rule to get the context for
 * @return the evaluation context
 */
public static synchronized IEvaluationContext getContext(Rule rule, Injector injector) {
    Logger logger = LoggerFactory.getLogger(RuleContextHelper.class);
    RuleModel ruleModel = (RuleModel) rule.eContainer();
    // check if a context already exists on the resource
    for (Adapter adapter : ruleModel.eAdapters()) {
        if (adapter instanceof RuleContextAdapter) {
            return ((RuleContextAdapter) adapter).getContext();
        }
    }
    Provider<IEvaluationContext> contextProvider = injector.getProvider(IEvaluationContext.class);
    // no evaluation context found, so create a new one
    ScriptEngine scriptEngine = injector.getInstance(ScriptEngine.class);
    if (scriptEngine != null) {
        IEvaluationContext evaluationContext = contextProvider.get();
        for (VariableDeclaration var : ruleModel.getVariables()) {
            try {
                Object initialValue = var.getRight() == null ? null : scriptEngine.newScriptFromXExpression(var.getRight()).execute();
                evaluationContext.newValue(QualifiedName.create(var.getName()), initialValue);
            } catch (ScriptExecutionException e) {
                logger.warn("Variable '{}' on rule file '{}' cannot be initialized with value '{}': {}", new Object[] { var.getName(), ruleModel.eResource().getURI().path(), var.getRight().toString(), e.getMessage() });
            }
        }
        ruleModel.eAdapters().add(new RuleContextAdapter(evaluationContext));
        return evaluationContext;
    } else {
        logger.debug("Rule variables of rule {} cannot be evaluated as no scriptengine is available!", ruleModel.eResource().getURI().path());
        return contextProvider.get();
    }
}
Also used : ScriptExecutionException(org.eclipse.smarthome.model.script.engine.ScriptExecutionException) IEvaluationContext(org.eclipse.xtext.xbase.interpreter.IEvaluationContext) EContentAdapter(org.eclipse.emf.ecore.util.EContentAdapter) Adapter(org.eclipse.emf.common.notify.Adapter) VariableDeclaration(org.eclipse.smarthome.model.rule.rules.VariableDeclaration) Logger(org.slf4j.Logger) RuleModel(org.eclipse.smarthome.model.rule.rules.RuleModel) ScriptEngine(org.eclipse.smarthome.model.script.engine.ScriptEngine)

Example 7 with ScriptExecutionException

use of org.eclipse.smarthome.model.script.engine.ScriptExecutionException in project smarthome by eclipse.

the class ExecuteRuleJob method execute.

@Override
public void execute(JobExecutionContext context) throws JobExecutionException {
    String modelName = (String) context.getJobDetail().getJobDataMap().get(JOB_DATA_RULEMODEL);
    String ruleName = (String) context.getJobDetail().getJobDataMap().get(JOB_DATA_RULENAME);
    if (modelRepository != null && scriptEngine != null) {
        EObject model = modelRepository.getModel(modelName);
        if (model instanceof RuleModel) {
            RuleModel ruleModel = (RuleModel) model;
            Rule rule = getRule(ruleModel, ruleName);
            if (rule != null) {
                Script script = scriptEngine.newScriptFromXExpression(rule.getScript());
                logger.debug("Executing scheduled rule '{}'", rule.getName());
                try {
                    script.execute(RuleContextHelper.getContext(rule, injector));
                } catch (ScriptExecutionException e) {
                    logger.error("Error during the execution of rule '{}': {}", rule.getName(), e.getMessage());
                }
            } else {
                logger.debug("Scheduled rule '{}' does not exist", ruleName);
            }
        } else {
            logger.debug("Rule file '{}' does not exist", modelName);
        }
    }
}
Also used : Script(org.eclipse.smarthome.model.script.engine.Script) ScriptExecutionException(org.eclipse.smarthome.model.script.engine.ScriptExecutionException) EObject(org.eclipse.emf.ecore.EObject) Rule(org.eclipse.smarthome.model.rule.rules.Rule) RuleModel(org.eclipse.smarthome.model.rule.rules.RuleModel)

Aggregations

ScriptExecutionException (org.eclipse.smarthome.model.script.engine.ScriptExecutionException)7 Script (org.eclipse.smarthome.model.script.engine.Script)4 Resource (org.eclipse.emf.ecore.resource.Resource)2 Rule (org.eclipse.smarthome.model.rule.rules.Rule)2 RuleModel (org.eclipse.smarthome.model.rule.rules.RuleModel)2 ScriptEngine (org.eclipse.smarthome.model.script.engine.ScriptEngine)2 IResourceServiceProvider (org.eclipse.xtext.resource.IResourceServiceProvider)2 XtextResource (org.eclipse.xtext.resource.XtextResource)2 IEvaluationContext (org.eclipse.xtext.xbase.interpreter.IEvaluationContext)2 Adapter (org.eclipse.emf.common.notify.Adapter)1 EObject (org.eclipse.emf.ecore.EObject)1 EContentAdapter (org.eclipse.emf.ecore.util.EContentAdapter)1 ModelRepository (org.eclipse.smarthome.model.core.ModelRepository)1 VariableDeclaration (org.eclipse.smarthome.model.rule.rules.VariableDeclaration)1 ScriptParsingException (org.eclipse.smarthome.model.script.engine.ScriptParsingException)1 XExpression (org.eclipse.xtext.xbase.XExpression)1 IEvaluationResult (org.eclipse.xtext.xbase.interpreter.IEvaluationResult)1 IExpressionInterpreter (org.eclipse.xtext.xbase.interpreter.IExpressionInterpreter)1 Logger (org.slf4j.Logger)1