mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-02 17:35:18 +00:00
Not enabled or wired in yet. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4742 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
281 lines
8.0 KiB
Java
281 lines
8.0 KiB
Java
/*
|
|
* Copyright (C) 2006 Alfresco, Inc.
|
|
*
|
|
* Licensed under the Mozilla Public License version 1.1
|
|
* with a permitted attribution clause. You may obtain a
|
|
* copy of the License at
|
|
*
|
|
* http://www.alfresco.org/legal/license.txt
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
|
* either express or implied. See the License for the specific
|
|
* language governing permissions and limitations under the
|
|
* License.
|
|
*/
|
|
|
|
package org.alfresco.filesys;
|
|
|
|
import java.io.IOException;
|
|
import java.io.PrintStream;
|
|
import java.net.SocketException;
|
|
import java.util.Vector;
|
|
|
|
import org.alfresco.error.AlfrescoRuntimeException;
|
|
import org.alfresco.filesys.server.NetworkServer;
|
|
import org.alfresco.filesys.server.config.ServerConfiguration;
|
|
import org.alfresco.filesys.server.oncrpc.mount.MountServer;
|
|
import org.alfresco.filesys.server.oncrpc.portmap.PortMapperServer;
|
|
import org.alfresco.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;
|
|
|
|
/**
|
|
* NFS Server Class
|
|
*
|
|
* <p>Create and start the various server components required to run the NFS server.
|
|
*
|
|
* @author GKSpencer
|
|
*/
|
|
public class NFSServer extends AbstractLifecycleBean
|
|
{
|
|
// Debug logging
|
|
|
|
private static final Log logger = LogFactory.getLog("org.alfresco.nfs.server");
|
|
|
|
// Server configuration
|
|
|
|
private ServerConfiguration m_filesysConfig;
|
|
|
|
// List of NFS server components
|
|
|
|
private Vector<NetworkServer> m_serverList = new Vector<NetworkServer>();
|
|
|
|
/**
|
|
* Class constructor
|
|
*
|
|
* @param serverConfig ServerConfiguration
|
|
*/
|
|
public NFSServer(ServerConfiguration serverConfig)
|
|
{
|
|
m_filesysConfig = serverConfig;
|
|
}
|
|
|
|
/**
|
|
* Return the server configuration
|
|
*
|
|
* @return ServerConfiguration
|
|
*/
|
|
public final ServerConfiguration getConfiguration()
|
|
{
|
|
return m_filesysConfig;
|
|
}
|
|
|
|
/**
|
|
* Check if the server is started/enabled
|
|
*
|
|
* @return Returns true if the server started up without any errors
|
|
*/
|
|
public boolean isStarted()
|
|
{
|
|
return (m_filesysConfig != null && m_filesysConfig.isNFSServerEnabled());
|
|
}
|
|
|
|
/**
|
|
* Start the NFS 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 NFS, mount and portmapper servers, if enabled
|
|
|
|
if (m_filesysConfig.isNFSServerEnabled())
|
|
{
|
|
// Create the portmapper server, if enabled
|
|
|
|
if (m_filesysConfig.hasNFSPortMapper())
|
|
m_serverList.add(new PortMapperServer(m_filesysConfig));
|
|
|
|
// Create the mount and main NFS servers
|
|
|
|
m_serverList.add(new MountServer(m_filesysConfig));
|
|
m_serverList.add(new org.alfresco.filesys.server.oncrpc.nfs.NFSServer(m_filesysConfig));
|
|
|
|
// Add the servers to the configuration
|
|
|
|
for (NetworkServer server : m_serverList)
|
|
{
|
|
m_filesysConfig.addServer(server);
|
|
}
|
|
}
|
|
|
|
// Start the server(s)
|
|
|
|
for (NetworkServer server : m_serverList)
|
|
{
|
|
if (logger.isInfoEnabled())
|
|
logger.info("Starting server " + server.getProtocolName() + " ...");
|
|
|
|
// Start the server
|
|
|
|
server.startServer();
|
|
}
|
|
}
|
|
catch (Throwable e)
|
|
{
|
|
m_filesysConfig = null;
|
|
throw new AlfrescoRuntimeException("Failed to start NFS Server", e);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Stop the NFS server components
|
|
*/
|
|
public final void stopServer()
|
|
{
|
|
if (m_filesysConfig == null)
|
|
{
|
|
// initialisation failed
|
|
return;
|
|
}
|
|
|
|
// Shutdown the NFS server components, in reverse order
|
|
|
|
for ( int i = m_serverList.size() - 1; i >= 0; i--)
|
|
{
|
|
// Get the current server from the list
|
|
|
|
NetworkServer server = m_serverList.get( i);
|
|
if (logger.isInfoEnabled())
|
|
logger.info("Shutting server " + server.getProtocolName() + " ...");
|
|
|
|
// Stop the server
|
|
|
|
server.shutdownServer(false);
|
|
|
|
// Remove the server from the global list
|
|
|
|
getConfiguration().removeServer(server.getProtocolName());
|
|
}
|
|
|
|
// Clear the server list and configuration
|
|
|
|
m_serverList.clear();
|
|
m_filesysConfig = null;
|
|
}
|
|
|
|
/**
|
|
* Runs the NFS server directly
|
|
*
|
|
* @param args String[]
|
|
*/
|
|
public static void main(String[] args)
|
|
{
|
|
PrintStream out = System.out;
|
|
|
|
out.println("NFS Server Test");
|
|
out.println("----------------");
|
|
|
|
try
|
|
{
|
|
// Create the configuration service in the same way that Spring creates it
|
|
|
|
ApplicationContext ctx = new ClassPathXmlApplicationContext("alfresco/application-context.xml");
|
|
|
|
// Get the NFS server bean
|
|
|
|
NFSServer server = (NFSServer) ctx.getBean("nfsServer");
|
|
if (server == null)
|
|
{
|
|
throw new AlfrescoRuntimeException("Server bean 'nfsServer' not defined");
|
|
}
|
|
|
|
// Stop the FTP server, if running
|
|
|
|
server.getConfiguration().setFTPServerEnabled(false);
|
|
|
|
NetworkServer srv = server.getConfiguration().findServer("FTP");
|
|
if ( srv != null)
|
|
srv.shutdownServer(true);
|
|
|
|
// Stop the CIFS server, if running
|
|
|
|
server.getConfiguration().setSMBServerEnabled(false);
|
|
|
|
srv = server.getConfiguration().findServer("SMB");
|
|
if ( srv != null)
|
|
srv.shutdownServer(true);
|
|
|
|
// Only wait for shutdown if the NFS server is enabled
|
|
|
|
if ( server.getConfiguration().isNFSServerEnabled())
|
|
{
|
|
|
|
// NFS 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();
|
|
}
|
|
System.exit(1);
|
|
}
|
|
|
|
@Override
|
|
protected void onBootstrap(ApplicationEvent event)
|
|
{
|
|
try
|
|
{
|
|
startServer();
|
|
}
|
|
catch (SocketException e)
|
|
{
|
|
throw new AlfrescoRuntimeException("Failed to start NFS server", e);
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
throw new AlfrescoRuntimeException("Failed to start NFS server", e);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void onShutdown(ApplicationEvent event)
|
|
{
|
|
stopServer();
|
|
}
|
|
}
|