/************************************************************************* * * $RCSfile: helper.hxx,v $ * * $Revision: 1.1.1.1 $ * * last change: $Author: mt $ $Date: 2004-07-12 13:15:25 $ * * 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 /*#include */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace ::rtl ; using namespace ::cppu ; using namespace ::com::sun::star ; using namespace ::com::sun::star::uno ; using namespace ::com::sun::star::io ; using namespace ::com::sun::star::ucb ; using namespace ::com::sun::star::beans ; using namespace ::com::sun::star::document ; using namespace ::com::sun::star::lang ; using namespace ::com::sun::star::bridge ; using namespace ::com::sun::star::registry ; using namespace ::com::sun::star::task ; using namespace ::com::sun::star::xml ; using namespace ::com::sun::star::xml::wrapper ; using namespace ::com::sun::star::xml::sax ; /** * Helper: Implementation of XInputStream */ class OInputStream : public WeakImplHelper1 < XInputStream > { public: OInputStream( const Sequence< sal_Int8 >&seq ) : m_seq( seq ), nPos( 0 ) {} virtual sal_Int32 SAL_CALL readBytes( Sequence< sal_Int8 >& aData , sal_Int32 nBytesToRead ) throw( NotConnectedException, BufferSizeExceededException, IOException, RuntimeException ) { nBytesToRead = ( nBytesToRead > m_seq.getLength() - nPos ) ? m_seq.getLength() - nPos : nBytesToRead ; aData = Sequence< sal_Int8 > ( &( m_seq.getConstArray()[nPos] ), nBytesToRead ) ; nPos += nBytesToRead ; return nBytesToRead ; } virtual sal_Int32 SAL_CALL readSomeBytes( ::com::sun::star::uno::Sequence< sal_Int8 >& aData , sal_Int32 nMaxBytesToRead ) throw( NotConnectedException, BufferSizeExceededException, IOException, RuntimeException ) { return readBytes( aData, nMaxBytesToRead ) ; } virtual void SAL_CALL skipBytes( sal_Int32 nBytesToSkip ) throw( NotConnectedException, BufferSizeExceededException, IOException, RuntimeException ) { // not implemented } virtual sal_Int32 SAL_CALL available( void ) throw( NotConnectedException, IOException, RuntimeException ) { return m_seq.getLength() - nPos ; } virtual void SAL_CALL closeInput( void ) throw( NotConnectedException, IOException, RuntimeException ) { // not needed } private: sal_Int32 nPos; Sequence< sal_Int8> m_seq; } ; /** * Helper : create a input stream from a file */ Reference< XInputStream > createStreamFromFile( const OUString sFile ) ; /** * Helper: Implementation of XOutputStream */ class OOutputStream : public WeakImplHelper1 < XOutputStream > { public: OOutputStream( const char *pcFile ) { strcpy( m_pcFile , pcFile ) ; m_f = 0 ; } virtual void SAL_CALL writeBytes( const Sequence< sal_Int8 >& aData ) throw( NotConnectedException , BufferSizeExceededException , RuntimeException ) { if( !m_f ) { m_f = fopen( m_pcFile , "w" ) ; } fwrite( aData.getConstArray() , 1 , aData.getLength() , m_f ) ; } virtual void SAL_CALL flush( void ) throw( NotConnectedException , BufferSizeExceededException , RuntimeException ) { fflush( m_f ) ; } virtual void SAL_CALL closeOutput( void ) throw( NotConnectedException , BufferSizeExceededException , RuntimeException ) { fclose( m_f ) ; m_f = 0 ; } private: char m_pcFile[256]; FILE *m_f; } ; /** * Helper: Implementation of XUriBinding */ class OUriBinding : public WeakImplHelper1 < ::com::sun::star::xml::crypto::XUriBinding > { public: OUriBinding() { //Do nothing } OUriBinding( ::rtl::OUString& aUri, ::com::sun::star::uno::Reference< com::sun::star::io::XInputStream >& aInputStream ) { m_vUris.push_back( aUri ) ; m_vStreams.push_back( aInputStream ) ; } virtual void SAL_CALL setUriBinding( const ::rtl::OUString& aUri , const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& aInputStream ) throw( ::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException ) { m_vUris.push_back( aUri ) ; m_vStreams.push_back( aInputStream ) ; } virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > SAL_CALL getUriBinding( const ::rtl::OUString& uri ) throw( ::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException ) { ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > xInputStream ; int size = m_vUris.size() ; for( int i = 0 ; i m_vUris ; std::vector< ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > > m_vStreams ; } ; /** * Helper : set a output stream to a file */ Reference< XOutputStream > createStreamToFile( const OUString sFile ) ; /** * Helper : get service manager and context */ Reference< XMultiComponentFactory > serviceManager( Reference< XComponentContext >& xContext , OUString sUnoUrl , OUString sRdbUrl ) throw( RuntimeException , Exception ) ; /** * Helper : Get password function for PKCS11 slot */ char* PriPK11PasswordFunc( PK11SlotInfo *slot , PRBool retry , void* arg ) ;