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);
181 throw new Error(MessageManager.getString("error.implementation_error_cannot_find_marshaller_for_param_set"));
183 if (filename == null)
185 JalviewFileChooser chooser = new JalviewFileChooser(
186 jalview.bin.Cache.getProperty("LAST_DIRECTORY"), new String[]
187 { "wsparams" }, new String[]
188 { "Web Service Parameter File" },
189 "Web Service Parameter File");
190 chooser.setFileView(new jalview.io.JalviewFileView());
191 chooser.setDialogTitle(MessageManager.getString("label.choose_filename_for_param_file"));
192 chooser.setToolTipText(MessageManager.getString("action.save"));
193 int value = chooser.showSaveDialog(Desktop.instance);
194 if (value == JalviewFileChooser.APPROVE_OPTION)
196 outfile = chooser.getSelectedFile();
198 .setProperty("LAST_DIRECTORY", outfile.getParent());
199 filename = outfile.getAbsolutePath();
200 if (!filename.endsWith(".wsparams"))
202 filename = filename.concat(".wsparams");
203 outfile = new File(filename);
209 String paramFiles = jalview.bin.Cache.getDefault("WS_PARAM_FILES",
211 if (paramFiles.indexOf(filename) == -1)
213 if (paramFiles.length() > 0)
215 paramFiles = paramFiles.concat("|");
217 paramFiles = paramFiles.concat(filename);
219 jalview.bin.Cache.setProperty("WS_PARAM_FILES", paramFiles);
221 jalview.schemabinding.version2.WebServiceParameterSet paramxml = new jalview.schemabinding.version2.WebServiceParameterSet();
223 paramxml.setName(parameterSet.getName());
224 paramxml.setDescription(parameterSet.getDescription());
225 paramxml.setServiceURL(parameterSet.getApplicableUrls().clone());
226 paramxml.setVersion("1.0");
229 paramxml.setParameters(parser
230 .generateServiceParameterFile(parameterSet));
231 PrintWriter out = new PrintWriter(new OutputStreamWriter(
232 new FileOutputStream(outfile), "UTF-8"));
233 paramxml.marshal(out);
235 parameterSet.setSourceFile(filename);
236 } catch (Exception e)
238 Cache.log.error("Couldn't write parameter file to " + outfile, e);
245 * JalviewFileChooser chooser = new JalviewFileChooser(jalview.bin.Cache
246 * .getProperty("LAST_DIRECTORY"), new String[] { "jc" }, new String[] {
247 * "Jalview User Colours" }, "Jalview User Colours"); chooser.setFileView(new
248 * jalview.io.JalviewFileView());
249 * chooser.setDialogTitle("Load colour scheme");
250 * chooser.setToolTipText("Load");
252 * int value = chooser.showOpenDialog(this);
254 * if (value == JalviewFileChooser.APPROVE_OPTION) { File choice =
255 * chooser.getSelectedFile(); jalview.bin.Cache.setProperty("LAST_DIRECTORY",
256 * choice.getParent()); String defaultColours = jalview.bin.Cache.getDefault(
257 * "USER_DEFINED_COLOURS", choice.getPath()); if
258 * (defaultColours.indexOf(choice.getPath()) == -1) { defaultColours =
259 * defaultColours.concat("|") .concat(choice.getPath()); } (non-Javadoc)
262 * jalview.ws.params.ParamManager#deleteParameterSet(jalview.ws.params.WsParamSetI
266 public void deleteParameterSet(WsParamSetI parameterSet)
268 String filename = parameterSet.getSourceFile();
269 if (filename == null || filename.trim().length() < 1)
273 String paramFiles = jalview.bin.Cache.getDefault("WS_PARAM_FILES", "");
274 if (paramFiles.indexOf(filename) > -1)
276 String nparamFiles = new String();
277 StringTokenizer st = new StringTokenizer(paramFiles, "|");
278 while (st.hasMoreElements())
280 String fl = st.nextToken();
281 if (!fl.equals(filename))
283 nparamFiles = nparamFiles.concat("|").concat(fl);
286 jalview.bin.Cache.setProperty("WS_PARAM_FILES", nparamFiles);
291 File pfile = new File(filename);
292 if (pfile.exists() && pfile.canWrite())
294 if (JOptionPane.showConfirmDialog(Desktop.instance,
295 "Delete the preset's file, too ?", "Delete User Preset ?",
296 JOptionPane.OK_CANCEL_OPTION) == JOptionPane.OK_OPTION)
301 } catch (Exception e)
304 .error("Exception when trying to delete webservice user preset: ",
310 public void registerParser(String hosturl, ParamDatastoreI paramdataStore)
312 paramparsers.put(hosturl, paramdataStore);