Files
libreoffice/io/source/connector/connector.cxx
Takeshi Abe e00d41f76d io: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.

Change-Id: Iad03db6b729a785ab8b29a69943fa45f5a36b21b
Reviewed-on: https://gerrit.libreoffice.org/17849
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
2015-08-19 07:48:50 +00:00

214 lines
8.0 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
*/
#include "osl/security.hxx"
#include <uno/mapping.hxx>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase.hxx>
#include <cppuhelper/implementationentry.hxx>
#include <cppuhelper/supportsservice.hxx>
#include "cppuhelper/unourl.hxx"
#include "rtl/malformeduriexception.hxx"
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/IllegalArgumentException.hpp>
#include <com/sun/star/connection/XConnector.hpp>
#include "services.hxx"
#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 ::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
{
class OConnector : public WeakImplHelper< XConnector, XServiceInfo >
{
Reference< XMultiComponentFactory > _xSMgr;
Reference< XComponentContext > _xCtx;
public:
OConnector(const Reference< XComponentContext > &xCtx);
virtual ~OConnector();
// Methods
virtual Reference< XConnection > SAL_CALL connect(
const OUString& sConnectionDescription )
throw( NoConnectException, ConnectionSetupException, RuntimeException, std::exception) SAL_OVERRIDE;
public: // XServiceInfo
virtual OUString SAL_CALL getImplementationName() throw(std::exception) SAL_OVERRIDE;
virtual Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw(std::exception) SAL_OVERRIDE;
};
OConnector::OConnector(const Reference< XComponentContext > &xCtx)
: _xSMgr( xCtx->getServiceManager() )
, _xCtx( xCtx )
{}
OConnector::~OConnector() {}
Reference< XConnection > SAL_CALL OConnector::connect( const OUString& sConnectionDescription )
throw( NoConnectException, ConnectionSetupException, RuntimeException, std::exception)
{
OSL_TRACE(
"connector %s\n",
OUStringToOString(
sConnectionDescription, RTL_TEXTENCODING_ASCII_US).getStr());
// split string into tokens
try
{
cppu::UnoUrlDescriptor aDesc(sConnectionDescription);
Reference< XConnection > r;
if ( aDesc.getName() == "pipe" )
{
OUString aName(aDesc.getParameter("name"));
PipeConnection *pConn = new PipeConnection( sConnectionDescription );
if( pConn->m_pipe.create( aName.pData, osl_Pipe_OPEN, osl::Security() ) )
{
r = Reference < XConnection > ( static_cast<XConnection *>(pConn) );
}
else
{
OUString sMessage("Connector : couldn't connect to pipe ");
sMessage += aName;
sMessage += "(";
sMessage += OUString::number( pConn->m_pipe.getError() );
sMessage += ")";
delete pConn;
throw NoConnectException( sMessage );
}
}
else if ( aDesc.getName() == "socket" )
{
OUString aHost;
if (aDesc.hasParameter("host"))
aHost = aDesc.getParameter("host");
else
aHost = "localhost";
sal_uInt16 nPort = static_cast< sal_uInt16 >(
aDesc.getParameter("port").
toInt32());
bool bTcpNoDelay
= aDesc.getParameter("tcpnodelay").toInt32() != 0;
SocketConnection *pConn = new SocketConnection( sConnectionDescription);
SocketAddr AddrTarget( aHost.pData, nPort );
if(pConn->m_socket.connect(AddrTarget) != osl_Socket_Ok)
{
OUString sMessage("Connector : couldn't connect to socket (");
OUString sError = pConn->m_socket.getErrorAsString();
sMessage += sError;
sMessage += ")";
delete pConn;
throw NoConnectException( sMessage );
}
// we enable tcpNoDelay for loopback connections because
// it can make a significant speed difference on linux boxes.
if( bTcpNoDelay || aHost == "localhost" || aHost.startsWith("127.0.0.") )
{
sal_Int32 nTcpNoDelay = sal_Int32(true);
pConn->m_socket.setOption( osl_Socket_OptionTcpNoDelay , &nTcpNoDelay,
sizeof( nTcpNoDelay ) , osl_Socket_LevelTcp );
}
pConn->completeConnectionString();
r = Reference< XConnection > ( static_cast<XConnection *>(pConn) );
}
else
{
OUString delegatee("com.sun.star.connection.Connector.");
delegatee += aDesc.getName();
OSL_TRACE(
"connector: trying to get service %s\n",
OUStringToOString(
delegatee, RTL_TEXTENCODING_ASCII_US).getStr());
Reference<XConnector> xConnector(
_xSMgr->createInstanceWithContext(delegatee, _xCtx), UNO_QUERY );
if(!xConnector.is())
{
OUString message("Connector: unknown delegatee ");
message += delegatee;
throw ConnectionSetupException(message);
}
sal_Int32 index = sConnectionDescription.indexOf((sal_Unicode) ',');
r = xConnector->connect(sConnectionDescription.copy(index + 1).trim());
}
return r;
}
catch (const rtl::MalformedUriException & rEx)
{
throw ConnectionSetupException(rEx.getMessage());
}
}
Sequence< OUString > connector_getSupportedServiceNames()
{
Sequence< OUString > seqNames(1);
seqNames.getArray()[0] = SERVICE_NAME;
return seqNames;
}
OUString connector_getImplementationName()
{
return OUString( IMPLEMENTATION_NAME );
}
OUString OConnector::getImplementationName() throw(std::exception)
{
return connector_getImplementationName();
}
sal_Bool OConnector::supportsService(const OUString& ServiceName) throw(std::exception)
{
return cppu::supportsService(this, ServiceName);
}
Sequence< OUString > OConnector::getSupportedServiceNames() throw(std::exception)
{
return connector_getSupportedServiceNames();
}
Reference< XInterface > SAL_CALL connector_CreateInstance( const Reference< XComponentContext > & xCtx)
{
return Reference < XInterface >( static_cast<OWeakObject *>(new OConnector(xCtx)) );
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */