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.bin.Cache;
24 import jalview.io.JalviewFileChooser;
25 import jalview.io.JalviewFileView;
26 import jalview.util.MessageManager;
27 import jalview.ws.params.ParamDatastoreI;
28 import jalview.ws.params.ParamManager;
29 import jalview.ws.params.WsParamSetI;
32 import java.io.FileOutputStream;
33 import java.io.IOException;
34 import java.io.InputStreamReader;
35 import java.io.OutputStreamWriter;
36 import java.io.PrintWriter;
37 import java.util.ArrayList;
38 import java.util.Hashtable;
39 import java.util.List;
40 import java.util.StringTokenizer;
43 * store and retrieve web service parameter sets.
48 public class WsParamSetManager implements ParamManager
50 Hashtable<String, ParamDatastoreI> paramparsers = new Hashtable<String, ParamDatastoreI>();
53 public WsParamSetI[] getParameterSet(String name, String serviceUrl,
54 boolean modifiable, boolean unmodifiable)
56 String files = Cache.getProperty("WS_PARAM_FILES");
61 StringTokenizer st = new StringTokenizer(files, "|");
63 ArrayList<WsParamSetI> params = new ArrayList<WsParamSetI>();
64 while (st.hasMoreTokens())
66 pfile = st.nextToken();
69 WsParamSetI[] pset = parseParamFile(pfile);
70 for (WsParamSetI p : pset)
73 if (serviceUrl != null)
75 for (String url : p.getApplicableUrls())
77 if (url.equals(serviceUrl))
87 add &= (modifiable == p.isModifiable() || unmodifiable == !p
89 add &= name == null || p.getName().equals(name);
98 } catch (IOException e)
101 .info("Failed to parse parameter file "
103 + " (Check that all JALVIEW_WSPARAMFILES entries are valid!)",
107 return params.toArray(new WsParamSetI[0]);
110 private WsParamSetI[] parseParamFile(String filename) throws IOException
112 List<WsParamSetI> psets = new ArrayList<WsParamSetI>();
113 InputStreamReader is = new InputStreamReader(
114 new java.io.FileInputStream(new File(filename)), "UTF-8");
116 jalview.schemabinding.version2.WebServiceParameterSet wspset = new jalview.schemabinding.version2.WebServiceParameterSet();
118 org.exolab.castor.xml.Unmarshaller unmar = new org.exolab.castor.xml.Unmarshaller(
120 unmar.setWhitespacePreserve(true);
123 wspset = (jalview.schemabinding.version2.WebServiceParameterSet) unmar
125 } catch (Exception ex)
127 throw new IOException(ex);
129 if (wspset != null && wspset.getParameters().length() > 0)
131 for (String url : wspset.getServiceURL())
133 ParamDatastoreI parser = paramparsers.get(url);
136 WsParamSetI pset = parser.parseServiceParameterFile(
137 wspset.getName(), wspset.getDescription(),
138 wspset.getServiceURL(), wspset.getParameters());
141 pset.setSourceFile(filename);
149 return psets.toArray(new WsParamSetI[0]);
153 public void storeParameterSet(WsParamSetI parameterSet)
155 String filename = parameterSet.getSourceFile();
159 if (filename != null && !((outfile = new File(filename)).canWrite()))
161 Cache.log.warn("Can't write to " + filename
162 + " - Prompting for new file to write to.");
165 } catch (Exception e)
170 ParamDatastoreI parser = null;
171 for (String urls : parameterSet.getApplicableUrls())
175 parser = paramparsers.get(urls);
182 .getString("error.implementation_error_cannot_find_marshaller_for_param_set"));
184 if (filename == null)
186 JalviewFileChooser chooser = new JalviewFileChooser("wsparams",
187 "Web Service Parameter File");
188 chooser.setFileView(new JalviewFileView());
189 chooser.setDialogTitle(MessageManager
190 .getString("label.choose_filename_for_param_file"));
191 chooser.setToolTipText(MessageManager.getString("action.save"));
192 int value = chooser.showSaveDialog(Desktop.instance);
193 if (value == JalviewFileChooser.APPROVE_OPTION)
195 outfile = chooser.getSelectedFile();
197 .setProperty("LAST_DIRECTORY", outfile.getParent());
198 filename = outfile.getAbsolutePath();
199 if (!filename.endsWith(".wsparams"))
201 filename = filename.concat(".wsparams");
202 outfile = new File(filename);
208 String paramFiles = jalview.bin.Cache.getDefault("WS_PARAM_FILES",
210 if (paramFiles.indexOf(filename) == -1)
212 if (paramFiles.length() > 0)
214 paramFiles = paramFiles.concat("|");
216 paramFiles = paramFiles.concat(filename);
218 jalview.bin.Cache.setProperty("WS_PARAM_FILES", paramFiles);
220 jalview.schemabinding.version2.WebServiceParameterSet paramxml = new jalview.schemabinding.version2.WebServiceParameterSet();
222 paramxml.setName(parameterSet.getName());
223 paramxml.setDescription(parameterSet.getDescription());
224 paramxml.setServiceURL(parameterSet.getApplicableUrls().clone());
225 paramxml.setVersion("1.0");
228 paramxml.setParameters(parser
229 .generateServiceParameterFile(parameterSet));
230 PrintWriter out = new PrintWriter(new OutputStreamWriter(
231 new FileOutputStream(outfile), "UTF-8"));
232 paramxml.marshal(out);
234 parameterSet.setSourceFile(filename);
235 } catch (Exception e)
237 Cache.log.error("Couldn't write parameter file to " + outfile, e);
244 * JalviewFileChooser chooser = new JalviewFileChooser(jalview.bin.Cache
245 * .getProperty("LAST_DIRECTORY"), new String[] { "jc" }, new String[] {
246 * "Jalview User Colours" }, "Jalview User Colours"); chooser.setFileView(new
247 * jalview.io.JalviewFileView());
248 * chooser.setDialogTitle("Load colour scheme");
249 * chooser.setToolTipText("Load");
251 * int value = chooser.showOpenDialog(this);
253 * if (value == JalviewFileChooser.APPROVE_OPTION) { File choice =
254 * chooser.getSelectedFile(); jalview.bin.Cache.setProperty("LAST_DIRECTORY",
255 * choice.getParent()); String defaultColours = jalview.bin.Cache.getDefault(
256 * "USER_DEFINED_COLOURS", choice.getPath()); if
257 * (defaultColours.indexOf(choice.getPath()) == -1) { defaultColours =
258 * defaultColours.concat("|") .concat(choice.getPath()); } (non-Javadoc)
261 * jalview.ws.params.ParamManager#deleteParameterSet(jalview.ws.params.WsParamSetI
265 public void deleteParameterSet(WsParamSetI parameterSet)
267 String filename = parameterSet.getSourceFile();
268 if (filename == null || filename.trim().length() < 1)
272 String paramFiles = jalview.bin.Cache.getDefault("WS_PARAM_FILES", "");
273 if (paramFiles.indexOf(filename) > -1)
275 String nparamFiles = new String();
276 StringTokenizer st = new StringTokenizer(paramFiles, "|");
277 while (st.hasMoreElements())
279 String fl = st.nextToken();
280 if (!fl.equals(filename))
282 nparamFiles = nparamFiles.concat("|").concat(fl);
285 jalview.bin.Cache.setProperty("WS_PARAM_FILES", nparamFiles);
290 File pfile = new File(filename);
291 if (pfile.exists() && pfile.canWrite())
293 if (JvOptionPane.showConfirmDialog(Desktop.instance,
294 "Delete the preset's file, too ?", "Delete User Preset ?",
295 JvOptionPane.OK_CANCEL_OPTION) == JvOptionPane.OK_OPTION)
300 } catch (Exception e)
303 .error("Exception when trying to delete webservice user preset: ",
309 public void registerParser(String hosturl, ParamDatastoreI paramdataStore)
311 paramparsers.put(hosturl, paramdataStore);