/** * Copyright (C) 2007 Aelitis, All Rights Reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * AELITIS, SAS au capital de 63.529,40 euros * 8 Allee Lenotre, La Grille Royale, 78600 Le Mesnil le Roi, France. * */ package org.gudy.azureus2.platform; import java.util.Properties; import org.gudy.azureus2.platform.unix.PlatformManagerUnixPlugin; import org.gudy.azureus2.plugins.Plugin; import org.gudy.azureus2.plugins.PluginException; import org.gudy.azureus2.plugins.PluginInterface; import org.gudy.azureus2.plugins.update.UpdatableComponent; import org.gudy.azureus2.plugins.update.UpdateChecker; /** * @author TuxPaper * @created Jul 24, 2007 * */ public class PlatformManagerPluginDelegate implements Plugin, UpdatableComponent // we have to implement this as it used as a mixin to declare that this plugin handles its own update process { public static void load( PluginInterface plugin_interface ) { // name it during initialisation plugin_interface.getPluginProperties().setProperty( "plugin.name", "Platform-Specific Support" ); } // @see org.gudy.azureus2.plugins.Plugin#initialize(org.gudy.azureus2.plugins.PluginInterface) public void initialize(PluginInterface pluginInterface) throws PluginException { PlatformManager platform = PlatformManagerFactory.getPlatformManager(); int platformType = platform.getPlatformType(); if ( platformType == PlatformManager.PT_WINDOWS ){ org.gudy.azureus2.platform.win32.PlatformManagerUpdateChecker plugin = new org.gudy.azureus2.platform.win32.PlatformManagerUpdateChecker(); plugin.initialize(pluginInterface); }else if ( platformType == PlatformManager.PT_MACOSX ){ org.gudy.azureus2.platform.macosx.PlatformManagerUpdateChecker plugin = new org.gudy.azureus2.platform.macosx.PlatformManagerUpdateChecker(); plugin.initialize(pluginInterface); }else if ( platformType == PlatformManager.PT_UNIX ){ PlatformManagerUnixPlugin plugin = new PlatformManagerUnixPlugin(); plugin.initialize(pluginInterface); }else{ Properties pluginProperties = pluginInterface.getPluginProperties(); pluginProperties.setProperty("plugin.name", "Platform-Specific Support"); pluginProperties.setProperty("plugin.version", "1.0"); pluginProperties.setProperty("plugin.version.info", "Not required for this platform"); } } public String getName() { return( "Mixin only" ); } public int getMaximumCheckTime() { return( 0 ); } public void checkForUpdate( UpdateChecker checker ) { } }