/* * Copyright (c) 2010-2013, 2016 Eike Stepper (Berlin, Germany) and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Eike Stepper - initial API and implementation */ package org.eclipse.emf.cdo.internal.net4j; import org.eclipse.net4j.Net4jUtil; import org.eclipse.net4j.connector.IConnector; import org.eclipse.net4j.util.StringUtil; import org.eclipse.net4j.util.container.IElementProcessor; import org.eclipse.net4j.util.container.IManagedContainer; /** * @author Eike Stepper */ public class Net4jConnectorInjector implements IElementProcessor { private static final String SCHEME_SEPARATOR = "://"; //$NON-NLS-1$ public Net4jConnectorInjector() { } public Object process(IManagedContainer container, String productGroup, String factoryType, String description, Object element) { if (element instanceof CDONet4jSessionImpl) { CDONet4jSessionImpl session = (CDONet4jSessionImpl)element; if (session.getConnector() == null) { IConnector connector = getConnector(container, description); session.setConnector(connector); } } return element; } protected IConnector getConnector(IManagedContainer container, String description) { int pos = description.indexOf(SCHEME_SEPARATOR); if (pos == -1) { throw new IllegalArgumentException("Malformed URI, could not find scheme separator :// in " + description); } String factoryType = description.substring(0, pos); if (StringUtil.isEmpty(factoryType)) { throw new IllegalArgumentException("Factory type not defined in " + description); } String connectorDescription = description.substring(pos + SCHEME_SEPARATOR.length()); if (StringUtil.isEmpty(connectorDescription)) { throw new IllegalArgumentException("Connector description not defined in " + description); } pos = connectorDescription.indexOf('?'); if (pos != -1) { connectorDescription = connectorDescription.substring(0, pos); } return Net4jUtil.getConnector(container, factoryType, connectorDescription); } }