Files
libreoffice/io/source/connector/connector.cxx

400 lines
14 KiB
C++
Raw Normal View History

2000-09-18 16:24:28 +00:00
/*************************************************************************
*
* $RCSfile: connector.cxx,v $
*
2001-05-11 08:48:01 +00:00
* $Revision: 1.8 $
2000-09-18 16:24:28 +00:00
*
2001-05-11 08:48:01 +00:00
* last change: $Author: tbe $ $Date: 2001-05-11 09:47:38 $
2000-09-18 16:24:28 +00:00
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#include <osl/mutex.hxx>
#include <uno/mapping.hxx>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase1.hxx>
#include <com/sun/star/lang/IllegalArgumentException.hpp>
#include <com/sun/star/connection/XConnector.hpp>
#include "connector.hxx"
#define IMPLEMENTATION_NAME "com.sun.star.comp.io.Connector"
#define SERVICE_NAME "com.sun.star.connection.Connector"
using namespace ::osl;
using namespace ::rtl;
using namespace ::cppu;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::registry;
using namespace ::com::sun::star::connection;
namespace stoc_connector
{
typedef WeakImplHelper1< XConnector > MyImplHelper;
class OConnector : public MyImplHelper
{
Reference< XMultiServiceFactory > _xMultiServiceFactory;
public:
OConnector(Reference< XMultiServiceFactory > xMultiServiceFactory);
// Methods
virtual Reference< XConnection > SAL_CALL OConnector::connect(
const OUString& sConnectionDescription )
throw( NoConnectException, ConnectionSetupException, RuntimeException);
};
OConnector::OConnector(Reference< XMultiServiceFactory > xMultiServiceFactory)
: _xMultiServiceFactory(xMultiServiceFactory)
{
}
class TokenContainer
{
public:
TokenContainer( const OUString &sString );
~TokenContainer()
{
delete [] m_aTokens;
}
inline OUString & getToken( sal_Int32 nElement )
{
return m_aTokens[nElement];
}
inline sal_Int32 getTokenCount()
{
return m_nTokenCount;
}
OUString *m_aTokens;
sal_Int32 m_nTokenCount;
};
TokenContainer::TokenContainer( const OUString & sString ) :
m_nTokenCount( 0 ),
m_aTokens( 0 )
{
// split into separate tokens
sal_Int32 i = 0,nMax;
nMax = sString.getLength();
for( i = 0 ; i < nMax ; i ++ )
{
if( ',' == sString.pData->buffer[i] )
{
m_nTokenCount ++;
}
}
if( sString.getLength() )
{
m_nTokenCount ++;
}
if( m_nTokenCount )
{
m_aTokens = new OUString[m_nTokenCount];
sal_Int32 nIndex = 0;
for( i = 0 ; i < m_nTokenCount ; i ++ )
{
sal_Int32 nLastIndex = nIndex;
nIndex = sString.indexOf( ( sal_Unicode ) ',' , nIndex );
if( -1 == nIndex )
{
m_aTokens[i] = sString.copy( nLastIndex );
break;
}
else
{
m_aTokens[i] = sString.copy( nLastIndex , nIndex-nLastIndex );
}
m_aTokens[i] = m_aTokens[i].trim();
nIndex ++;
}
}
}
2000-09-18 16:24:28 +00:00
Reference< XConnection > SAL_CALL OConnector::connect( const OUString& sConnectionDescription )
throw( NoConnectException, ConnectionSetupException, RuntimeException)
{
#ifdef DEBUG
OString tmp = OUStringToOString(sConnectionDescription, RTL_TEXTENCODING_ASCII_US);
OSL_TRACE("connector %s\n", tmp.getStr());
#endif
// split string into tokens
TokenContainer container( sConnectionDescription );
2000-09-18 16:24:28 +00:00
if( ! container.getTokenCount() )
2000-09-18 16:24:28 +00:00
{
OUString message(RTL_CONSTASCII_USTRINGPARAM("Connector: empty connection string"));
throw ConnectionSetupException( message , Reference< XInterface > () );
2000-09-18 16:24:28 +00:00
}
Reference< XConnection > r;
if( 0 == container.getToken(0).compareToAscii( "pipe" ) )
2000-09-18 16:24:28 +00:00
{
OUString sName;
sal_Int32 i;
for( i = 1 ; i < container.getTokenCount() ; i ++ )
2000-09-18 16:24:28 +00:00
{
sal_Int32 nIndex = container.getToken(i).indexOf( '=' );
2000-09-18 16:24:28 +00:00
if( -1 != nIndex )
{
2001-05-11 08:48:01 +00:00
OUString aName = container.getToken(i).copy( 0 , nIndex ).trim().toAsciiLowerCase();
if( nIndex < container.getToken(i).getLength() )
2000-09-18 16:24:28 +00:00
{
OUString oValue = container.getToken(i).copy( nIndex+1 , container.getToken(i).getLength() - nIndex -1 ).trim();
if ( aName.compareToAscii("name") == 0 )
2000-09-18 16:24:28 +00:00
{
sName = oValue;
}
}
}
}
PipeConnection *pConn = new PipeConnection(sName , sConnectionDescription );
;
if( pConn->m_pipe.create( sName.pData, osl_Pipe_OPEN ) )
2000-09-18 16:24:28 +00:00
{
r = Reference < XConnection > ( (XConnection * ) pConn );
}
else
{
OUString sMessage = OUString::createFromAscii( "Connector : couldn't connect to pipe " );
sMessage += sName;
sMessage += OUString::createFromAscii( "(" );
sMessage += OUString::valueOf( (sal_Int32 ) pConn->m_pipe.getError() );
sMessage += OUString::createFromAscii( ")" );
delete pConn;
throw NoConnectException( sMessage ,Reference< XInterface > () );
}
}
else if( 0 == container.getToken(0).compareToAscii("socket") )
2000-09-18 16:24:28 +00:00
{
OUString sHost;
sal_uInt16 nPort = 0;
sal_Bool bTcpNoDelay = sal_False;
2000-09-18 16:24:28 +00:00
int i;
for( i = 1 ; i < container.getTokenCount() ; i ++ )
2000-09-18 16:24:28 +00:00
{
sal_Int32 nIndex = container.getToken(i).indexOf( '=' );
2000-09-18 16:24:28 +00:00
if( -1 != nIndex )
{
2001-05-11 08:48:01 +00:00
OUString aName = container.getToken(i).copy( 0 , nIndex ).trim().toAsciiLowerCase();
if( nIndex < container.getToken(i).getLength() )
2000-09-18 16:24:28 +00:00
{
OUString oValue = container.getToken(i).copy( nIndex+1 , container.getToken(i).getLength() - nIndex -1 ).trim();
if( 0 == aName.compareToAscii( "host") )
2000-09-18 16:24:28 +00:00
{
sHost = oValue;
}
else if( 0 == aName.compareToAscii("port") )
2000-09-18 16:24:28 +00:00
{
nPort = ( sal_uInt16 ) oValue.toInt32();
2000-09-18 16:24:28 +00:00
}
else if( aName.compareToAscii("tcpnodelay") == 0 )
{
bTcpNoDelay = oValue.toInt32() ? sal_True : sal_False;
}
2000-09-18 16:24:28 +00:00
}
}
}
SocketConnection *pConn = new SocketConnection( sHost,
nPort,
sConnectionDescription);
SocketAddr AddrTarget( sHost.pData, nPort );
2000-09-18 16:24:28 +00:00
if(pConn->m_socket.connect(AddrTarget) != osl_Socket_Ok)
{
OUString sMessage = OUString::createFromAscii( "Connector : couldn't connect to socket (" );
OUString sError = pConn->m_socket.getErrorAsString();
2000-09-18 16:24:28 +00:00
sMessage += sError;
sMessage += OUString::createFromAscii( ")" );
delete pConn;
throw NoConnectException( sMessage, Reference < XInterface > () );
}
if( bTcpNoDelay )
{
sal_Int32 nTcpNoDelay = sal_True;
pConn->m_socket.setOption( osl_Socket_OptionTcpNoDelay , &nTcpNoDelay,
sizeof( nTcpNoDelay ) , osl_Socket_LevelTcp );
}
pConn->completeConnectionString();
2000-09-18 16:24:28 +00:00
r = Reference< XConnection > ( (XConnection * ) pConn );
}
else
{
OUString delegatee = OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.connection.Connector."));
delegatee += container.getToken(0);
2000-09-18 16:24:28 +00:00
#ifdef DEBUG
OString tmp = OUStringToOString(delegatee, RTL_TEXTENCODING_ASCII_US);
OSL_TRACE("connector: trying to get service %s\n", tmp.getStr());
2000-09-18 16:24:28 +00:00
#endif
Reference<XConnector> xConnector(_xMultiServiceFactory->createInstance(delegatee), UNO_QUERY);
if(!xConnector.is())
{
OUString message(RTL_CONSTASCII_USTRINGPARAM("Connector: unknown delegatee "));
message += delegatee;
throw ConnectionSetupException(message, Reference<XInterface>());
}
sal_Int32 index = sConnectionDescription.indexOf((sal_Unicode) ',');
r = xConnector->connect(sConnectionDescription.copy(index + 1).trim());
}
return r;
}
Reference< XInterface > SAL_CALL connector_CreateInstance( const Reference< XMultiServiceFactory > & xMultiServiceFactory)
{
return Reference < XInterface >( ( OWeakObject * ) new OConnector(xMultiServiceFactory) );
}
Sequence< OUString > connector_getSupportedServiceNames()
{
static Sequence < OUString > *pNames = 0;
if( ! pNames )
{
MutexGuard guard( Mutex::getGlobalMutex() );
if( !pNames )
{
static Sequence< OUString > seqNames(1);
seqNames.getArray()[0] = OUString::createFromAscii( SERVICE_NAME );
pNames = &seqNames;
}
}
return *pNames;
}
}
using namespace stoc_connector;
extern "C"
{
//==================================================================================================
void SAL_CALL component_getImplementationEnvironment(
const sal_Char ** ppEnvTypeName, uno_Environment ** ppEnv )
{
*ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
}
//==================================================================================================
sal_Bool SAL_CALL component_writeInfo(
void * pServiceManager, void * pRegistryKey )
{
if (pRegistryKey)
{
try
{
Reference< XRegistryKey > xNewKey(
reinterpret_cast< XRegistryKey * >( pRegistryKey )->createKey(
OUString::createFromAscii("/" IMPLEMENTATION_NAME "/UNO/SERVICES" ) ) );
const Sequence< OUString > & rSNL = connector_getSupportedServiceNames();
const OUString * pArray = rSNL.getConstArray();
for ( sal_Int32 nPos = rSNL.getLength(); nPos--; )
xNewKey->createKey( pArray[nPos] );
return sal_True;
}
catch (InvalidRegistryException &)
{
2001-03-12 14:53:51 +00:00
OSL_ENSURE( sal_False, "### InvalidRegistryException!" );
2000-09-18 16:24:28 +00:00
}
}
return sal_False;
}
//==================================================================================================
void * SAL_CALL component_getFactory(
const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey )
{
void * pRet = 0;
if (pServiceManager && rtl_str_compare( pImplName, IMPLEMENTATION_NAME ) == 0)
{
Reference< XSingleServiceFactory > xFactory( createSingleFactory(
reinterpret_cast< XMultiServiceFactory * >( pServiceManager ),
OUString::createFromAscii( pImplName ),
connector_CreateInstance, connector_getSupportedServiceNames() ) );
if (xFactory.is())
{
xFactory->acquire();
pRet = xFactory.get();
}
}
return pRet;
}
}