Package org.apache.hivemind.service.impl

Source Code of org.apache.hivemind.service.impl.ObjectTranslator

//  Copyright 2004 The Apache Software Foundation
//
// 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.apache.hivemind.service.impl;

import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import org.apache.commons.logging.Log;
import org.apache.hivemind.ErrorHandler;
import org.apache.hivemind.HiveMind;
import org.apache.hivemind.Location;
import org.apache.hivemind.internal.Module;
import org.apache.hivemind.schema.Translator;
import org.apache.hivemind.service.ObjectProvider;

/**
* Implementation of the indirect translator. This translator allows the contributor,
* not the schema, to define where object values come from, and is fully extensible.
* Perhaps I'll have an inspiration and find a better name than "indirect".
*
* @author Howard Lewis Ship
*/
public class ObjectTranslator implements Translator
{
    private ErrorHandler _errorHandler;
    private Log _log;
    private List _contributions;

    /**
     * Keyed on prefix, value is an {@link org.apache.hivemind.service.ObjectProvider}.
     */
    private Map _providers = new HashMap();

    public void initializeService()
    {
        Map locations = new HashMap();
        Iterator i = _contributions.iterator();
        while (i.hasNext())
        {
            ObjectProviderContribution c = (ObjectProviderContribution) i.next();

            String prefix = c.getPrefix();

            Location oldLocation = (Location) locations.get(prefix);

            if (oldLocation != null)
            {
                _errorHandler.error(
                    _log,
                    ServiceMessages.duplicateProviderPrefix(prefix, oldLocation),
                    c.getLocation(),
                    null);
                continue;
            }

            locations.put(prefix, c.getLocation());
            _providers.put(prefix, c.getProvider());
        }
    }

    public Object translate(
        Module contributingModule,
        Class propertyType,
        String inputValue,
        Location location)
    {
        if (HiveMind.isBlank(inputValue))
            return null;

        int colonx = inputValue.indexOf(':');

        if (colonx < 1)
        {
            _errorHandler.error(
                _log,
                ServiceMessages.invalidProviderSelector(inputValue),
                null,
                null);

            return null;
        }

        String prefix = inputValue.substring(0, colonx);

        ObjectProvider provider = (ObjectProvider) _providers.get(prefix);

        if (provider == null)
        {
            _errorHandler.error(
                _log,
                ServiceMessages.unknownProviderPrefix(prefix),
                location,
                null);

            return null;
        }

        String locator = inputValue.substring(colonx + 1);

        return provider.provideObject(contributingModule, propertyType, locator, location);

    }

    public void setContributions(List list)
    {
        _contributions = list;
    }

    public void setErrorHandler(ErrorHandler handler)
    {
        _errorHandler = handler;
    }

    public void setLog(Log log)
    {
        _log = log;
    }

}
TOP

Related Classes of org.apache.hivemind.service.impl.ObjectTranslator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.