jdplus.tramoseats.desktop.plugin.tramo.ui.actions.ImportTramoSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdplus-tramoseats-desktop-plugin Show documentation
Show all versions of jdplus-tramoseats-desktop-plugin Show documentation
${project.parent.artifactId} - ${project.artifactId}
The newest version!
/*
* Copyright 2016 National Bank of Belgium
*
* Licensed under the EUPL, Version 1.1 or – as soon they will be approved
* by the European Commission - subsequent versions of the EUPL (the "Licence");
* You may not use this work except in compliance with the Licence.
* You may obtain a copy of the Licence at:
*
* http://ec.europa.eu/idabc/eupl
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the Licence is distributed on an "AS IS" basis,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the Licence for the specific language governing permissions and
* limitations under the Licence.
*/
package jdplus.tramoseats.desktop.plugin.tramo.ui.actions;
import jdplus.toolkit.base.api.information.InformationSet;
import jdplus.toolkit.base.xml.information.XmlInformationSet;
import jdplus.toolkit.desktop.plugin.Config;
import jdplus.toolkit.desktop.plugin.interchange.Importable;
import jdplus.toolkit.desktop.plugin.interchange.InterchangeManager;
import jdplus.toolkit.desktop.plugin.nodes.SingleNodeAction;
import jdplus.toolkit.desktop.plugin.workspace.WorkspaceFactory;
import jdplus.toolkit.desktop.plugin.workspace.WorkspaceItem;
import jdplus.tramoseats.base.api.tramo.TramoSpec;
import jdplus.tramoseats.base.information.TramoSpecMapping;
import jdplus.tramoseats.desktop.plugin.tramo.documents.TramoSpecManager;
import nbbrd.io.text.Parser;
import nbbrd.io.xml.bind.Jaxb;
import lombok.NonNull;
import org.openide.awt.ActionID;
import org.openide.awt.ActionReference;
import org.openide.awt.ActionReferences;
import org.openide.awt.ActionRegistration;
import org.openide.nodes.Node;
import org.openide.util.NbBundle.Messages;
import org.openide.util.actions.Presenter;
import javax.swing.*;
import java.util.Collections;
import java.util.List;
import java.util.Optional;
/**
* Action on Tramo specification workspace node allowing the import
*
* @author Mats Maggi
*/
@ActionID(category = "Edit", id = "demetra.desktop.tramo.ui.actions.ImportTramoSpec")
@ActionRegistration(displayName = "#CTL_ImportTramoSpec", lazy = false)
@ActionReferences({
@ActionReference(path = TramoSpecManager.PATH, position = 1000)
})
@Messages("CTL_ImportTramoSpec=Import from")
public class ImportTramoSpec extends SingleNodeAction implements Presenter.Popup {
public ImportTramoSpec() {
super(Node.class);
}
@Override
protected void performAction(Node activatedNode) {
}
@Override
public JMenuItem getPopupPresenter() {
JMenuItem result = InterchangeManager.get().newImportMenu(getImportables());
result.setText(Bundle.CTL_ImportTramoSpec());
return result;
}
@Override
protected boolean enable(Node activatedNode) {
return true;
}
@Override
public String getName() {
return null;
}
private List getImportables() {
return Collections.singletonList(new Importable() {
@Override
public String getDomain() {
return TramoSpec.class.getName();
}
@Override
public void importConfig(Config config) throws IllegalArgumentException {
TramoSpec spec = fromConfig(config);
if (spec != null) {
WorkspaceItem ndoc = WorkspaceItem.newItem(TramoSpecManager.ID, config.getName(), spec);
WorkspaceFactory.getInstance().getActiveWorkspace().add(ndoc);
}
}
});
}
private static TramoSpec fromConfig(@NonNull Config config) throws IllegalArgumentException {
if (!TramoSpec.class.getName().equals(config.getDomain())) {
throw new IllegalArgumentException("Invalid config");
}
return Optional.ofNullable(config.getParameter("specification"))
.map(INFORMATIONPARSER::parse)
.map(TramoSpecMapping.SERIALIZER_V3::read)
.orElse(null);
}
private static final Parser INFORMATIONPARSER = Jaxb.Parser.of(XmlInformationSet.class).asParser().andThen(XmlInformationSet::create);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy