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.util.MessageManager;
26 import jalview.ws.params.ParamDatastoreI;
27 import jalview.ws.params.ParamManager;
28 import jalview.ws.params.WsParamSetI;
31 import java.io.FileOutputStream;
32 import java.io.IOException;
33 import java.io.InputStreamReader;
34 import java.io.OutputStreamWriter;
35 import java.io.PrintWriter;
36 import java.util.ArrayList;
37 import java.util.Hashtable;
38 import java.util.List;
39 import java.util.StringTokenizer;
41 import javax.swing.JOptionPane;
44 * store and retrieve web service parameter sets.
49 public class WsParamSetManager implements ParamManager
51 Hashtable<String, ParamDatastoreI> paramparsers = new Hashtable<String, ParamDatastoreI>();
54 public WsParamSetI[] getParameterSet(String name, String serviceUrl,
55 boolean modifiable, boolean unmodifiable)
57 String files = Cache.getProperty("WS_PARAM_FILES");
62 StringTokenizer st = new StringTokenizer(files, "|");
64 ArrayList<WsParamSetI> params = new ArrayList<WsParamSetI>();
65 while (st.hasMoreTokens())
67 pfile = st.nextToken();
70 WsParamSetI[] pset = parseParamFile(pfile);
71 for (WsParamSetI p : pset)
74 if (serviceUrl != null)
76 for (String url : p.getApplicableUrls())
78 if (url.equals(serviceUrl))
88 add &= (modifiable == p.isModifiable() || unmodifiable == !p
90 add &= name == null || p.getName().equals(name);
99 } catch (IOException e)
102 .info("Failed to parse parameter file "
104 + " (Check that all JALVIEW_WSPARAMFILES entries are valid!)",
108 return params.toArray(new WsParamSetI[0]);
111 private WsParamSetI[] parseParamFile(String filename) throws IOException
113 List<WsParamSetI> psets = new ArrayList<WsParamSetI>();
114 InputStreamReader is = new InputStreamReader(
115 new java.io.FileInputStream(new File(filename)), "UTF-8");
117 jalview.schemabinding.version2.WebServiceParameterSet wspset = new jalview.schemabinding.version2.WebServiceParameterSet();
119 org.exolab.castor.xml.Unmarshaller unmar = new org.exolab.castor.xml.Unmarshaller(
121 unmar.setWhitespacePreserve(true);
124 wspset = (jalview.schemabinding.version2.WebServiceParameterSet) unmar
126 } catch (Exception ex)
128 throw new IOException(ex);
130 if (wspset != null && wspset.getParameters().length() > 0)
132 for (String url : wspset.getServiceURL())
134 ParamDatastoreI parser = paramparsers.get(url);
137 WsParamSetI pset = parser.parseServiceParameterFile(
138 wspset.getName(), wspset.getDescription(),
139 wspset.getServiceURL(), wspset.getParameters());
142 pset.setSourceFile(filename);
150 return psets.toArray(new WsParamSetI[0]);
154 public void storeParameterSet(WsParamSetI parameterSet)
156 String filename = parameterSet.getSourceFile();
160 if (filename != null && !((outfile = new File(filename)).canWrite()))
162 Cache.log.warn("Can't write to " + filename
163 + " - Prompting for new file to write to.");
166 } catch (Exception e)
171 ParamDatastoreI parser = null;
172 for (String urls : parameterSet.getApplicableUrls())
176 parser = paramparsers.get(urls);
183 .getString("error.implementation_error_cannot_find_marshaller_for_param_set"));
185 if (filename == null)
187 JalviewFileChooser chooser = new JalviewFileChooser(
188 jalview.bin.Cache.getProperty("LAST_DIRECTORY"), new String[]
190 new String[] { "Web Service Parameter File" },
191 "Web Service Parameter File");
192 chooser.setFileView(new jalview.io.JalviewFileView());
193 chooser.setDialogTitle(MessageManager
194 .getString("label.choose_filename_for_param_file"));
195 chooser.setToolTipText(MessageManager.getString("action.save"));
196 int value = chooser.showSaveDialog(Desktop.instance);
197 if (value == JalviewFileChooser.APPROVE_OPTION)
199 outfile = chooser.getSelectedFile();
201 .setProperty("LAST_DIRECTORY", outfile.getParent());
202 filename = outfile.getAbsolutePath();
203 if (!filename.endsWith(".wsparams"))
205 filename = filename.concat(".wsparams");
206 outfile = new File(filename);
212 String paramFiles = jalview.bin.Cache.getDefault("WS_PARAM_FILES",
214 if (paramFiles.indexOf(filename) == -1)
216 if (paramFiles.length() > 0)
218 paramFiles = paramFiles.concat("|");
220 paramFiles = paramFiles.concat(filename);
222 jalview.bin.Cache.setProperty("WS_PARAM_FILES", paramFiles);
224 jalview.schemabinding.version2.WebServiceParameterSet paramxml = new jalview.schemabinding.version2.WebServiceParameterSet();
226 paramxml.setName(parameterSet.getName());
227 paramxml.setDescription(parameterSet.getDescription());
228 paramxml.setServiceURL(parameterSet.getApplicableUrls().clone());
229 paramxml.setVersion("1.0");
232 paramxml.setParameters(parser
233 .generateServiceParameterFile(parameterSet));
234 PrintWriter out = new PrintWriter(new OutputStreamWriter(
235 new FileOutputStream(outfile), "UTF-8"));
236 paramxml.marshal(out);
238 parameterSet.setSourceFile(filename);
239 } catch (Exception e)
241 Cache.log.error("Couldn't write parameter file to " + outfile, e);
248 * JalviewFileChooser chooser = new JalviewFileChooser(jalview.bin.Cache
249 * .getProperty("LAST_DIRECTORY"), new String[] { "jc" }, new String[] {
250 * "Jalview User Colours" }, "Jalview User Colours"); chooser.setFileView(new
251 * jalview.io.JalviewFileView());
252 * chooser.setDialogTitle("Load colour scheme");
253 * chooser.setToolTipText("Load");
255 * int value = chooser.showOpenDialog(this);
257 * if (value == JalviewFileChooser.APPROVE_OPTION) { File choice =
258 * chooser.getSelectedFile(); jalview.bin.Cache.setProperty("LAST_DIRECTORY",
259 * choice.getParent()); String defaultColours = jalview.bin.Cache.getDefault(
260 * "USER_DEFINED_COLOURS", choice.getPath()); if
261 * (defaultColours.indexOf(choice.getPath()) == -1) { defaultColours =
262 * defaultColours.concat("|") .concat(choice.getPath()); } (non-Javadoc)
265 * jalview.ws.params.ParamManager#deleteParameterSet(jalview.ws.params.WsParamSetI
269 public void deleteParameterSet(WsParamSetI parameterSet)
271 String filename = parameterSet.getSourceFile();
272 if (filename == null || filename.trim().length() < 1)
276 String paramFiles = jalview.bin.Cache.getDefault("WS_PARAM_FILES", "");
277 if (paramFiles.indexOf(filename) > -1)
279 String nparamFiles = new String();
280 StringTokenizer st = new StringTokenizer(paramFiles, "|");
281 while (st.hasMoreElements())
283 String fl = st.nextToken();
284 if (!fl.equals(filename))
286 nparamFiles = nparamFiles.concat("|").concat(fl);
289 jalview.bin.Cache.setProperty("WS_PARAM_FILES", nparamFiles);
294 File pfile = new File(filename);
295 if (pfile.exists() && pfile.canWrite())
297 if (JOptionPane.showConfirmDialog(Desktop.instance,
298 "Delete the preset's file, too ?", "Delete User Preset ?",
299 JOptionPane.OK_CANCEL_OPTION) == JOptionPane.OK_OPTION)
304 } catch (Exception e)
307 .error("Exception when trying to delete webservice user preset: ",
313 public void registerParser(String hosturl, ParamDatastoreI paramdataStore)
315 paramparsers.put(hosturl, paramdataStore);