All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.switchyard.component.common.knowledge.expression.ContextMap Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors.
 *
 * 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.switchyard.component.common.knowledge.expression;

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

import org.switchyard.Context;
import org.switchyard.Property;
import org.switchyard.Scope;

/**
 * A Context that is also a Map.
 *
 * @author David Ward <[email protected]> © 2012 Red Hat Inc.
 */
public class ContextMap implements Context, Map {

    private final Context _context;
    private final Scope _scope;

    /**
     * Wraps a context and scope for map operations.
     * @param context the context
     * @param scope the scope for map operations
     */
    public ContextMap(Context context, Scope scope) {
        _context = context;
        _scope = scope;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Property getProperty(String name) {
        return _context.getProperty(name);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Property getProperty(String name, Scope scope) {
        return _context.getProperty(name, scope);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public  T getPropertyValue(String name) {
        return _context.getPropertyValue(name);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Set getProperties() {
        return _context.getProperties();
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Set getProperties(Scope scope) {
        return _context.getProperties(scope);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void removeProperty(Property property) {
        _context.removeProperty(property);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void removeProperties() {
        _context.removeProperties();
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void removeProperties(Scope scope) {
        _context.removeProperties(scope);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Property setProperty(String name, Object val) {
        return _context.setProperty(name, val);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Property setProperty(String name, Object val, Scope scope) {
        return _context.setProperty(name, val, scope);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Context setProperties(Set properties) {
        _context.setProperties(properties);
        return this;
    }
    
    @Override
    public void mergeInto(Context context) {
        _context.mergeInto(context);
    }

    @Override
    public Set getProperties(String label) {
        return _context.getProperties(label);
    }

    @Override
    public void removeProperties(String label) {
        _context.removeProperties(label);
    }

    /**
     * {@inheritDoc}
     */   
    @Override
    public int size() {
        return getProperties(_scope).size();
    }

    /**
     * {@inheritDoc}
     */   
    @Override
    public boolean isEmpty() {
        return getProperties(_scope).isEmpty();
    }

    /**
     * {@inheritDoc}
     */   
    @Override
    public boolean containsKey(Object key) {
        return key != null ? getProperty(key.toString(), _scope) != null : false;
    }

    /**
     * {@inheritDoc}
     */   
    @Override
    public boolean containsValue(Object value) {
        if (value != null) {
            for (Property property : getProperties(_scope)) {
                if (value.equals(property.getValue())) {
                    return true;
                }
            }
        }
        return false;
    }

    /**
     * {@inheritDoc}
     */   
    @Override
    public Object get(Object key) {
        if (key != null) {
            Property property = getProperty(key.toString(), _scope);
            if (property != null) {
                return property.getValue();
            }
        }
        return null;
    }

    /**
     * {@inheritDoc}
     */   
    @Override
    public Object put(String key, Object value) {
        return setProperty(key, value, _scope);
    }

    /**
     * {@inheritDoc}
     */   
    @Override
    public Object remove(Object key) {
        if (key != null) {
            Property property = getProperty(key.toString(), _scope);
            if (property != null) {
                removeProperty(property);
                return property.getValue();
            }
        }
        return null;
    }

    /**
     * {@inheritDoc}
     */   
    @Override
    public void putAll(Map m) {
        for (Entry entry : m.entrySet()) {
            setProperty(entry.getKey(), entry.getValue(), _scope);
        }
    }

    /**
     * {@inheritDoc}
     */   
    @Override
    public void clear() {
        removeProperties(_scope);
    }

    /**
     * {@inheritDoc}
     */   
    @Override
    public Set keySet() {
        Set keySet = new HashSet();
        for (Property property : getProperties(_scope)) {
            keySet.add(property.getName());
        }
        return keySet;
    }

    /**
     * {@inheritDoc}
     */   
    @Override
    public Collection values() {
        Collection values = new ArrayList();
        for (Property property : getProperties(_scope)) {
            values.add(property.getValue());
        }
        return values;
    }

    /**
     * {@inheritDoc}
     */   
    @Override
    public Set> entrySet() {
        Map entries = new HashMap();
        for (Property property : getProperties(_scope)) {
            entries.put(property.getName(), property.getValue());
        }
        return entries.entrySet();
    }

}