de.bund.bfr.knime.fsklab.nodes/src/de/bund/bfr/knime/fsklab/FskPlugin.java
/*
***************************************************************************************************
* Copyright (c) 2017 Federal Institute for Risk Assessment (BfR), Germany
*
* This program is free software: you can redistribute it and/or modify it under the terms of the
* GNU General Public License as published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program. If
* not, see <http://www.gnu.org/licenses/>.
*
* Contributors: Department Biological Safety - BfR
*************************************************************************************************
*/
package de.bund.bfr.knime.fsklab;
import java.util.ResourceBundle;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.emfjson.jackson.module.EMFModule;
import org.osgi.framework.BundleContext;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.core.JsonFactory;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.datatype.threetenbp.ThreeTenModule;
import de.bund.bfr.knime.fsklab.rakip.RakipModule;
import de.bund.bfr.knime.fsklab.service.FskService;
import metadata.EmfMetadataModule;
public class FskPlugin extends AbstractUIPlugin {
private static FskPlugin plugin;
/**
* Object mapper for 1.0.4 classes generated with Swagger at de.bund.bfr.metadata.swagger
*/
public ObjectMapper MAPPER104;
public ObjectMapper MAPPER104DEFAULT;
/**
* Jackson object mapper with {@link RakipModule}. Initialized with {@link #start(BundleContext)}
* and assigned null with {@link #stop(BundleContext)}.
*/
public ObjectMapper OBJECT_MAPPER;
public ObjectMapper OLD_OBJECT_MAPPER;
private Thread service;
public FskService fskService;
public FskPlugin() {
plugin = this;
}
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
// ObjectMapper defaults to use a JsonFactory that automatically closes
// the stream. When further entries are added to the archive the stream
// is closed and fails. The AUTO_CLOSE_TARGET needs to be disabled.
// ThreeTenModule is added for dates and null fields are skipped.
JsonFactory jsonFactory = new JsonFactory();
jsonFactory.configure(JsonGenerator.Feature.AUTO_CLOSE_TARGET, false);
jsonFactory.configure(JsonParser.Feature.AUTO_CLOSE_SOURCE, false);
MAPPER104 = new ObjectMapper(jsonFactory).registerModule(new ThreeTenModule())
.registerModule(new EMFModule()).registerModule(new EmfMetadataModule());
MAPPER104.setSerializationInclusion(Include.NON_NULL);
MAPPER104DEFAULT = new ObjectMapper(jsonFactory).registerModule(new ThreeTenModule())
.registerModule(new EMFModule()).registerModule(new EmfMetadataModule());
MAPPER104DEFAULT.setSerializationInclusion(Include.ALWAYS);
OBJECT_MAPPER = EMFModule.setupDefaultMapper();
OBJECT_MAPPER.registerModule(new ThreeTenModule());
OLD_OBJECT_MAPPER = new ObjectMapper().registerModule(new RakipModule());
fskService = FskService.instance();
service = new Thread(fskService);
service.setName("FSK-Service");
service.start();
}
@Override
public void stop(BundleContext context) throws Exception {
super.stop(context);
ResourceBundle.clearCache();
OBJECT_MAPPER = null;
plugin = null;
service.stop();
}
/** @return Singleton instance of the plugin. */
public static FskPlugin getDefault() {
return plugin;
}
}