Package org.pentaho.platform.plugin.services.pluginmgr.servicemgr

Source Code of org.pentaho.platform.plugin.services.pluginmgr.servicemgr.AbstractServiceTypeManager

/*!
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software
* Foundation.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
* or from the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
*
* Copyright (c) 2002-2013 Pentaho Corporation..  All rights reserved.
*/

package org.pentaho.platform.plugin.services.pluginmgr.servicemgr;

import org.pentaho.platform.api.engine.IServiceConfig;
import org.pentaho.platform.api.engine.ServiceException;

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

public abstract class AbstractServiceTypeManager implements IServiceTypeManager {

  protected Collection<IServiceConfig> registeredServiceConfigs = new ArrayList<IServiceConfig>();
  protected Map<String, Class<?>> serviceClassMap = new HashMap<String, Class<?>>();
  protected Map<String, Object> serviceInstanceMap = new HashMap<String, Object>();

  public void registerService( final IServiceConfig wsConfig ) {
    serviceClassMap.put( wsConfig.getId(), wsConfig.getServiceClass() );
    registeredServiceConfigs.add( wsConfig );
  }

  public IServiceConfig getServiceConfig( String serviceId ) {
    for ( IServiceConfig config : registeredServiceConfigs ) {
      if ( config.getId().equals( serviceId ) ) {
        return config;
      }
    }
    return null;
  }

  public Object getServiceBean( String serviceId ) throws ServiceException {
    Object serviceInstance = serviceInstanceMap.get( serviceId );
    if ( serviceInstance == null ) {
      try {
        serviceInstance = serviceClassMap.get( serviceId ).newInstance();
        serviceInstanceMap.put( serviceId, serviceInstance );
      } catch ( InstantiationException e ) {
        throw new ServiceException( e );
      } catch ( IllegalAccessException e ) {
        throw new ServiceException( e );
      }
    }
    return serviceInstance;
  }
}
TOP

Related Classes of org.pentaho.platform.plugin.services.pluginmgr.servicemgr.AbstractServiceTypeManager

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.