/* * Copyright 2012 by A-SIT, Secure Information Technology Center Austria * * 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://joinup.ec.europa.eu/software/page/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 at.asit.pdfover.gui.workflow.states; //Imports import java.io.File; import org.eclipse.swt.SWT; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import at.asit.pdfover.gui.MainWindow.Buttons; import at.asit.pdfover.gui.MainWindowBehavior; import at.asit.pdfover.gui.composites.BKUSelectionComposite; import at.asit.pdfover.gui.workflow.StateMachine; import at.asit.pdfover.gui.workflow.Status; import at.asit.pdfover.gui.workflow.config.ConfigProvider; import at.asit.pdfover.signator.BKUs; /** * Decides which BKU to use (preconfigured or let user choose) */ public class BKUSelectionState extends State { /** * @param stateMachine */ public BKUSelectionState(StateMachine stateMachine) { super(stateMachine); } /** * SLF4J Logger instance **/ @SuppressWarnings("unused") private static final Logger log = LoggerFactory.getLogger(BKUSelectionState.class); private BKUSelectionComposite selectionComposite = null; private BKUSelectionComposite getSelectionComposite() { if (this.selectionComposite == null) { this.selectionComposite = getStateMachine().getGUIProvider().createComposite(BKUSelectionComposite.class, SWT.RESIZE, this); } if (getStateMachine().getConfigProvider().getKeyStoreEnabled()) { File ks = new File(getStateMachine().getConfigProvider().getKeyStoreFile()); this.selectionComposite.setKeystoreEnabled(ks.exists()); } else this.selectionComposite.setKeystoreEnabled(false); return this.selectionComposite; } @Override public void run() { Status status = getStateMachine().getStatus(); if (!(status.getPreviousState() instanceof BKUSelectionState) && !(status.getPreviousState() instanceof PositioningState)) { status.setBKU(BKUs.NONE); } else if((status.getPreviousState() instanceof PositioningState)) { ConfigProvider config = getStateMachine().getConfigProvider(); status.setBKU(config.getDefaultBKU()); } if(status.getBKU() == BKUs.NONE) { BKUSelectionComposite selection = this .getSelectionComposite(); getStateMachine().getGUIProvider().display(selection); selection.layout(); status.setBKU(selection.getSelected()); if(status.getBKU() == BKUs.NONE) { return; } } this.setNextState(new PrepareSigningState(getStateMachine())); } /* (non-Javadoc) * @see at.asit.pdfover.gui.workflow.states.State#cleanUp() */ @Override public void cleanUp() { if (this.selectionComposite != null) this.selectionComposite.dispose(); } /* (non-Javadoc) * @see at.asit.pdfover.gui.workflow.states.State#setMainWindowBehavior() */ @Override public void updateMainWindowBehavior() { MainWindowBehavior behavior = getStateMachine().getStatus().getBehavior(); behavior.reset(); behavior.setEnabled(Buttons.CONFIG, true); behavior.setEnabled(Buttons.OPEN, true); behavior.setEnabled(Buttons.POSITION, true); behavior.setActive(Buttons.OPEN, true); behavior.setActive(Buttons.POSITION, true); behavior.setActive(Buttons.SIGN, true); } @Override public String toString() { return this.getClass().getName(); } }