2010-10-14 08:30:07 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-03 13:27:15 +01:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2000-09-18 16:24:28 +00:00
|
|
|
|
2006-09-16 22:44:21 +00:00
|
|
|
|
2000-09-18 16:24:28 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2013-03-30 15:34:22 -04:00
|
|
|
#include <sal/log.hxx>
|
2000-09-18 16:24:28 +00:00
|
|
|
|
|
|
|
#include <com/sun/star/io/XActiveDataSource.hpp>
|
|
|
|
#include <com/sun/star/io/XActiveDataSink.hpp>
|
|
|
|
#include <com/sun/star/io/XActiveDataControl.hpp>
|
|
|
|
#include <com/sun/star/io/XConnectable.hpp>
|
|
|
|
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
|
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
2001-03-20 08:04:37 +00:00
|
|
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
2000-09-18 16:24:28 +00:00
|
|
|
#include <com/sun/star/registry/XRegistryKey.hpp>
|
|
|
|
|
|
|
|
#include <uno/dispatcher.h>
|
|
|
|
#include <uno/mapping.hxx>
|
2001-03-20 08:04:37 +00:00
|
|
|
#include <cppuhelper/implbase5.hxx>
|
2000-09-18 16:24:28 +00:00
|
|
|
#include <cppuhelper/factory.hxx>
|
2002-07-09 14:11:53 +00:00
|
|
|
#include <cppuhelper/interfacecontainer.hxx>
|
2013-12-05 12:53:35 -02:00
|
|
|
#include <cppuhelper/supportsservice.hxx>
|
2000-09-18 16:24:28 +00:00
|
|
|
#include <osl/mutex.hxx>
|
|
|
|
#include <osl/thread.h>
|
|
|
|
|
2001-03-20 08:04:37 +00:00
|
|
|
|
2000-09-18 16:24:28 +00:00
|
|
|
using namespace osl;
|
|
|
|
using namespace std;
|
|
|
|
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::io;
|
|
|
|
|
2013-11-04 13:06:32 -02:00
|
|
|
#include "services.hxx"
|
2001-03-20 08:04:37 +00:00
|
|
|
|
2000-09-18 16:24:28 +00:00
|
|
|
namespace io_stm {
|
|
|
|
|
2001-03-20 08:04:37 +00:00
|
|
|
class Pump : public WeakImplHelper5<
|
|
|
|
XActiveDataSource, XActiveDataSink, XActiveDataControl, XConnectable, XServiceInfo >
|
2000-09-18 16:24:28 +00:00
|
|
|
{
|
|
|
|
Mutex m_aMutex;
|
|
|
|
oslThread m_aThread;
|
|
|
|
|
|
|
|
Reference< XConnectable > m_xPred;
|
|
|
|
Reference< XConnectable > m_xSucc;
|
|
|
|
Reference< XInputStream > m_xInput;
|
|
|
|
Reference< XOutputStream > m_xOutput;
|
2002-07-09 14:11:53 +00:00
|
|
|
OInterfaceContainerHelper m_cnt;
|
|
|
|
sal_Bool m_closeFired;
|
2000-09-18 16:24:28 +00:00
|
|
|
|
|
|
|
void run();
|
|
|
|
static void static_run( void* pObject );
|
|
|
|
|
|
|
|
void close();
|
2002-07-09 14:11:53 +00:00
|
|
|
void fireClose();
|
|
|
|
void fireStarted();
|
|
|
|
void fireTerminated();
|
|
|
|
void fireError( const Any &a );
|
2000-09-18 16:24:28 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
Pump();
|
|
|
|
virtual ~Pump();
|
|
|
|
|
|
|
|
// XActiveDataSource
|
|
|
|
virtual void SAL_CALL setOutputStream( const Reference< ::com::sun::star::io::XOutputStream >& xOutput ) throw();
|
|
|
|
virtual Reference< ::com::sun::star::io::XOutputStream > SAL_CALL getOutputStream() throw();
|
|
|
|
|
|
|
|
// XActiveDataSink
|
|
|
|
virtual void SAL_CALL setInputStream( const Reference< ::com::sun::star::io::XInputStream >& xStream ) throw();
|
|
|
|
virtual Reference< ::com::sun::star::io::XInputStream > SAL_CALL getInputStream() throw();
|
|
|
|
|
|
|
|
// XActiveDataControl
|
|
|
|
virtual void SAL_CALL addListener( const Reference< ::com::sun::star::io::XStreamListener >& xListener ) throw();
|
|
|
|
virtual void SAL_CALL removeListener( const Reference< ::com::sun::star::io::XStreamListener >& xListener ) throw();
|
2002-07-09 14:11:53 +00:00
|
|
|
virtual void SAL_CALL start() throw( RuntimeException );
|
2000-09-18 16:24:28 +00:00
|
|
|
virtual void SAL_CALL terminate() throw();
|
|
|
|
|
|
|
|
// XConnectable
|
|
|
|
virtual void SAL_CALL setPredecessor( const Reference< ::com::sun::star::io::XConnectable >& xPred ) throw();
|
|
|
|
virtual Reference< ::com::sun::star::io::XConnectable > SAL_CALL getPredecessor() throw();
|
|
|
|
virtual void SAL_CALL setSuccessor( const Reference< ::com::sun::star::io::XConnectable >& xSucc ) throw();
|
|
|
|
virtual Reference< ::com::sun::star::io::XConnectable > SAL_CALL getSuccessor() throw();
|
|
|
|
|
2001-03-20 08:04:37 +00:00
|
|
|
public: // XServiceInfo
|
|
|
|
virtual OUString SAL_CALL getImplementationName() throw( );
|
|
|
|
virtual Sequence< OUString > SAL_CALL getSupportedServiceNames(void) throw( );
|
|
|
|
virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw( );
|
2000-09-18 16:24:28 +00:00
|
|
|
};
|
|
|
|
|
2002-07-09 14:11:53 +00:00
|
|
|
Pump::Pump() : m_aThread( 0 ),
|
|
|
|
m_cnt( m_aMutex ),
|
|
|
|
m_closeFired( sal_False )
|
2000-09-18 16:24:28 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Pump::~Pump()
|
|
|
|
{
|
|
|
|
// exit gracefully
|
2002-07-09 14:11:53 +00:00
|
|
|
if( m_aThread )
|
|
|
|
{
|
|
|
|
osl_joinWithThread( m_aThread );
|
|
|
|
osl_destroyThread( m_aThread );
|
|
|
|
}
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
|
|
|
|
2002-07-09 14:11:53 +00:00
|
|
|
void Pump::fireError( const Any & exception )
|
|
|
|
{
|
|
|
|
OInterfaceIteratorHelper iter( m_cnt );
|
|
|
|
while( iter.hasMoreElements() )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
static_cast< XStreamListener * > ( iter.next() )->error( exception );
|
|
|
|
}
|
2011-12-15 13:51:29 +09:00
|
|
|
catch ( const RuntimeException &e )
|
2002-07-09 14:11:53 +00:00
|
|
|
{
|
2013-03-30 15:34:22 -04:00
|
|
|
SAL_WARN("io.streams","com.sun.star.comp.stoc.Pump: unexpected exception during calling listeners" << e.Message);
|
2002-07-09 14:11:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Pump::fireClose()
|
|
|
|
{
|
|
|
|
sal_Bool bFire = sal_False;
|
|
|
|
{
|
|
|
|
MutexGuard guard( m_aMutex );
|
|
|
|
if( ! m_closeFired )
|
|
|
|
{
|
|
|
|
m_closeFired = sal_True;
|
|
|
|
bFire = sal_True;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( bFire )
|
|
|
|
{
|
|
|
|
OInterfaceIteratorHelper iter( m_cnt );
|
|
|
|
while( iter.hasMoreElements() )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
static_cast< XStreamListener * > ( iter.next() )->closed( );
|
|
|
|
}
|
2011-12-15 13:51:29 +09:00
|
|
|
catch ( const RuntimeException &e )
|
2002-07-09 14:11:53 +00:00
|
|
|
{
|
2013-03-30 15:34:22 -04:00
|
|
|
SAL_WARN("io.streams","com.sun.star.comp.stoc.Pump: unexpected exception during calling listeners" << e.Message);
|
2002-07-09 14:11:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Pump::fireStarted()
|
2000-09-18 16:24:28 +00:00
|
|
|
{
|
2002-07-09 14:11:53 +00:00
|
|
|
OInterfaceIteratorHelper iter( m_cnt );
|
|
|
|
while( iter.hasMoreElements() )
|
2000-09-18 16:24:28 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2002-07-09 14:11:53 +00:00
|
|
|
static_cast< XStreamListener * > ( iter.next() )->started( );
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
2011-12-15 13:51:29 +09:00
|
|
|
catch ( const RuntimeException &e )
|
2000-09-18 16:24:28 +00:00
|
|
|
{
|
2013-03-30 15:34:22 -04:00
|
|
|
SAL_WARN("io.streams","com.sun.star.comp.stoc.Pump: unexpected exception during calling listeners" << e.Message);
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-09 14:11:53 +00:00
|
|
|
void Pump::fireTerminated()
|
|
|
|
{
|
|
|
|
OInterfaceIteratorHelper iter( m_cnt );
|
|
|
|
while( iter.hasMoreElements() )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
static_cast< XStreamListener * > ( iter.next() )->terminated();
|
|
|
|
}
|
2011-12-15 13:51:29 +09:00
|
|
|
catch ( const RuntimeException &e )
|
2002-07-09 14:11:53 +00:00
|
|
|
{
|
2013-03-30 15:34:22 -04:00
|
|
|
SAL_WARN("io.streams","com.sun.star.comp.stoc.Pump: unexpected exception during calling listeners" << e.Message);
|
2002-07-09 14:11:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-09-18 16:24:28 +00:00
|
|
|
void Pump::close()
|
|
|
|
{
|
|
|
|
// close streams and release references
|
2002-07-09 14:11:53 +00:00
|
|
|
Reference< XInputStream > rInput;
|
|
|
|
Reference< XOutputStream > rOutput;
|
|
|
|
{
|
|
|
|
MutexGuard guard( m_aMutex );
|
|
|
|
rInput = m_xInput;
|
|
|
|
m_xInput.clear();
|
|
|
|
|
|
|
|
rOutput = m_xOutput;
|
|
|
|
m_xOutput.clear();
|
|
|
|
m_xSucc.clear();
|
|
|
|
m_xPred.clear();
|
|
|
|
}
|
|
|
|
if( rInput.is() )
|
2000-09-18 16:24:28 +00:00
|
|
|
{
|
2001-01-25 13:04:57 +00:00
|
|
|
try
|
|
|
|
{
|
2002-07-09 14:11:53 +00:00
|
|
|
rInput->closeInput();
|
2001-01-25 13:04:57 +00:00
|
|
|
}
|
2006-06-19 23:18:14 +00:00
|
|
|
catch( Exception & )
|
2001-01-25 13:04:57 +00:00
|
|
|
{
|
|
|
|
// go down calm
|
|
|
|
}
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
2002-07-09 14:11:53 +00:00
|
|
|
if( rOutput.is() )
|
2000-09-18 16:24:28 +00:00
|
|
|
{
|
2001-01-25 13:04:57 +00:00
|
|
|
try
|
|
|
|
{
|
2002-07-09 14:11:53 +00:00
|
|
|
rOutput->closeOutput();
|
2001-01-25 13:04:57 +00:00
|
|
|
}
|
2006-06-19 23:18:14 +00:00
|
|
|
catch( Exception & )
|
2001-01-25 13:04:57 +00:00
|
|
|
{
|
|
|
|
// go down calm
|
|
|
|
}
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Pump::static_run( void* pObject )
|
|
|
|
{
|
|
|
|
((Pump*)pObject)->run();
|
2002-07-09 14:11:53 +00:00
|
|
|
((Pump*)pObject)->release();
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Pump::run()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2002-07-09 14:11:53 +00:00
|
|
|
fireStarted();
|
2000-09-18 16:24:28 +00:00
|
|
|
try
|
|
|
|
{
|
2002-07-09 14:11:53 +00:00
|
|
|
Reference< XInputStream > rInput;
|
|
|
|
Reference< XOutputStream > rOutput;
|
|
|
|
{
|
|
|
|
Guard< Mutex > aGuard( m_aMutex );
|
|
|
|
rInput = m_xInput;
|
|
|
|
rOutput = m_xOutput;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ! rInput.is() )
|
2000-12-04 11:42:47 +00:00
|
|
|
{
|
|
|
|
NotConnectedException exception(
|
2012-11-30 22:00:48 -02:00
|
|
|
OUString("no input stream set") , Reference<XInterface>((OWeakObject*)this) );
|
2000-12-04 11:42:47 +00:00
|
|
|
throw exception;
|
|
|
|
}
|
2000-09-18 16:24:28 +00:00
|
|
|
Sequence< sal_Int8 > aData;
|
2006-06-19 23:18:14 +00:00
|
|
|
while( rInput->readSomeBytes( aData, 65536 ) )
|
2000-09-18 16:24:28 +00:00
|
|
|
{
|
2002-07-09 14:11:53 +00:00
|
|
|
if( ! rOutput.is() )
|
2000-12-04 11:42:47 +00:00
|
|
|
{
|
|
|
|
NotConnectedException exception(
|
2012-11-30 22:00:48 -02:00
|
|
|
OUString("no output stream set") , Reference<XInterface>( (OWeakObject*)this) );
|
2000-12-04 11:42:47 +00:00
|
|
|
throw exception;
|
|
|
|
}
|
2002-07-09 14:11:53 +00:00
|
|
|
rOutput->writeBytes( aData );
|
2000-09-18 16:24:28 +00:00
|
|
|
osl_yieldThread();
|
|
|
|
}
|
|
|
|
}
|
2011-12-15 13:51:29 +09:00
|
|
|
catch ( const IOException & e )
|
2000-09-18 16:24:28 +00:00
|
|
|
{
|
2002-07-09 14:11:53 +00:00
|
|
|
fireError( makeAny( e ) );
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
2011-12-15 13:51:29 +09:00
|
|
|
catch ( const RuntimeException & e )
|
2000-09-18 16:24:28 +00:00
|
|
|
{
|
2002-07-09 14:11:53 +00:00
|
|
|
fireError( makeAny( e ) );
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
2011-12-15 13:51:29 +09:00
|
|
|
catch ( const Exception & e )
|
2000-09-18 16:24:28 +00:00
|
|
|
{
|
2002-07-09 14:11:53 +00:00
|
|
|
fireError( makeAny( e ) );
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
close();
|
2002-07-09 14:11:53 +00:00
|
|
|
fireClose();
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
2011-12-15 13:51:29 +09:00
|
|
|
catch ( const com::sun::star::uno::Exception &e )
|
2000-09-18 16:24:28 +00:00
|
|
|
{
|
|
|
|
// we are the last on the stack.
|
|
|
|
// this is to avoid crashing the program, when e.g. a bridge crashes
|
2013-03-30 15:34:22 -04:00
|
|
|
SAL_WARN("io.streams","com.sun.star.comp.stoc.Pump: unexpected exception during calling listeners" << e.Message);
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XConnectable
|
|
|
|
*/
|
|
|
|
|
|
|
|
void Pump::setPredecessor( const Reference< XConnectable >& xPred ) throw()
|
|
|
|
{
|
|
|
|
Guard< Mutex > aGuard( m_aMutex );
|
|
|
|
m_xPred = xPred;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
|
|
|
Reference< XConnectable > Pump::getPredecessor() throw()
|
|
|
|
{
|
|
|
|
Guard< Mutex > aGuard( m_aMutex );
|
|
|
|
return m_xPred;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
|
|
|
void Pump::setSuccessor( const Reference< XConnectable >& xSucc ) throw()
|
|
|
|
{
|
|
|
|
Guard< Mutex > aGuard( m_aMutex );
|
|
|
|
m_xSucc = xSucc;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
|
|
|
Reference< XConnectable > Pump::getSuccessor() throw()
|
|
|
|
{
|
|
|
|
Guard< Mutex > aGuard( m_aMutex );
|
|
|
|
return m_xSucc;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XActiveDataControl
|
|
|
|
*/
|
|
|
|
|
|
|
|
void Pump::addListener( const Reference< XStreamListener >& xListener ) throw()
|
|
|
|
{
|
2002-07-09 14:11:53 +00:00
|
|
|
m_cnt.addInterface( xListener );
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
|
|
|
void Pump::removeListener( const Reference< XStreamListener >& xListener ) throw()
|
|
|
|
{
|
2002-07-09 14:11:53 +00:00
|
|
|
m_cnt.removeInterface( xListener );
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
2002-07-09 14:11:53 +00:00
|
|
|
void Pump::start() throw( RuntimeException )
|
2000-09-18 16:24:28 +00:00
|
|
|
{
|
|
|
|
Guard< Mutex > aGuard( m_aMutex );
|
2002-07-09 14:11:53 +00:00
|
|
|
m_aThread = osl_createSuspendedThread((oslWorkerFunction)Pump::static_run,this);
|
|
|
|
if( m_aThread )
|
|
|
|
{
|
|
|
|
// will be released by OPump::static_run
|
|
|
|
acquire();
|
|
|
|
osl_resumeThread( m_aThread );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw RuntimeException(
|
2012-11-30 22:00:48 -02:00
|
|
|
OUString("Pump::start Couldn't create worker thread"),
|
2002-07-09 14:11:53 +00:00
|
|
|
*this);
|
|
|
|
}
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
|
|
|
void Pump::terminate() throw()
|
|
|
|
{
|
2001-01-25 13:04:57 +00:00
|
|
|
close();
|
|
|
|
|
|
|
|
// wait for the worker to die
|
2002-07-09 14:11:53 +00:00
|
|
|
if( m_aThread )
|
|
|
|
osl_joinWithThread( m_aThread );
|
2000-09-18 16:24:28 +00:00
|
|
|
|
2002-07-09 14:11:53 +00:00
|
|
|
fireTerminated();
|
|
|
|
fireClose();
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XActiveDataSink
|
|
|
|
*/
|
|
|
|
|
|
|
|
void Pump::setInputStream( const Reference< XInputStream >& xStream ) throw()
|
|
|
|
{
|
|
|
|
Guard< Mutex > aGuard( m_aMutex );
|
|
|
|
m_xInput = xStream;
|
|
|
|
Reference< XConnectable > xConnect( xStream, UNO_QUERY );
|
|
|
|
if( xConnect.is() )
|
|
|
|
xConnect->setSuccessor( this );
|
|
|
|
// data transfer starts in XActiveDataControl::start
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
|
|
|
Reference< XInputStream > Pump::getInputStream() throw()
|
|
|
|
{
|
|
|
|
Guard< Mutex > aGuard( m_aMutex );
|
|
|
|
return m_xInput;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XActiveDataSource
|
|
|
|
*/
|
|
|
|
|
|
|
|
void Pump::setOutputStream( const Reference< XOutputStream >& xOut ) throw()
|
|
|
|
{
|
|
|
|
Guard< Mutex > aGuard( m_aMutex );
|
|
|
|
m_xOutput = xOut;
|
|
|
|
Reference< XConnectable > xConnect( xOut, UNO_QUERY );
|
|
|
|
if( xConnect.is() )
|
|
|
|
xConnect->setPredecessor( this );
|
|
|
|
// data transfer starts in XActiveDataControl::start
|
|
|
|
}
|
|
|
|
|
|
|
|
Reference< XOutputStream > Pump::getOutputStream() throw()
|
|
|
|
{
|
|
|
|
Guard< Mutex > aGuard( m_aMutex );
|
|
|
|
return m_xOutput;
|
|
|
|
}
|
|
|
|
|
2001-03-20 08:04:37 +00:00
|
|
|
// XServiceInfo
|
|
|
|
OUString Pump::getImplementationName() throw( )
|
|
|
|
{
|
|
|
|
return OPumpImpl_getImplementationName();
|
|
|
|
}
|
|
|
|
|
|
|
|
// XServiceInfo
|
|
|
|
sal_Bool Pump::supportsService(const OUString& ServiceName) throw( )
|
|
|
|
{
|
2013-12-05 12:53:35 -02:00
|
|
|
return cppu::supportsService(this, ServiceName);
|
2001-03-20 08:04:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// XServiceInfo
|
|
|
|
Sequence< OUString > Pump::getSupportedServiceNames(void) throw( )
|
|
|
|
{
|
|
|
|
return OPumpImpl_getSupportedServiceNames();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-21 15:21:16 +01:00
|
|
|
Reference< XInterface > SAL_CALL OPumpImpl_CreateInstance(
|
|
|
|
SAL_UNUSED_PARAMETER const Reference< XComponentContext > & )
|
|
|
|
throw (Exception)
|
2000-09-18 16:24:28 +00:00
|
|
|
{
|
|
|
|
return Reference< XInterface >( *new Pump );
|
|
|
|
}
|
|
|
|
|
|
|
|
OUString OPumpImpl_getImplementationName()
|
|
|
|
{
|
2012-11-30 22:00:48 -02:00
|
|
|
return OUString("com.sun.star.comp.io.Pump");
|
2000-09-18 16:24:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Sequence<OUString> OPumpImpl_getSupportedServiceNames(void)
|
|
|
|
{
|
2012-11-30 22:00:48 -02:00
|
|
|
OUString s("com.sun.star.io.Pump");
|
2000-09-18 16:24:28 +00:00
|
|
|
Sequence< OUString > seq( &s , 1 );
|
|
|
|
return seq;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-10-14 08:30:07 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|