mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-16 17:55:15 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5081 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
108 lines
3.6 KiB
Java
108 lines
3.6 KiB
Java
/*
|
|
* Copyright (C) 2006 Alfresco, Inc.
|
|
*
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
package org.alfresco.util;
|
|
|
|
import java.net.ConnectException;
|
|
|
|
import net.sf.jooreports.openoffice.connection.OpenOfficeConnection;
|
|
|
|
import org.alfresco.error.AlfrescoRuntimeException;
|
|
import org.alfresco.i18n.I18NUtil;
|
|
import org.apache.commons.logging.Log;
|
|
import org.apache.commons.logging.LogFactory;
|
|
|
|
/**
|
|
* Simple class that checks for the presence of a valid <b>OpenOffice</b>
|
|
* connection, as provided by the
|
|
* <code>net.sf.jooreports.openoffice.connection.OpenOfficeConnection</code> implementations.
|
|
*
|
|
* @author Derek Hulley
|
|
*/
|
|
public class OpenOfficeConnectionTester
|
|
{
|
|
private static final String INFO_CONNECTION_VERIFIED = "system.openoffice.info.connection_verified";
|
|
private static final String ERR_CONNECTION_FAILED = "system.openoffice.err.connection_failed";
|
|
|
|
private static Log logger = LogFactory.getLog(OpenOfficeConnectionTester.class);
|
|
|
|
private OpenOfficeConnection connection;
|
|
private boolean strict;
|
|
|
|
public OpenOfficeConnectionTester()
|
|
{
|
|
this.strict = false;
|
|
}
|
|
|
|
/**
|
|
* @param connection the <b>OpenOffice</b> connection.
|
|
*/
|
|
public void setConnection(OpenOfficeConnection connection)
|
|
{
|
|
this.connection = connection;
|
|
}
|
|
|
|
/**
|
|
* @param strict set to <tt>true</tt> to generate a failure if the connection is not connected
|
|
* during the {@link #checkConnection() connection check}, or false to just issue
|
|
* a warning. The default is <tt>false</tt>.
|
|
*/
|
|
public void setStrict(boolean strict)
|
|
{
|
|
this.strict = strict;
|
|
}
|
|
|
|
/**
|
|
* Perform the actual connection check. If this component is {@link #setStrict(boolean) strict},
|
|
* then a disconnected {@link #setConnection(OpenOfficeConnection) connection} will result in a
|
|
* runtime exception being generated.
|
|
*/
|
|
public synchronized void checkConnection()
|
|
{
|
|
PropertyCheck.mandatory(this, "connection", connection);
|
|
String connectedMessage = I18NUtil.getMessage(INFO_CONNECTION_VERIFIED);
|
|
if (connection.isConnected())
|
|
{
|
|
// the connection is fine
|
|
logger.info(connectedMessage);
|
|
return;
|
|
}
|
|
// attempt to make the connection
|
|
try
|
|
{
|
|
connection.connect();
|
|
// that worked
|
|
logger.info(connectedMessage);
|
|
return;
|
|
}
|
|
catch (ConnectException e)
|
|
{
|
|
// no luck
|
|
}
|
|
// now we have to either fail or report the connection
|
|
String msg = I18NUtil.getMessage(ERR_CONNECTION_FAILED);
|
|
if (strict)
|
|
{
|
|
throw new AlfrescoRuntimeException(msg);
|
|
}
|
|
else
|
|
{
|
|
logger.warn(msg);
|
|
}
|
|
}
|
|
}
|