2 * Jalview - A Sequence Alignment Editor and Viewer
\r
3 * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
\r
5 * This program is free software; you can redistribute it and/or
\r
6 * modify it under the terms of the GNU General Public License
\r
7 * as published by the Free Software Foundation; either version 2
\r
8 * of the License, or (at your option) any later version.
\r
10 * This program is distributed in the hope that it will be useful,
\r
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
13 * GNU General Public License for more details.
\r
15 * You should have received a copy of the GNU General Public License
\r
16 * along with this program; if not, write to the Free Software
\r
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\r
19 package jalview.bin;
\r
25 import org.apache.log4j.Logger;
\r
26 import org.apache.log4j.SimpleLayout;
\r
27 import org.apache.log4j.Level;
\r
28 import org.apache.log4j.ConsoleAppender;
\r
32 * Stores and retrieves Jalview Application Properties
\r
33 * <br><br>Current properties include:
\r
34 * <br>logs.Axis.Level - one of the stringified Levels for log4j controlling the logging level for axis (used for web services)
\r
35 * <br>logs.Castor.Level - one of the stringified Levels for log4j controlling the logging level for castor (used for serialization)
\r
36 * <br>logs.Jalview.Level - Cache.log stringified level.
\r
37 * <br>DISCOVERY_START - Boolean - controls if discovery services are queried on startup
\r
38 * <br>DISCOVERY_URLS - comma separated list of Discovery Service endpoints.
\r
39 * <br>SCREEN_WIDTH,SCREEN_HEIGHT,SCREEN_Y=285,SCREEN_X=371,SHOW_FULLSCREEN
\r
40 * FONT_NAME,FONT_SIZE,FONT_STYLE,GAP_SYMBOL,LAST_DIRECTORY,USER_DEFINED_COLOUR
\r
41 * SHOW_FULL_ID,SHOW_IDENTITY,SHOW_QUALITY,SHOW_ANNOTATIONS,SHOW_CONSERVATION,
\r
42 * DEFAULT_COLOUR,DEFAULT_FILE_FORMAT,STARTUP_FILE,SHOW_STARTUP_FILE
\r
45 * @version $Revision$
\r
50 * Initialises the Apache Axis logger
\r
52 public static Logger log;
\r
54 /** Jalview Properties */
\r
55 public static Properties applicationProperties = new Properties();
\r
57 /** Default file is ~/.jalview_properties */
\r
58 static String propertiesFile;
\r
60 public static void initLogger()
\r
64 Logger laxis = Logger.getLogger("org.apache.axis");
\r
65 Logger lcastor = Logger.getLogger("org.exolab.castor");
\r
66 jalview.bin.Cache.log = Logger.getLogger("jalview.bin.Jalview");
\r
68 laxis.setLevel(Level.toLevel(Cache.getDefault("logs.Axis.Level",
\r
69 Level.INFO.toString())));
\r
70 lcastor.setLevel(Level.toLevel(Cache.getDefault("logs.Castor.Level",
\r
71 Level.INFO.toString())));
\r
72 jalview.bin.Cache.log.setLevel(Level.toLevel(Cache.getDefault(
\r
73 "logs.Jalview.level",
\r
74 Level.INFO.toString())));
\r
75 ConsoleAppender ap = new ConsoleAppender(new SimpleLayout(),
\r
77 ap.setName("JalviewLogger");
\r
79 laxis.addAppender(ap);
\r
80 lcastor.addAppender(ap);
\r
81 jalview.bin.Cache.log.addAppender(ap);
\r
82 // Tell the user that debug is enabled
\r
83 jalview.bin.Cache.log.debug("Jalview Debugging Output Follows.");
\r
85 catch (Exception ex)
\r
87 System.err.println("Problems initializing the log4j system\n");
\r
92 /** Called when Jalview is started */
\r
93 public static void loadProperties(String propsFile)
\r
95 propertiesFile = propsFile;
\r
96 if (propsFile == null)
\r
98 propertiesFile = System.getProperty("user.home") + "/.jalview_properties";
\r
103 FileInputStream fis = new FileInputStream(propertiesFile);
\r
104 applicationProperties.load(fis);
\r
105 applicationProperties.remove("LATEST_VERSION");
\r
106 applicationProperties.remove("VERSION");
\r
109 catch (Exception ex)
\r
111 System.out.println("Error reading properties file: "+ex);
\r
114 if(getDefault("USE_PROXY", false))
\r
116 System.out.println("Using proxyServer: "+getDefault("PROXY_SERVER", null)+
\r
117 " proxyPort: "+getDefault("PROXY_PORT", null));
\r
118 System.setProperty("http.proxyHost", getDefault("PROXY_SERVER", null));
\r
119 System.setProperty("http.proxyPort", getDefault("PROXY_PORT", null));
\r
122 // FIND THE VERSION NUMBER AND BUILD DATE FROM jalview.jar
\r
123 // MUST FOLLOW READING OF LOCAL PROPERTIES FILE AS THE
\r
124 // VERSION MAY HAVE CHANGED SINCE LAST USING JALVIEW
\r
127 String buildDetails = "jar:"
\r
129 Cache.class.getProtectionDomain().getCodeSource().getLocation().toString()
\r
130 .concat("!/.build_properties")
\r
133 java.net.URL localJarFileURL = new java.net.URL(buildDetails);
\r
135 InputStream in = localJarFileURL.openStream();
\r
136 applicationProperties.load(in);
\r
139 catch (Exception ex)
\r
141 System.out.println("Error reading build details: "+ex);
\r
142 applicationProperties.remove("VERSION");
\r
145 String jnlpVersion = System.getProperty("jalview.version");
\r
146 String codeVersion = getProperty("VERSION");
\r
149 if(codeVersion==null)
\r
151 // THIS SHOULD ONLY BE THE CASE WHEN TESTING!!
\r
152 codeVersion = "Test";
\r
153 jnlpVersion = "Test";
\r
157 System.out.println("Jalview Version: "+codeVersion);
\r
160 // jnlpVersion will be null if we're using InstallAnywhere
\r
161 // Dont do this check if running in headless mode
\r
162 if(jnlpVersion==null && (
\r
163 System.getProperty("java.awt.headless")==null
\r
164 || System.getProperty("java.awt.headless").equals("false")))
\r
167 class VersionChecker
\r
172 String jnlpVersion = null;
\r
175 java.net.URL url = new java.net.URL(
\r
176 "http://www.jalview.org/webstart/jalview.jnlp");
\r
177 BufferedReader in = new BufferedReader(new InputStreamReader(url.
\r
179 String line = null;
\r
180 while ( (line = in.readLine()) != null)
\r
182 if (line.indexOf("jalview.version") == -1)
\r
185 line = line.substring(line.indexOf("value=") + 7);
\r
186 line = line.substring(0, line.lastIndexOf("\""));
\r
187 jnlpVersion = line;
\r
191 catch (Exception ex)
\r
193 System.out.println(ex);
\r
194 jnlpVersion = getProperty("VERSION");
\r
197 setProperty("LATEST_VERSION", jnlpVersion);
\r
201 VersionChecker vc = new VersionChecker();
\r
206 if(jnlpVersion!=null)
\r
207 setProperty("LATEST_VERSION", jnlpVersion);
\r
209 applicationProperties.remove("LATEST_VERSION");
\r
212 setProperty("VERSION", codeVersion);
\r
214 //LOAD USERDEFINED COLOURS
\r
215 jalview.gui.UserDefinedColours.initUserColourSchemes( getProperty("USER_DEFINED_COLOURS"));
\r
216 jalview.io.PIRFile.useModellerOutput = Cache.getDefault("PIR_MODELLER", false);
\r
222 * Gets Jalview application property of given key. Returns null
\r
225 * @param key Name of property
\r
227 * @return Property value
\r
229 public static String getProperty(String key)
\r
231 return applicationProperties.getProperty(key);
\r
235 /** These methods are used when checking if the saved preference
\r
236 * is different to the default setting
\r
239 public static boolean getDefault(String property, boolean def)
\r
241 String string = getProperty(property);
\r
242 if (string != null)
\r
244 def = Boolean.valueOf(string).booleanValue();
\r
250 /** These methods are used when checking if the saved preference
\r
251 * is different to the default setting
\r
253 public static String getDefault(String property, String def)
\r
255 String string = getProperty(property);
\r
256 if (string != null)
\r
266 * Stores property in the file "HOME_DIR/.jalview_properties"
\r
268 * @param key Name of object
\r
269 * @param obj String value of property
\r
271 * @return String value of property
\r
273 public static String setProperty(String key, String obj)
\r
277 FileOutputStream out = new FileOutputStream(propertiesFile);
\r
278 applicationProperties.setProperty(key, obj);
\r
279 applicationProperties.store(out, "---JalviewX Properties File---");
\r
282 catch (Exception ex)
\r
283 { System.out.println("Error setting property: "+key+" "+obj+"\n"+ex); }
\r
287 public static void saveProperties()
\r
291 FileOutputStream out = new FileOutputStream(propertiesFile);
\r
292 applicationProperties.store(out, "---JalviewX Properties File---");
\r
295 catch (Exception ex)
\r
296 { System.out.println("Error saving properties: "+ex); }
\r