blob: 9fef2e761a6ed7dd387de6f7baf5e53fa6c1271b [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2008 The University of Manchester
*
* Modifications to the initial code base are copyright of their
* respective authors, or their employers as appropriate.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
******************************************************************************/
package net.sf.taverna.t2.workbench.retry;
import java.awt.BorderLayout;
import java.awt.Frame;
import javax.swing.Action;
import javax.swing.JComponent;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import com.fasterxml.jackson.databind.JsonNode;
import net.sf.taverna.t2.lang.ui.ReadOnlyTextArea;
import net.sf.taverna.t2.workbench.edits.EditManager;
import net.sf.taverna.t2.workbench.selection.SelectionManager;
import net.sf.taverna.t2.workbench.ui.views.contextualviews.ContextualView;
import uk.org.taverna.scufl2.api.common.Scufl2Tools;
import uk.org.taverna.scufl2.api.configurations.Configuration;
import uk.org.taverna.scufl2.api.core.Processor;
/**
* View of a processor, including it's iteration stack, activities, etc.
*
* @author Alan R Williams
*
*/
@SuppressWarnings("serial")
public class RetryContextualView extends ContextualView {
private final Processor processor;
private final EditManager editManager;
private final SelectionManager selectionManager;
private final Scufl2Tools scufl2Tools = new Scufl2Tools();
private JPanel panel;
public RetryContextualView(Processor processor, EditManager editManager, SelectionManager selectionManager) {
super();
this.processor = processor;
this.editManager = editManager;
this.selectionManager = selectionManager;
initialise();
initView();
}
/*
* @Override public Action getConfigureAction(Frame owner) { return new
* ConfigureAction(owner); }
*/
@Override
public void refreshView() {
initialise();
}
private void initialise() {
if (panel == null) {
panel = createPanel();
} else {
panel.removeAll();
}
JTextArea textArea = new ReadOnlyTextArea();
textArea.setEditable(false);
String text = "";
int maxRetries = RetryConfigurationPanel.DEFAULT_RETRIES;
int initialDelay = RetryConfigurationPanel.DEFAULT_INITIAL_DELAY;
int maxDelay = RetryConfigurationPanel.DEFAULT_MAX_DELAY;
double backoffFactor = RetryConfigurationPanel.DEFAULT_BACKOFF;
for (Configuration configuration : scufl2Tools.configurationsFor(processor, selectionManager.getSelectedProfile())) {
JsonNode processorConfig = configuration.getJson();
if (processorConfig.has("retry")) {
JsonNode retryConfig = processorConfig.get("retry");
if (retryConfig.has("maxRetries")) {
maxRetries = retryConfig.get("maxRetries").asInt();
}
if (retryConfig.has("initialDelay")) {
initialDelay = retryConfig.get("initialDelay").asInt();
}
if (retryConfig.has("maxDelay")) {
maxDelay = retryConfig.get("maxDelay").asInt();
}
if (retryConfig.has("backoffFactor")) {
backoffFactor = retryConfig.get("backoffFactor").asDouble();;
}
}
}
if (maxRetries < 1) {
text += "The service is not re-tried";
} else if (maxRetries == 1) {
text += "The service is re-tried once";
text += " after " + initialDelay + "ms";
} else {
text += "The service is re-tried " + maxRetries + " times. ";
if (backoffFactor == 1.0) {
text += "Each time after a delay of " + initialDelay + "ms.";
} else {
text += "The first delay is " + initialDelay + "ms";
int noMaxDelay = (int) (initialDelay * Math.pow(backoffFactor, maxRetries - 1));
if (noMaxDelay < maxDelay) {
maxDelay = noMaxDelay;
}
text += " with a maximum delay of " + maxDelay + "ms.";
text += " Each delay is increased by a factor of " + backoffFactor;
}
}
textArea.setText(text);
textArea.setBackground(panel.getBackground());
panel.add(textArea, BorderLayout.CENTER);
revalidate();
}
@Override
public JComponent getMainFrame() {
return panel;
}
@Override
public String getViewTitle() {
return "Retries";
}
protected JPanel createPanel() {
JPanel result = new JPanel();
result.setLayout(new BorderLayout());
result.setOpaque(false);
return result;
}
@Override
public int getPreferredPosition() {
return 400;
}
@Override
public Action getConfigureAction(Frame owner) {
return new RetryConfigureAction(owner, this, processor, editManager, selectionManager);
}
}