office-gobmx/io/test/testconnection.cxx

298 lines
8.1 KiB
C++
Raw Normal View History

2000-09-18 11:24:28 -05:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 11:24:28 -05:00
*
* $RCSfile: testconnection.cxx,v $
2000-09-18 11:24:28 -05:00
*
* $Revision: 1.11 $
2000-09-18 11:24:28 -05:00
*
* last change: $Author: obo $ $Date: 2006-09-16 23:44:59 $
2000-09-18 11:24:28 -05:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2000-09-18 11:24:28 -05:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2000-09-18 11:24:28 -05:00
*
* 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.
2000-09-18 11:24:28 -05:00
*
* 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.
2000-09-18 11:24:28 -05:00
*
* 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
2000-09-18 11:24:28 -05:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_io.hxx"
2000-12-08 01:25:14 -06:00
#include <stdio.h>
2000-09-18 11:24:28 -05:00
2001-03-14 02:31:19 -06:00
#ifndef _OSL_TIME_H_
#include <osl/time.h>
#endif
2000-09-18 11:24:28 -05:00
#include <osl/diagnose.h>
2001-03-15 10:55:24 -06:00
#include <osl/thread.hxx>
2000-09-18 11:24:28 -05:00
#include <cppuhelper/servicefactory.hxx>
#include <com/sun/star/lang/XComponent.hpp>
#include <com/sun/star/registry/XImplementationRegistration.hpp>
#include <com/sun/star/connection/XConnector.hpp>
#include <com/sun/star/connection/XAcceptor.hpp>
2001-03-15 10:55:24 -06:00
using namespace ::osl;
2000-09-18 11:24:28 -05:00
using namespace ::rtl;
using namespace ::cppu;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::io;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::registry;
using namespace ::com::sun::star::connection;
class MyThread :
2001-03-15 10:55:24 -06:00
public Thread
2000-09-18 11:24:28 -05:00
{
public:
MyThread( const Reference< XAcceptor > &r , const OUString & sConnectionDescription) :
m_rAcceptor( r ),
m_sConnectionDescription( sConnectionDescription )
{}
virtual void SAL_CALL run();
Reference < XAcceptor > m_rAcceptor;
2001-01-08 06:27:40 -06:00
private:
2000-09-18 11:24:28 -05:00
Reference < XConnection > m_rConnection;
OUString m_sConnectionDescription;
};
void doWrite( const Reference < XConnection > &r )
{
Sequence < sal_Int8 > seq(10);
for( sal_Int32 i = 0 ; i < 10 ; i ++ )
{
seq.getArray()[i] = i;
}
r->write( seq );
}
void doRead( const Reference < XConnection > &r )
{
Sequence < sal_Int8 > seq(10);
OSL_ASSERT( 10 == r->read( seq , 10 ) );
for( sal_Int32 i = 0 ; i < 10 ; i ++ )
{
OSL_ASSERT( seq.getConstArray()[i] == i );
}
}
void MyThread::run()
{
try
{
m_rConnection = m_rAcceptor->accept( m_sConnectionDescription );
}
2001-01-08 06:27:40 -06:00
catch ( Exception &e)
2000-09-18 11:24:28 -05:00
{
2001-01-08 06:27:40 -06:00
OString tmp= OUStringToOString( e.Message , RTL_TEXTENCODING_ASCII_US );
printf( "Exception was thrown by acceptor thread: %s\n", tmp.getStr() );
2000-09-18 11:24:28 -05:00
}
if( m_rConnection.is() )
{
Sequence < sal_Int8 > seq(12);
try
{
doWrite( m_rConnection );
doRead( m_rConnection );
}
catch (... )
{
printf( "unknown exception was thrown\n" );
throw;
}
}
}
void testConnection( const OUString &sConnectionDescription ,
const Reference < XAcceptor > &rAcceptor,
const Reference < XConnector > &rConnector )
{
{
MyThread thread( rAcceptor , sConnectionDescription );
thread.create();
sal_Bool bGotit = sal_False;
Reference < XConnection > r;
while( ! bGotit )
{
try
{
// Why is this wait necessary ????
TimeValue value = {1,0};
osl_waitThread( &value );
r = rConnector->connect( sConnectionDescription );
OSL_ASSERT( r.is() );
doWrite( r );
doRead( r );
bGotit = sal_True;
}
catch( ... )
{
printf( "Couldn't connect, retrying ...\n" );
}
}
r->close();
try
{
Sequence < sal_Int8 > seq(10);
r->write( seq );
2001-03-12 08:53:51 -06:00
OSL_ENSURE( 0 , "expected exception not thrown" );
2000-09-18 11:24:28 -05:00
}
catch ( IOException & )
{
// everything is ok
}
catch ( ... )
{
2001-03-12 08:53:51 -06:00
OSL_ENSURE( 0 , "wrong exception was thrown" );
2000-09-18 11:24:28 -05:00
}
thread.join();
}
}
#if (defined UNX) || (defined OS2)
int main( int argc, char * argv[] )
#else
int __cdecl main( int argc, char * argv[] )
#endif
{
Reference< XMultiServiceFactory > xMgr(
createRegistryServiceFactory( OUString( RTL_CONSTASCII_USTRINGPARAM("applicat.rdb")) ) );
Reference< XImplementationRegistration > xImplReg(
xMgr->createInstance( OUString::createFromAscii("com.sun.star.registry.ImplementationRegistration") ), UNO_QUERY );
2001-03-12 08:53:51 -06:00
OSL_ENSURE( xImplReg.is(), "### no impl reg!" );
2000-09-18 11:24:28 -05:00
OUString aLibName =
OUString::createFromAscii( "connector.uno" SAL_DLLEXTENSION );
2000-09-18 11:24:28 -05:00
xImplReg->registerImplementation(
OUString::createFromAscii("com.sun.star.loader.SharedLibrary"), aLibName, Reference< XSimpleRegistry >() );
2000-09-18 11:24:28 -05:00
aLibName = OUString::createFromAscii( "acceptor.uno" SAL_DLLEXTENSION );
2000-09-18 11:24:28 -05:00
xImplReg->registerImplementation(
OUString::createFromAscii("com.sun.star.loader.SharedLibrary"), aLibName, Reference< XSimpleRegistry >() );
2000-09-18 11:24:28 -05:00
Reference < XAcceptor > rAcceptor(
xMgr->createInstance(
OUString::createFromAscii("com.sun.star.connection.Acceptor" ) ) , UNO_QUERY );
2000-09-18 11:24:28 -05:00
Reference < XAcceptor > rAcceptorPipe(
xMgr->createInstance(
OUString::createFromAscii("com.sun.star.connection.Acceptor" ) ) , UNO_QUERY );
2000-09-18 11:24:28 -05:00
Reference < XConnector > rConnector(
xMgr->createInstance( OUString::createFromAscii("com.sun.star.connection.Connector") ) , UNO_QUERY );
2000-09-18 11:24:28 -05:00
printf( "Testing sockets" );
fflush( stdout );
testConnection( OUString::createFromAscii("socket,host=localhost,port=2001"), rAcceptor , rConnector );
2000-09-18 11:24:28 -05:00
printf( " Done\n" );
printf( "Testing pipe" );
fflush( stdout );
testConnection( OUString::createFromAscii("pipe,name=bla") , rAcceptorPipe , rConnector );
2000-09-18 11:24:28 -05:00
printf( " Done\n" );
2001-01-08 06:27:40 -06:00
// check, if errornous strings make any problem
rAcceptor = Reference< XAcceptor > (
xMgr->createInstance( OUString::createFromAscii( "com.sun.star.connection.Acceptor" ) ),
UNO_QUERY );
try
{
rAcceptor->accept( OUString() );
OSL_ENSURE( 0 , "empty connection string" );
}
catch( IllegalArgumentException & )
{
// everything is fine
}
catch( ... )
{
OSL_ENSURE( 0, "unexpected akexception with empty connection string" );
}
try
{
rConnector->connect( OUString() );
OSL_ENSURE( 0 , "empty connection string" );
}
catch( ConnectionSetupException & )
{
// everything is fine
}
catch( ... )
{
OSL_ENSURE( 0, "unexpected exception with empty connection string" );
}
MyThread thread( rAcceptor , OUString::createFromAscii("socket,host=localhost,port=2001") );
thread.create();
TimeValue value = {0,1};
osl_waitThread( &value );
try
{
rAcceptor->accept( OUString::createFromAscii("socket,host=localhost,port=2001") );
OSL_ENSURE( 0 , "already existing exception expected" );
}
catch( AlreadyAcceptingException & e)
{
// everything is fine
}
catch( ... )
{
OSL_ENSURE( 0, "unknown exception, already existing existing expected" );
}
rAcceptor->stopAccepting();
thread.join();
2000-09-18 11:24:28 -05:00
Reference < XComponent > rComp( xMgr , UNO_QUERY );
if( rComp.is() )
{
rComp->dispose();
}
}