![JAR search and dependency download from the Maven repository](/logo.png)
org.bridje.el.impl.IocEnviromentImpl Maven / Gradle / Ivy
/*
* Copyright 2015 Bridje Framework.
*
* 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.bridje.el.impl;
import java.util.HashMap;
import java.util.Map;
import java.util.Stack;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.el.ExpressionFactory;
import javax.el.ValueExpression;
import org.bridje.el.ElEnvironment;
import org.bridje.ioc.Ioc;
import org.bridje.ioc.IocContext;
class IocEnviromentImpl implements ElEnvironment
{
private static final Logger LOG = Logger.getLogger(IocEnviromentImpl.class.getName());
private final IocElContext context;
private final ExpressionFactory factory;
private final Map> varsStack;
public IocEnviromentImpl(IocContext context)
{
this.factory = Ioc.context().find(ExpressionFactoryImpl.class);
this.context = new IocElContext(context, factory);
this.varsStack = new HashMap<>();
}
@Override
public T get(String expression, Class resultCls)
{
ValueExpression valueExp = factory.createValueExpression(context, expression, resultCls);
return (T)valueExp.getValue(context);
}
@Override
public void set(String expression, T value)
{
Class> cls = Object.class;
if(value != null)
{
cls = value.getClass();
}
ValueExpression valueExp = factory.createValueExpression(context, expression, cls);
try
{
valueExp.setValue(context, value);
}
catch (javax.el.PropertyNotFoundException e)
{
LOG.log(Level.WARNING, e.getMessage());
}
}
@Override
public void pushVar(String name, T value)
{
Stack stack = varsStack.get(name);
if(stack == null)
{
stack = new Stack<>();
varsStack.put(name, stack);
}
ValueExpression exp = null;
if(value != null) exp = factory.createValueExpression(value, value.getClass());
stack.push(exp);
context.setVariable(name, exp);
}
@Override
public void popVar(String name)
{
Stack stack = varsStack.get(name);
ValueExpression exp = null;
if(stack != null)
{
if( !stack.empty() ) stack.pop();
if( !stack.empty() ) exp = stack.peek();
if( stack.empty() ) varsStack.remove(name);
}
context.setVariable(name, exp);
}
@Override
public T getVar(String name, Class resultCls)
{
if(!varExists(name)) return null;
return get("${" + name + "}", resultCls);
}
@Override
public String getVarAsString(String name)
{
if(!varExists(name)) return "";
return get("${" + name + "}", String.class);
}
@Override
public boolean varExists(String name)
{
return varsStack.containsKey(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy