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

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: PluginHandler.java,v 1.2 2000/04/06 08:02:02 wastl Exp $ */
  2. package net.wastl.webmail.server;
  3. import net.wastl.webmail.config.*;
  4. import net.wastl.webmail.misc.*;
  5. import java.io.*;
  6. import java.util.*;
  7. /**
  8.  * PluginHandler.java
  9.  *
  10.  * Handle WebMail Plugins
  11.  *
  12.  * Created: Tue Aug 31 15:28:45 1999
  13.  *
  14.  * Copyright (C) 1999-2000 Sebastian Schaffert
  15.  * 
  16.  * This program is free software; you can redistribute it and/or
  17.  * modify it under the terms of the GNU General Public License
  18.  * as published by the Free Software Foundation; either version 2
  19.  * of the License, or (at your option) any later version.
  20.  * 
  21.  * This program is distributed in the hope that it will be useful,
  22.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  24.  * GNU General Public License for more details.
  25.  * 
  26.  * You should have received a copy of the GNU General Public License
  27.  * along with this program; if not, write to the Free Software
  28.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  29.  */
  30. /**
  31.  *
  32.  *
  33.  *
  34.  * @author Sebastian Schaffert
  35.  * @version
  36.  */
  37. public class PluginHandler  {
  38.     
  39.     WebMailServer parent;
  40.     String plugin_path;
  41.     Vector plugins;
  42.     public PluginHandler(WebMailServer parent) {
  43. this.parent=parent;
  44. this.plugin_path=parent.getProperty("webmail.plugin.path");
  45. plugins=new Vector();
  46. registerPlugins();
  47.     }
  48.      /**
  49.      * Initialize and register WebMail Plugins.
  50.      */
  51.     public void registerPlugins() {
  52. System.err.println("- Initializing WebMail Plugins ...");
  53. System.err.flush();
  54. // System.setProperty("java.class.path",System.getProperty("java.class.path")+System.getProperty("path.separator")+pluginpath);
  55. System.err.print("  * loading: ");
  56. File f=new File(plugin_path);
  57. String[] classlist=f.list(new FFilter());
  58. Class plugin_class=null;
  59. try {
  60.     plugin_class=Class.forName("net.wastl.webmail.server.Plugin");
  61. } catch(ClassNotFoundException ex) {
  62.     System.err.println("===> Could not find interface 'Plugin'!!");
  63.     System.exit(1);
  64. }
  65. PluginDependencyTree pt=new PluginDependencyTree("");
  66. Queue q=new Queue();
  67. int count=0;
  68. for(int i=0;i<classlist.length;i++) {
  69.     try {
  70. String name=classlist[i].substring(0,classlist[i].length()-6);
  71. Class c=Class.forName(name);
  72. if(plugin_class.isAssignableFrom(c)) {
  73.     Plugin p=(Plugin) c.newInstance();
  74.     q.queue(p);
  75.     plugins.addElement(p);
  76.     //System.err.print(p.getName()+" ");
  77.     //System.err.flush();
  78.     count++;
  79. }
  80.     } catch(Exception ex) {
  81. System.err.println("   * Error: could not register ""+classlist[i]+""!");
  82. ex.printStackTrace();
  83.     }
  84. }
  85. System.err.println(count+" plugins loaded correctly.");
  86. System.err.print("  * initializing: ");
  87. count=0;
  88. while(!q.isEmpty()) {
  89.     Plugin p=(Plugin)q.next();
  90.     if(!pt.addPlugin(p)) {
  91. q.queue(p);
  92.     }
  93. }
  94. pt.register(parent);
  95. System.err.println("plugins initialized.");
  96.     };
  97.    
  98.     public Enumeration getPlugins() {
  99. return plugins.elements();
  100.     }
  101.     /**
  102.      * A filter to find WebMail Plugins.
  103.      */
  104.     class FFilter implements FilenameFilter {
  105. FFilter() {
  106. }
  107. public boolean accept(File f, String s) {
  108.     if(s.endsWith(".class")) {
  109. return true;
  110.     } else {
  111. return false;
  112.     }
  113. }
  114.     }
  115. } // PluginHandler