2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import jalview.jbgui.GRestInputParamEditDialog;
24 import jalview.ws.params.InvalidArgumentException;
25 import jalview.ws.params.OptionI;
26 import jalview.ws.params.ParameterI;
27 import jalview.ws.rest.InputType;
28 import jalview.ws.rest.RestServiceDescription;
30 import java.util.ArrayList;
31 import java.util.Hashtable;
33 import javax.swing.JOptionPane;
34 import javax.swing.JPanel;
35 import javax.swing.event.ListSelectionEvent;
37 import net.miginfocom.swing.MigLayout;
39 public class RestInputParamEditDialog extends GRestInputParamEditDialog
40 implements OptsParametersContainerI
42 Hashtable<String, Class> typeclass = new Hashtable<String, Class>();
44 Hashtable<String, ArrayList<JPanel>> typeopts = new Hashtable<String, ArrayList<JPanel>>();
46 Hashtable<String, OptsAndParamsPage> opanps = new Hashtable<String, OptsAndParamsPage>();
48 private InputType getTypeFor(String name)
52 return (InputType) (typeclass.get(name).getConstructor()
57 .println("Unexpected exception when instantiating rest input type.");
65 JalviewDialog frame = new JalviewDialog()
69 protected void raiseClosed()
75 protected void okPressed()
77 reply = JvOptionPane.OK_OPTION;
81 protected void cancelPressed()
83 reply = JvOptionPane.CANCEL_OPTION;
88 InputType old, current;
90 public RestInputParamEditDialog(
91 RestServiceEditorPane restServiceEditorPane,
92 RestServiceDescription currentservice, InputType toedit)
94 initFor(restServiceEditorPane, currentservice, toedit);
96 // TODO: warn user if they are about to overwrite an existing parameter
97 // because they have used the same name when editing a different parameter.
98 // TODO: make any press of the return key cause 'OK' to be pressed
101 private void initFor(RestServiceEditorPane restServiceEditorPane,
102 RestServiceDescription currentservice, InputType toedit)
104 okcancel.add(frame.cancel);
105 okcancel.add(frame.ok);
106 frame.initDialogFrame(dpane, true, true, "Edit parameter for service "
107 + currentservice.getName(), 600, 800);
110 reply = JvOptionPane.CANCEL_OPTION;
117 updated = updated && reply == JvOptionPane.OK_OPTION;
121 public RestInputParamEditDialog(
122 RestServiceEditorPane restServiceEditorPane,
123 RestServiceDescription currentservice, String string)
125 initFor(restServiceEditorPane, currentservice, null);
127 frame.waitForInput();
130 private void setStateFor(InputType current)
132 tok.setText(current.token);
133 OptsAndParamsPage opanp = opanps.get(current.getURLtokenPrefix());
134 for (OptionI ops : current.getOptions())
136 if (ops instanceof ParameterI)
138 opanp.setParameter((ParameterI) ops);
142 if (ops.getValue() != null && ops.getValue().length() > 0)
144 opanp.selectOption(ops, ops.getValue());
148 typeList.setSelectedValue(current.getURLtokenPrefix(), true);
149 type_SelectionChangedActionPerformed(null);
152 private void updateCurrentType()
154 if (typeList.getSelectedValue() != null)
156 InputType newType = getTypeFor((String) typeList.getSelectedValue());
159 newType.token = tok.getText().trim();
162 newType.configureFromArgumentI(opanps.get(
163 newType.getURLtokenPrefix()).getCurrentSettings());
166 } catch (InvalidArgumentException ex)
169 .println("IMPLEMENTATION ERROR: Invalid argument for type : "
170 + typeList.getSelectedValue() + "\n");
171 ex.printStackTrace();
178 private void initTypeLists()
180 ArrayList<String> types = new ArrayList<String>();
181 // populate type list
182 for (Class type : RestServiceDescription.getInputTypes())
185 InputType jtype = null;
188 JPanel inopts = new JPanel(new MigLayout());
189 ArrayList<JPanel> opts = new ArrayList<JPanel>(), prms = new ArrayList<JPanel>();
190 jtype = (InputType) (type.getConstructor().newInstance());
191 typeclass.put(jtype.getURLtokenPrefix(), type);
192 // and populate parameters from this type
193 OptsAndParamsPage opanp = new OptsAndParamsPage(this, true);
194 opanps.put(jtype.getURLtokenPrefix(), opanp);
195 for (OptionI opt : jtype.getOptions())
198 if (opt instanceof ParameterI)
200 prms.add(opanp.addParameter((ParameterI) opt));
204 opts.add(opanp.addOption(opt));
207 // then tag the params at the end of the options.
208 for (JPanel pnl : prms)
212 typeopts.put(jtype.getURLtokenPrefix(), opts);
213 types.add(jtype.getURLtokenPrefix());
214 } catch (Throwable x)
217 .println("Unexpected exception when instantiating rest input type.");
221 typeList.setListData(types.toArray());
226 protected void type_SelectionChangedActionPerformed(ListSelectionEvent e)
229 String typen = (String) typeList.getSelectedValue();
230 if (typeopts.get(typen) != null)
232 for (JPanel opt : typeopts.get(typen))
235 options.add(opt, "wrap");
237 options.invalidate();
238 optionsPanel.setVisible(true);
242 optionsPanel.setVisible(false);
248 boolean updated = false;
250 public boolean wasUpdated()
256 public void refreshParamLayout()
258 options.invalidate();
263 protected void tokChanged_actionPerformed()
265 if (tok.getText().trim().length() > 0)
269 current.token = tok.getText().trim();
276 public void argSetModified(Object modifiedElement, boolean b)
278 updated = updated | b;