trunk/com/so/news/Main.java
changeset 0 f907866f0e4b
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/trunk/com/so/news/Main.java	Tue Jan 20 10:21:03 2009 +0100
     1.3 @@ -0,0 +1,96 @@
     1.4 +/*
     1.5 + *   StarOffice News Server
     1.6 + *   see AUTHORS for the list of contributors
     1.7 + *
     1.8 + *   This program is free software: you can redistribute it and/or modify
     1.9 + *   it under the terms of the GNU General Public License as published by
    1.10 + *   the Free Software Foundation, either version 3 of the License, or
    1.11 + *   (at your option) any later version.
    1.12 + *
    1.13 + *   This program is distributed in the hope that it will be useful,
    1.14 + *   but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.15 + *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.16 + *   GNU General Public License for more details.
    1.17 + *
    1.18 + *   You should have received a copy of the GNU General Public License
    1.19 + *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1.20 + */
    1.21 +
    1.22 +package com.so.news;
    1.23 +
    1.24 +import java.net.BindException;
    1.25 +
    1.26 +import java.sql.Driver;
    1.27 +import java.sql.DriverManager;
    1.28 +import java.util.Enumeration;
    1.29 +
    1.30 +import com.so.news.storage.Database;
    1.31 +import com.so.news.storage.Purger;
    1.32 +
    1.33 +/**
    1.34 + * Startup class of the daemon.
    1.35 + * @author Christian Lins
    1.36 + */
    1.37 +public class Main
    1.38 +{
    1.39 +  /** Version information of the StarOffice News daemon */
    1.40 +  public static final String VERSION = "StarOffice News Server 0.5alpha1";
    1.41 +
    1.42 +  /**
    1.43 +   * The main entrypoint.
    1.44 +   * @param args
    1.45 +   * @throws Exception
    1.46 +   */
    1.47 +  public static void main(String args[]) throws Exception
    1.48 +  {
    1.49 +    System.out.println(VERSION);
    1.50 +
    1.51 +    // Command line arguments
    1.52 +    boolean auxPort = false;
    1.53 +    
    1.54 +    for(int n = 0; n < args.length; n++)
    1.55 +    {
    1.56 +      if(args[n].equals("--dumpjdbcdriver"))
    1.57 +      {
    1.58 +        System.out.println("Available JDBC drivers:");
    1.59 +        Enumeration<Driver> drvs =  DriverManager.getDrivers();
    1.60 +        while(drvs.hasMoreElements())
    1.61 +          System.out.println(drvs.nextElement());
    1.62 +        return;
    1.63 +      }
    1.64 +      else if(args[n].equals("--useaux"))
    1.65 +        auxPort = true;
    1.66 +    }
    1.67 +    
    1.68 +    // Try to load the Database
    1.69 +    try
    1.70 +    {
    1.71 +      Database.arise();
    1.72 +    }
    1.73 +    catch(Exception ex)
    1.74 +    {
    1.75 +      ex.printStackTrace(Debug.getInstance().getStream());
    1.76 +      System.err.println("Database initialization failed with " + ex.toString());
    1.77 +      
    1.78 +      return;
    1.79 +    }
    1.80 +    
    1.81 +    // Start the n3tpd garbage collector
    1.82 +    new Purger().start();
    1.83 +    
    1.84 +    // Start the listening daemon
    1.85 +    try
    1.86 +    {
    1.87 +      new NNTPDaemon(false).start();
    1.88 +    }
    1.89 +    catch(BindException ex)
    1.90 +    {
    1.91 +      ex.printStackTrace(Debug.getInstance().getStream());
    1.92 +      System.err.println("Could not bind to interface. Perhaps you need superuser rights?");
    1.93 +    }
    1.94 +    
    1.95 +    // Start auxilary listening port...
    1.96 +    if(auxPort)
    1.97 +      new NNTPDaemon(true).start();
    1.98 +  }
    1.99 +}