esa.mo.mal.impl.MALContextFactoryImpl Maven / Gradle / Ivy
/* ----------------------------------------------------------------------------
* Copyright (C) 2013 European Space Agency
* European Space Operations Centre
* Darmstadt
* Germany
* ----------------------------------------------------------------------------
* System : CCSDS MO MAL Java Implementation
* ----------------------------------------------------------------------------
* Licensed under the European Space Agency Public License, Version 2.0
* You may not use this file except in compliance with the License.
*
* Except as expressly set forth in this License, the Software is provided to
* You on an "as is" basis and without warranties of any kind, including without
* limitation merchantability, fitness for a particular purpose, absence of
* defects or errors, accuracy or non-infringement of intellectual property rights.
*
* See the License for the specific language governing permissions and
* limitations under the License.
* ----------------------------------------------------------------------------
*/
package esa.mo.mal.impl;
import esa.mo.mal.impl.transport.TransportSingleton;
import esa.mo.mal.impl.util.StructureHelper;
import java.util.Map;
import java.util.logging.Logger;
import org.ccsds.moims.mo.mal.MALContext;
import org.ccsds.moims.mo.mal.MALContextFactory;
import org.ccsds.moims.mo.mal.MALException;
import org.ccsds.moims.mo.mal.accesscontrol.MALAccessControlFactory;
/**
* Implementation of the MALContextFactory abstract class.
*/
public class MALContextFactoryImpl extends MALContextFactory {
/**
* Logger
*/
public static final java.util.logging.Logger LOGGER = Logger.getLogger("org.ccsds.moims.mo.mal.impl");
/**
* The property that contains the file to load MAL properties from.
*/
public static final String MAL_CONFIG_FILE_PROPERTY = "org.ccsds.moims.mo.mal.properties";
/**
* The default property file location.
*/
public static final String MAL_CONFIG_FILE_DEFAULT = "org/ccsds/moims/mo/mal.properties";
private final MALAccessControlFactory securityFactory;
/**
* Constructor.
*
* @throws MALException On error.
*/
public MALContextFactoryImpl() throws MALException {
init();
securityFactory = MALAccessControlFactory.newFactory();
}
private void init() {
final String configFile = System.getProperty(MAL_CONFIG_FILE_PROPERTY, MAL_CONFIG_FILE_DEFAULT);
final java.util.Properties props = StructureHelper.loadProperties(configFile, MAL_CONFIG_FILE_PROPERTY);
final java.util.Properties sysProps = System.getProperties();
sysProps.putAll(props);
System.setProperties(sysProps);
TransportSingleton.init();
}
@Override
public MALContext createMALContext(final Map properties) throws MALException {
return new MALContextImpl(securityFactory, properties);
}
}