Package org.apache.felix.sigil.eclipse.internal.repository.manager

Source Code of org.apache.felix.sigil.eclipse.internal.repository.manager.EclipseRepositoryFactory$EclipseRepositoryProviderWrapper

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you 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.felix.sigil.eclipse.internal.repository.manager;

import java.util.Properties;

import org.apache.felix.sigil.common.repository.IBundleRepository;
import org.apache.felix.sigil.common.repository.IRepositoryProvider;
import org.apache.felix.sigil.eclipse.SigilCore;
import org.apache.felix.sigil.eclipse.internal.model.repository.ExtensionUtils;
import org.apache.felix.sigil.eclipse.model.repository.IRepositoryType;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IExtension;
import org.eclipse.core.runtime.IExtensionPoint;
import org.eclipse.core.runtime.IExtensionRegistry;
import org.eclipse.core.runtime.Platform;

/**
* @author dave
*
*/
public class EclipseRepositoryFactory
{

    static class EclipseRepositoryProviderWrapper implements IRepositoryProvider {
        private final IRepositoryProvider delegate;
        private final IRepositoryType type;

        /**
         * @param provider
         * @param type
         */
        public EclipseRepositoryProviderWrapper(IRepositoryProvider provider, IRepositoryType type)
        {
            this.delegate = provider;
            this.type = type;
        }

        /* (non-Javadoc)
         * @see org.apache.felix.sigil.common.repository.IRepositoryProvider#createRepository(java.lang.String, java.util.Properties)
         */
        public IBundleRepository createRepository(String id, Properties properties)
        {
            return new EclipseBundleRepository(delegate, type, id, properties);
        }
       
        public IRepositoryType getType() {
            return type;
        }
    }
    /**
     * @param alias
     * @return
     */
    public static EclipseRepositoryProviderWrapper getProvider(String alias)
    throws CoreException
    {
        IExtensionRegistry registry = Platform.getExtensionRegistry();
        IExtensionPoint p = registry.getExtensionPoint(SigilCore.REPOSITORY_PROVIDER_EXTENSION_POINT_ID);

        for (IExtension e : p.getExtensions())
        {
            for (IConfigurationElement c : e.getConfigurationElements())
            {
                if (alias.equals(c.getAttribute("alias")))
                {
                    IRepositoryProvider provider = (IRepositoryProvider) c.createExecutableExtension("class");
                    IRepositoryType type = ExtensionUtils.toRepositoryType(e, c);
                    return new EclipseRepositoryProviderWrapper(provider, type);
                }
            }
        }

        return null;
    }
   
   
}
TOP

Related Classes of org.apache.felix.sigil.eclipse.internal.repository.manager.EclipseRepositoryFactory$EclipseRepositoryProviderWrapper

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.