Files
alfresco-community-repo/source/java/org/alfresco/filesys/FTPServerBean.java
Raluca Munteanu 8674e2bfc8 Merged 5.1.N (5.1.2) to 5.2.N (5.2.1)
125603 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2)
      125484 slanglois: MNT-16155 Update source headers - remove old Copyrights from Java and JSP dource files


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@125781 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2016-04-26 12:48:49 +00:00

250 lines
6.9 KiB
Java

package org.alfresco.filesys;
import java.io.IOException;
import java.io.PrintStream;
import java.net.SocketException;
import org.alfresco.error.AlfrescoRuntimeException;
import org.alfresco.jlan.ftp.FTPConfigSection;
import org.alfresco.jlan.ftp.FTPServer;
import org.alfresco.jlan.server.NetworkServer;
import org.alfresco.jlan.server.config.ServerConfiguration;
import org.springframework.extensions.surf.util.AbstractLifecycleBean;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationEvent;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* FTP Server Class
*
* <p>Create and start the server components required to run the FTP server.
*
* @author GKSpencer
*/
public class FTPServerBean extends AbstractLifecycleBean
{
private static final Log logger = LogFactory.getLog("org.alfresco.ftp.server");
// Server configuration and sections
private ServerConfiguration filesysConfig;
private FTPConfigSection m_ftpConfig;
// The actual FTP server
private FTPServer ftpServer;
/**
* Class constructor
*
* @param serverConfig ServerConfiguration
*/
public FTPServerBean(ServerConfiguration serverConfig)
{
filesysConfig = serverConfig;
}
/**
* Return the server configuration
*
* @return ServerConfiguration
*/
public final ServerConfiguration getConfiguration()
{
return filesysConfig;
}
/**
* @return Returns true if the server started up without any errors
*/
public boolean isStarted()
{
return (ftpServer != null && filesysConfig.isServerRunning("FTP"));
}
/**
* Start the FTP server components
*
* @exception SocketException If a network error occurs
* @exception IOException If an I/O error occurs
*/
public final void startServer() throws SocketException, IOException
{
try
{
// Create the FTP server, if enabled
m_ftpConfig = (FTPConfigSection) filesysConfig.getConfigSection( FTPConfigSection.SectionName);
if (m_ftpConfig != null)
{
// Create the FTP server
ftpServer = new FTPServer(filesysConfig);
filesysConfig.addServer(ftpServer);
}
// Start the server
if(ftpServer != null)
{
// Start the FTP server
if (logger.isInfoEnabled())
logger.info("Starting server " + ftpServer.getProtocolName() + " ...");
ftpServer.startServer();
}
}
catch (Throwable e)
{
ftpServer = null;
throw new AlfrescoRuntimeException("Failed to start FTP Server", e);
}
// success
}
/**
* Stop the FTP server components
*/
public final void stopServer()
{
if (filesysConfig == null)
{
// initialisation failed
return;
}
// Shutdown the FTP server
if ( ftpServer != null)
{
if (logger.isInfoEnabled())
logger.info("Shutting server " + ftpServer.getProtocolName() + " ...");
// Stop the server
ftpServer.shutdownServer(false);
// Remove the server from the global list
getConfiguration().removeServer(ftpServer.getProtocolName());
ftpServer = null;
}
}
/**
* Runs the FTP server directly
*
* @param args String[]
*/
public static void main(String[] args)
{
PrintStream out = System.out;
out.println("FTP Server Test");
out.println("---------------");
ClassPathXmlApplicationContext ctx = null;
try
{
// Create the configuration service in the same way that Spring creates it
ctx = new ClassPathXmlApplicationContext("alfresco/application-context.xml");
// Get the FTP server bean
FTPServerBean server = (FTPServerBean) ctx.getBean("ftpServer");
if (server == null)
{
throw new AlfrescoRuntimeException("Server bean 'ftpServer' not defined");
}
// Stop the CIFS server components, if running
NetworkServer srv = server.getConfiguration().findServer("SMB");
if ( srv != null)
srv.shutdownServer(true);
srv = server.getConfiguration().findServer("NetBIOS");
if ( srv != null)
srv.shutdownServer(true);
// Only wait for shutdown if the FTP server is enabled
if ( server.getConfiguration().hasConfigSection(FTPConfigSection.SectionName))
{
// FTP server should have automatically started
//
// Wait for shutdown via the console
out.println("Enter 'x' to shutdown ...");
boolean shutdown = false;
// Wait while the server runs, user may stop the server by typing a key
while (shutdown == false)
{
// Wait for the user to enter the shutdown key
int ch = System.in.read();
if (ch == 'x' || ch == 'X')
shutdown = true;
synchronized (server)
{
server.wait(20);
}
}
// Stop the server
server.stopServer();
}
}
catch (Exception ex)
{
ex.printStackTrace();
}
finally
{
if (ctx != null)
{
ctx.close();
}
}
System.exit(1);
}
@Override
protected void onBootstrap(ApplicationEvent event)
{
try
{
startServer();
}
catch (SocketException e)
{
throw new AlfrescoRuntimeException("Failed to start FTP server", e);
}
catch (IOException e)
{
throw new AlfrescoRuntimeException("Failed to start FTP server", e);
}
}
@Override
protected void onShutdown(ApplicationEvent event)
{
stopServer();
// Clear the configuration
filesysConfig = null;
}
}