/* -*- 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace ::test; 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::bridge; using namespace ::com::sun::star::registry; using namespace ::com::sun::star::connection; using namespace ::com::sun::star::frame; using namespace ::com::sun::star::text; #include "testcomp.h" #ifdef SAL_W32 #include #endif void mygetchar() { #ifdef SAL_W32 _getch(); #else getchar(); #endif } void testPipe( const Reference < XMultiServiceFactory > & rSmgr ) { Reference < XPipe > rPipe( Pipe::create(comphelper::getComponentContext(rSmgr)), UNO_QUERY_THROW ); { Sequence < sal_Int8 > seq( 10 ); seq.getArray()[0] = 42; rPipe->writeBytes( seq ); } { Sequence < sal_Int8 > seq; if( ! ( rPipe->available() == 10) ) printf( "wrong bytes available\n" ); if( ! ( rPipe->readBytes( seq , 10 ) == 10 ) ) printf( "wrong bytes read\n" ); if( ! ( 42 == seq.getArray()[0] ) ) printf( "wrong element in sequence\n" ); // OSL_ASSERT( 0 ); } } #include #include void testWriter( const Reference < XComponent > & rCmp ) { Reference< XTextDocument > rTextDoc( rCmp , UNO_QUERY ); Reference< XText > rText = rTextDoc->getText(); Reference< XTextCursor > rCursor = rText->createTextCursor(); Reference< XTextRange > rRange ( rCursor , UNO_QUERY ); char pcText[1024]; pcText[0] = 0; printf( "pleast type any text\n" ); while( true ) { scanf( "%s" , pcText ); if( !strcmp( pcText , "end" ) ) { break; } if ( strlen( pcText ) < sizeof(pcText)-1 ) strcat( pcText , " " ); // #100211# - checked rText->insertString( rRange , OUString::createFromAscii( pcText ) , sal_False ); } } void testDocument( const Reference < XMultiServiceFactory > & rSmgr ) { Reference < XDesktop2 > rLoader = Desktop::create( comphelper::getComponentContext(rSmgr) ); sal_Char *urls[] = { "private:factory/swriter", "private:factory/scalc", "private:factory/sdraw", "http://www.heise.de", "file://h|/remote_interfaces.sdw" }; sal_Char *docu[]= { "a new writer document ...\n", "a new calc document ...\n", "a new draw document ...\n", "www.heise.de\n", "the remote_interfaces.sdw doc\n" }; sal_Int32 i; for( i = 0 ; i < 1 ; i ++ ) { printf( "press any key to open %s\n" , docu[i] ); mygetchar(); Reference< XComponent > rComponent = rLoader->loadComponentFromURL( OUString::createFromAscii( urls[i] ) , OUString("_blank"), 0 , Sequence < ::com::sun::star::beans::PropertyValue >() ); testWriter( rComponent ); printf( "press any key to close the document\n" ); mygetchar(); rComponent->dispose(); } } void doSomething( const Reference < XInterface > &r ) { Reference < XNamingService > rName( r, UNO_QUERY ); if( rName.is() ) { printf( "got the remote naming service !\n" ); Reference < XInterface > rXsmgr = rName->getRegisteredObject( OUString( "StarOffice.ServiceManager" ) ); Reference < XMultiServiceFactory > rSmgr( rXsmgr , UNO_QUERY ); if( rSmgr.is() ) { printf( "got the remote service manager !\n" ); testPipe( rSmgr ); testDocument( rSmgr ); } } } int main( int argc, char *argv[] ) { if( argc < 2 ) { printf( "usage : testclient host:port" ); return 0; } OUString sConnectionString; OUString sProtocol; sal_Bool bLatency = sal_False; sal_Bool bReverse = sal_False; parseCommandLine( argv , &sConnectionString , &sProtocol , &bLatency , &bReverse ); { Reference< XMultiServiceFactory > rSMgr = createRegistryServiceFactory( OUString( "client.rdb" ) ); // just ensure that it is registered Reference < XConnector > rConnector( createComponent( OUString("com.sun.star.connection.Connector"), OUString( "connector.uno" SAL_DLLEXTENSION), rSMgr ), UNO_QUERY ); createComponent( OUString("com.sun.star.bridge.Bridge.iiop"), OUString( "remotebridge.uno" SAL_DLLEXTENSION), rSMgr ); Reference < XBridgeFactory > rFactory( createComponent( OUString("com.sun.star.bridge.BridgeFactory"), OUString( "bridgefac.uno" SAL_DLLEXTENSION), rSMgr ), UNO_QUERY ); try { if( rFactory.is() && rConnector.is() ) { Reference < XConnection > rConnection = rConnector->connect( sConnectionString ); Reference < XBridge > rBridge = rFactory->createBridge( OUString("bla blub"), sProtocol, rConnection, Reference < XInstanceProvider > () ); Reference < XInterface > rInitialObject = rBridge->getInstance( OUString("NamingService") ); if( rInitialObject.is() ) { printf( "got the remote object\n" ); doSomething( rInitialObject ); } TimeValue value={2,0}; osl_waitThread( &value ); } } catch (... ) { printf( "Exception thrown\n" ); } Reference < XComponent > rComp( rSMgr , UNO_QUERY ); rComp->dispose(); } //_getch(); return 0; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */