SystemCheck.java
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:3k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: SystemCheck.java,v 1.3 2000/04/06 08:02:02 wastl Exp $ */
  2. package net.wastl.webmail.server;
  3. import java.io.*;
  4. /**
  5.  * SystemCheck.java
  6.  *
  7.  * Created: Tue Aug 31 15:40:57 1999
  8.  *
  9.  * Copyright (C) 1999-2000 Sebastian Schaffert
  10.  * 
  11.  * This program is free software; you can redistribute it and/or
  12.  * modify it under the terms of the GNU General Public License
  13.  * as published by the Free Software Foundation; either version 2
  14.  * of the License, or (at your option) any later version.
  15.  * 
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  * 
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  24.  */
  25. /**
  26.  *
  27.  *
  28.  *
  29.  * @author Sebastian Schaffert
  30.  * @version
  31.  */
  32. public class SystemCheck  {
  33.     
  34.     public SystemCheck(WebMailServer parent) throws WebMailException {
  35. System.err.println("- Checking Java Virtual Machine ... ");
  36. System.err.print("  * Version: "+System.getProperty("java.version")+" ... ");
  37. /* Test if the Java version might cause trouble */
  38. if(System.getProperty("java.version").compareTo("1.1")>=0) {
  39.     System.err.println("ok.");
  40. } else {
  41.     System.err.println("warn. At least Java 1.1 is required for WebMail.");
  42.     //System.exit(1);
  43. }
  44. /* Test if the operating system is supported */
  45. System.err.print("  * Operating System: "+System.getProperty("os.name")+"/"+System.getProperty("os.arch")+" "+System.getProperty("os.version")+" ... ");
  46. if(System.getProperty("os.name").equals("SunOS") || 
  47.    System.getProperty("os.name").equals("Solaris") || 
  48.    System.getProperty("os.name").equals("Linux")) {
  49.     System.err.println("ok.");
  50. } else {
  51.     System.err.println("warning. WebMail was only testedn   on Solaris, HP-UX and Linux and may cause problems on your platform.");
  52. }
  53. /* Check if we are running as root and issue a warning */
  54. System.err.print("  * User name: "+System.getProperty("user.name")+" ... ");
  55. if(!System.getProperty("user.name").equals("root")) {
  56.     System.err.println("ok.");
  57. } else {
  58.     System.err.println("warning. You are running WebMail as root. This may be a potential security problem.");
  59. }
  60. /* Check whether all WebMail system properties are defined */
  61. System.err.print("  * WebMail System Properties: ");
  62. checkPathProperty(parent,"webmail.plugin.path");
  63. checkPathProperty(parent,"webmail.auth.path");
  64. checkPathProperty(parent,"webmail.lib.path");
  65. checkPathProperty(parent,"webmail.template.path");
  66. checkPathProperty(parent,"webmail.data.path");
  67. checkPathProperty(parent,"webmail.xml.path");
  68. System.err.println("ok!");
  69.     }
  70.     
  71.     protected static void checkPathProperty(WebMailServer parent,String property) throws WebMailException {
  72. if(parent.getProperty(property) == null ||
  73.    parent.getProperty(property).equals("")) {
  74.     System.err.println("fatal error. "+property+" not defined.");
  75.     throw new WebMailException();
  76. } else {
  77.     try {
  78. File f=new File(parent.getProperty(property));
  79. parent.setProperty(property,f.getCanonicalPath());
  80.     } catch(IOException ex) {
  81. throw new WebMailException(ex.getMessage());
  82.     }
  83. }
  84.     }
  85. } // SystemCheck