2 * Jalview - A Sequence Alignment Editor and Viewer (Development Version 2.4.1)
3 * Copyright (C) 2009 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 import org.apache.log4j.*;
25 import org.biojava.dasobert.dasregistry.Das1Source;
28 * Stores and retrieves Jalview Application Properties Lists and fields within
29 * list entries are separated by '|' symbols unless otherwise stated (|) clauses
30 * are alternative values for a tag. <br>
32 * Current properties include:
35 * logs.Axis.Level - one of the stringified Levels for log4j controlling the
36 * logging level for axis (used for web services) <br>
38 * <li>logs.Castor.Level - one of the stringified Levels for log4j controlling
39 * the logging level for castor (used for serialization) <br>
41 * <li>logs.Jalview.Level - Cache.log stringified level. <br>
43 * <li>DISCOVERY_START - Boolean - controls if discovery services are queried on
45 * <li>DISCOVERY_URLS - comma separated list of Discovery Service endpoints.</li>
46 * <li>SCREEN_WIDTH</li>
47 * <li>SCREEN_HEIGHT</li>
48 * <li>SCREEN_Y=285</li>
49 * <li>SCREEN_X=371</li>
50 * <li>SHOW_FULLSCREEN boolean</li>
51 * <li>FONT_NAME java font name for alignment text display</li>
52 * <li>FONT_SIZE size of displayed alignment text</li>
53 * <li>FONT_STYLE style of font displayed (sequence labels are always italic)</li>
54 * <li>GAP_SYMBOL character to treat as gap symbol (usually -,.,' ')</li>
55 * <li>LAST_DIRECTORY last directory for browsing alignment</li>
56 * <li>USER_DEFINED_COLOURS list of user defined colour scheme files</li>
57 * <li>SHOW_FULL_ID show id with '/start-end' numbers appended</li>
58 * <li>SHOW_IDENTITY show percentage identity annotation</li>
59 * <li>SHOW_QUALITY show alignment quality annotation</li>
60 * <li>SHOW_ANNOTATIONS show alignment annotation rows</li>
61 * <li>SHOW_CONSERVATION show alignment conservation annotation</li>
62 * <li>CENTRE_COLUMN_LABELS centre the labels at each column in a displayed
64 * <li>DEFAULT_COLOUR default colour scheme to apply for a new alignment</li>
65 * <li>DEFAULT_FILE_FORMAT file format used to save</li>
66 * <li>STARTUP_FILE file loaded on startup (may be a fully qualified url)</li>
67 * <li>SHOW_STARTUP_FILE flag to control loading of startup file</li>
68 * <li>VERSION the version of the jalview build</li>
69 * <li>BUILD_DATE date of this build</li>
70 * <li>LATEST_VERSION the latest jalview version advertised on the
71 * www.jalview.org</li>
72 * <li>PIR_MODELLER boolean indicating if PIR files are written with MODELLER
74 * <li>(FASTA,MSF,PILEUP,CLUSTAL,BLC,PIR,PFAM)_JVSUFFIX boolean for adding jv
76 * <li>RECENT_URL list of recently retrieved URLs</li>
77 * <li>RECENT_FILE list of recently opened files</li>
78 * <li>USE_PROXY flag for whether a http proxy is to be used</li>
79 * <li>PROXY_SERVER the proxy</li>
81 * <li>NOQUESTIONNAIRES true to prevent jalview from checking the questionnaire
83 * <li>QUESTIONNAIRE last questionnaire:responder id string from questionnaire
85 * <li>USAGESTATS (false - user prompted) Enable google analytics tracker for collecting usage
87 * <li>DAS_LOCAL_SOURCE list of local das sources</li>
88 * <li>SHOW_OVERVIEW boolean for overview window display</li>
89 * <li>ANTI_ALIAS boolean for smooth fonts</li>
90 * <li>RIGHT_ALIGN_IDS boolean</li>
91 * <li>AUTO_CALC_CONSENSUS boolean for automatic recalculation of consensus</li>
92 * <li>PAD_GAPS boolean</li>
93 * <li>ID_ITALICS boolean</li>
94 * <li>SHOW_JV_SUFFIX</li>
95 * <li>WRAP_ALIGNMENT</li>
96 * <li>EPS_RENDERING (Prompt each time|Lineart|Text) default for EPS rendering
98 * <li>SORT_ALIGNMENT (No sort|Id|Pairwise Identity)</li>
99 * <li>SEQUENCE_LINKS list of name|URL pairs for opening a url with
101 * <li>GROUP_LINKS list of name|URL[|<separator>] tuples - see jalview.utils.GroupURLLink for more info
103 * <li>DAS_REGISTRY_URL the registry to query</li>
104 * <li>DEFAULT_BROWSER for unix</li>
105 * <li>DAS_ACTIVE_SOURCE list of active sources</li>
106 * <li>SHOW_MEMUSAGE boolean show memory usage and warning indicator on desktop
108 * <li>VERSION_CHECK (true) check for the latest release version from www.jalview.org</li>
109 * <li>SHOW_NPFEATS_TOOLTIP (true) show non-positional features in the Sequence
111 * <li>SHOW_DBREFS_TOOLTIP (true) show Database Cross References in the Sequence
113 * <li>SHOW_UNCONSERVED (false) only render unconserved residues - conserved
114 * displayed as '.'</li>
115 * <li>SORT_BY_TREE (false) sort the current alignment view according to the
116 * order of a newly displayed tree</li>
117 * <li>DBFETCH_USEPICR (false) use PICR to recover valid DB references from sequence ID strings before attempting retrieval from any datasource</li>
118 * <li>SHOW_GROUP_CONSENSUS (false) Show consensus annotation for groups in the alignment.</li>
119 * <li>SHOW_GROUP_CONSERVATION (false) Show conservation annotation for groups in the alignment.</li>
120 * <li>SHOW_CONSENSUS_HISTOGRAM (false) Show consensus annotation row's histogram.</li>
121 * <li>SHOW_CONSENSUS_LOGO (false) Show consensus annotation row's sequence logo.</li>
130 * @version $Revision$
135 * property giving log4j level for CASTOR loggers
137 public static final String CASTORLOGLEVEL = "logs.Castor.level";
140 * property giving log4j level for AXIS loggers
142 public static final String AXISLOGLEVEL = "logs.Axis.level";
145 * property giving log4j level for Jalview Log
147 public static final String JALVIEWLOGLEVEL = "logs.Jalview.level";
149 public static final String DAS_LOCAL_SOURCE = "DAS_LOCAL_SOURCE";
151 public static final String DAS_REGISTRY_URL = "DAS_REGISTRY_URL";
153 public static final String DAS_ACTIVE_SOURCE = "DAS_ACTIVE_SOURCE";
156 * Initialises the Jalview Application Log
158 public static Logger log;
160 /** Jalview Properties */
161 public static Properties applicationProperties = new Properties();
163 /** Default file is ~/.jalview_properties */
164 static String propertiesFile;
166 public static void initLogger()
170 // TODO: redirect stdout and stderr here in order to grab the output of the log
172 ConsoleAppender ap = new ConsoleAppender(new SimpleLayout(),
174 ap.setName("JalviewLogger");
175 org.apache.log4j.Logger.getRootLogger().addAppender(ap); // catch all for
177 Logger laxis = Logger.getLogger("org.apache.axis");
178 Logger lcastor = Logger.getLogger("org.exolab.castor");
179 jalview.bin.Cache.log = Logger.getLogger("jalview.bin.Jalview");
181 laxis.setLevel(Level.toLevel(Cache.getDefault("logs.Axis.Level",
182 Level.INFO.toString())));
183 lcastor.setLevel(Level.toLevel(Cache.getDefault("logs.Castor.Level",
184 Level.INFO.toString())));
185 lcastor = Logger.getLogger("org.exolab.castor.xml");
186 lcastor.setLevel(Level.toLevel(Cache.getDefault("logs.Castor.Level",
187 Level.INFO.toString())));
188 // lcastor = Logger.getLogger("org.exolab.castor.xml.Marshaller");
189 // lcastor.setLevel(Level.toLevel(Cache.getDefault("logs.Castor.Level",
190 // Level.INFO.toString())));
191 jalview.bin.Cache.log.setLevel(Level.toLevel(Cache.getDefault(
192 "logs.Jalview.level", Level.INFO.toString())));
193 // laxis.addAppender(ap);
194 // lcastor.addAppender(ap);
195 // jalview.bin.Cache.log.addAppender(ap);
196 // Tell the user that debug is enabled
197 jalview.bin.Cache.log.debug("Jalview Debugging Output Follows.");
198 } catch (Exception ex)
200 System.err.println("Problems initializing the log4j system\n");
201 ex.printStackTrace(System.err);
205 /** Called when Jalview is started */
206 public static void loadProperties(String propsFile)
208 propertiesFile = propsFile;
209 if (propsFile == null)
211 propertiesFile = System.getProperty("user.home") + File.separatorChar
212 + ".jalview_properties";
217 FileInputStream fis = new FileInputStream(propertiesFile);
218 applicationProperties.load(fis);
219 applicationProperties.remove("LATEST_VERSION");
220 applicationProperties.remove("VERSION");
222 } catch (Exception ex)
224 System.out.println("Error reading properties file: " + ex);
227 if (getDefault("USE_PROXY", false))
229 System.out.println("Using proxyServer: "
230 + getDefault("PROXY_SERVER", null) + " proxyPort: "
231 + getDefault("PROXY_PORT", null));
233 .setProperty("http.proxyHost", getDefault("PROXY_SERVER",
235 System.setProperty("http.proxyPort", getDefault("PROXY_PORT", null));
238 // FIND THE VERSION NUMBER AND BUILD DATE FROM jalview.jar
239 // MUST FOLLOW READING OF LOCAL PROPERTIES FILE AS THE
240 // VERSION MAY HAVE CHANGED SINCE LAST USING JALVIEW
243 String buildDetails = "jar:".concat(Cache.class.getProtectionDomain()
244 .getCodeSource().getLocation().toString().concat(
245 "!/.build_properties"));
247 java.net.URL localJarFileURL = new java.net.URL(buildDetails);
249 InputStream in = localJarFileURL.openStream();
250 applicationProperties.load(in);
252 } catch (Exception ex)
254 System.out.println("Error reading build details: " + ex);
255 applicationProperties.remove("VERSION");
258 String jnlpVersion = System.getProperty("jalview.version");
259 String codeVersion = getProperty("VERSION");
261 if (codeVersion == null)
263 // THIS SHOULD ONLY BE THE CASE WHEN TESTING!!
264 codeVersion = "Test";
265 jnlpVersion = "Test";
268 System.out.println("Jalview Version: " + codeVersion);
270 // jnlpVersion will be null if we're using InstallAnywhere
271 // Dont do this check if running in headless mode
272 if (jnlpVersion == null
273 && getDefault("VERSION_CHECK",true)
274 && (System.getProperty("java.awt.headless") == null || System
275 .getProperty("java.awt.headless").equals("false")))
278 class VersionChecker extends Thread
282 String orgtimeout = System
283 .getProperty("sun.net.client.defaultConnectTimeout");
284 if (orgtimeout == null)
287 System.out.println("# INFO: Setting default net timeout to "
288 + orgtimeout + " seconds.");
290 String jnlpVersion = null;
293 System.setProperty("sun.net.client.defaultConnectTimeout",
295 java.net.URL url = new java.net.URL(
296 "http://www.jalview.org/webstart/jalview.jnlp");
297 BufferedReader in = new BufferedReader(new InputStreamReader(
300 while ((line = in.readLine()) != null)
302 if (line.indexOf("jalview.version") == -1)
307 line = line.substring(line.indexOf("value=") + 7);
308 line = line.substring(0, line.lastIndexOf("\""));
312 } catch (Exception ex)
315 .println("Non-fatal exceptions when checking version at www.jalview.org :");
316 System.out.println(ex);
317 jnlpVersion = getProperty("VERSION");
319 System.setProperty("sun.net.client.defaultConnectTimeout",
322 setProperty("LATEST_VERSION", jnlpVersion);
326 VersionChecker vc = new VersionChecker();
331 if (jnlpVersion != null)
333 setProperty("LATEST_VERSION", jnlpVersion);
337 applicationProperties.remove("LATEST_VERSION");
341 setProperty("VERSION", codeVersion);
343 // LOAD USERDEFINED COLOURS
344 jalview.gui.UserDefinedColours
345 .initUserColourSchemes(getProperty("USER_DEFINED_COLOURS"));
346 jalview.io.PIRFile.useModellerOutput = Cache.getDefault("PIR_MODELLER",
351 * Gets Jalview application property of given key. Returns null if key not
357 * @return Property value
359 public static String getProperty(String key)
361 return applicationProperties.getProperty(key);
365 * These methods are used when checking if the saved preference is different
366 * to the default setting
369 public static boolean getDefault(String property, boolean def)
371 String string = getProperty(property);
374 def = Boolean.valueOf(string).booleanValue();
381 * These methods are used when checking if the saved preference is different
382 * to the default setting
384 public static String getDefault(String property, String def)
386 String string = getProperty(property);
396 * Stores property in the file "HOME_DIR/.jalview_properties"
401 * String value of property
403 * @return String value of property
405 public static String setProperty(String key, String obj)
409 FileOutputStream out = new FileOutputStream(propertiesFile);
410 applicationProperties.setProperty(key, obj);
411 applicationProperties.store(out, "---JalviewX Properties File---");
413 } catch (Exception ex)
415 System.out.println("Error setting property: " + key + " " + obj
421 * remove the specified property from the jalview properties file
424 public static void removeProperty(String string)
426 applicationProperties.remove(string);
430 * save the properties to the jalview properties path
432 public static void saveProperties()
436 FileOutputStream out = new FileOutputStream(propertiesFile);
437 applicationProperties.store(out, "---JalviewX Properties File---");
439 } catch (Exception ex)
441 System.out.println("Error saving properties: " + ex);
446 * internal vamsas class discovery state
448 private static int vamsasJarsArePresent = -1;
451 * Searches for vamsas client classes on class path.
453 * @return true if vamsas client is present on classpath
455 public static boolean vamsasJarsPresent()
457 if (vamsasJarsArePresent == -1)
461 if (jalview.jbgui.GDesktop.class.getClassLoader().loadClass(
462 "uk.ac.vamsas.client.VorbaId") != null)
464 jalview.bin.Cache.log
465 .debug("Found Vamsas Classes (uk.ac..vamsas.client.VorbaId can be loaded)");
466 vamsasJarsArePresent = 1;
467 Logger lvclient = Logger.getLogger("uk.ac.vamsas");
468 lvclient.setLevel(Level.toLevel(Cache.getDefault(
469 "logs.Vamsas.Level", Level.INFO.toString())));
471 lvclient.addAppender(log.getAppender("JalviewLogger"));
472 // Tell the user that debug is enabled
473 lvclient.debug("Jalview Vamsas Client Debugging Output Follows.");
475 } catch (Exception e)
477 vamsasJarsArePresent = 0;
478 jalview.bin.Cache.log.debug("Vamsas Classes are not present");
481 return (vamsasJarsArePresent > 0);
485 * internal vamsas class discovery state
487 private static int groovyJarsArePresent = -1;
490 * Searches for vamsas client classes on class path.
492 * @return true if vamsas client is present on classpath
494 public static boolean groovyJarsPresent()
496 if (groovyJarsArePresent == -1)
500 if (Cache.class.getClassLoader().loadClass(
501 "groovy.lang.GroovyObject") != null)
503 jalview.bin.Cache.log
504 .debug("Found Groovy (groovy.lang.GroovyObject can be loaded)");
505 groovyJarsArePresent = 1;
506 Logger lgclient = Logger.getLogger("groovy");
507 lgclient.setLevel(Level.toLevel(Cache.getDefault(
508 "logs.Groovy.Level", Level.INFO.toString())));
510 lgclient.addAppender(log.getAppender("JalviewLogger"));
511 // Tell the user that debug is enabled
512 lgclient.debug("Jalview Groovy Client Debugging Output Follows.");
515 groovyJarsArePresent = 0;
516 jalview.bin.Cache.log.debug("Groovy Classes are not present",e);
519 groovyJarsArePresent = 0;
520 jalview.bin.Cache.log.debug("Groovy Classes are not present");
523 return (groovyJarsArePresent > 0);
526 * generate Das1Sources from the local das source list
528 * @return Vector of Das1Sources
530 public static Vector getLocalDasSources()
532 Vector localSources = new Vector();
533 String local = jalview.bin.Cache.getProperty("DAS_LOCAL_SOURCE");
536 StringTokenizer st = new StringTokenizer(local, "\t");
537 while (st.hasMoreTokens())
539 String token = st.nextToken();
540 int bar = token.indexOf("|");
541 Das1Source source = new Das1Source();
542 source.setUrl(token.substring(bar + 1));
543 if (source.getUrl().startsWith("sequence:"))
545 source.setUrl(source.getUrl().substring(9));
546 // this source also serves sequences as well as features
547 source.setCapabilities(new String[]
548 { "sequence", "features" });
552 // default is that all user added sources serve features
553 source.setCapabilities(new String[]
557 source.setNickname(token.substring(0, bar));
559 localSources.addElement(source);
566 * GA tracker object - actually JGoogleAnalyticsTracker null if tracking not enabled.
568 protected static Object tracker = null;
569 protected static Class trackerfocus = null;
570 protected static Class jgoogleanalyticstracker = null;
573 * Initialise the google tracker if it is not done already.
575 public static void initGoogleTracker()
579 if (jgoogleanalyticstracker==null)
581 // try to get the tracker class
583 jgoogleanalyticstracker = Cache.class.getClassLoader().loadClass(
584 "com.boxysystems.jgoogleanalytics.JGoogleAnalyticsTracker");
585 trackerfocus = Cache.class.getClassLoader().loadClass(
586 "com.boxysystems.jgoogleanalytics.FocusPoint");
587 } catch (Exception e)
589 log.debug("com.boxysystems.jgoogleanalytics package is not present - tracking not enabled.");
591 jgoogleanalyticstracker=null;
596 // now initialise tracker
597 Exception re = null, ex = null;
599 String vrs = "No Version Accessible";
602 // Google analytics tracking code for Library Finder
603 tracker = jgoogleanalyticstracker.getConstructor(new Class[] { String.class,String.class,String.class}).newInstance(new Object[] { "Jalview Desktop",
604 (vrs = jalview.bin.Cache.getProperty("VERSION")
606 + jalview.bin.Cache.getDefault("BUILD_DATE",
607 "unknown")), "UA-9060947-1"});
608 jgoogleanalyticstracker.getMethod("trackAsynchronously", new Class[] { trackerfocus })
609 .invoke(tracker, new Object[] { trackerfocus.getConstructor(
610 new Class[] { String.class}).newInstance(new Object[] { "Application Started." })});
611 } catch (RuntimeException e)
614 } catch (Exception e)
621 if (re != null || ex != null || err != null)
628 "Caught runtime exception in googletracker init:",
632 "Failed to initialise GoogleTracker for Jalview Desktop with version "
636 "Whilst initing GoogleTracker for Jalview Desktop version "
644 .println("Debug: Caught runtime exception in googletracker init:"
646 re.printStackTrace();
651 .println("Warning: Failed to initialise GoogleTracker for Jalview Desktop with version "
653 ex.printStackTrace();
659 .println("ERROR: Whilst initing GoogleTracker for Jalview Desktop version "
661 err.printStackTrace();
667 log.debug("Successfully initialised tracker.");