297 lines
12 KiB
C++
297 lines
12 KiB
C++
/*************************************************************************
|
|
*
|
|
* $RCSfile: helper.cxx,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 "helper.hxx"
|
|
#include "osl/diagnose.h"
|
|
#include "rtl/ustring.h"
|
|
/*#include "libxml/xmlstring.h"
|
|
*/
|
|
|
|
/*-
|
|
* Helper : create a input stream from a file
|
|
*/
|
|
Reference< XInputStream > createStreamFromFile( const OUString sFile )
|
|
{
|
|
const sal_Char* pcFile ;
|
|
OString aString ;
|
|
|
|
aString = OUStringToOString( sFile , RTL_TEXTENCODING_ASCII_US ) ;
|
|
pcFile = aString.getStr() ;
|
|
if( pcFile != NULL ) {
|
|
FILE *f = fopen( pcFile , "rb" );
|
|
Reference< XInputStream > r;
|
|
|
|
if( f ) {
|
|
fseek( f , 0 , SEEK_END );
|
|
int nLength = ftell( f );
|
|
fseek( f , 0 , SEEK_SET );
|
|
|
|
Sequence<sal_Int8> seqIn(nLength);
|
|
fread( seqIn.getArray() , nLength , 1 , f );
|
|
|
|
r = Reference< XInputStream > ( new OInputStream( seqIn ) );
|
|
fclose( f );
|
|
}
|
|
return r;
|
|
} else {
|
|
return NULL ;
|
|
}
|
|
|
|
return NULL ;
|
|
}
|
|
|
|
/*-
|
|
* Helper : set a output stream to a file
|
|
*/
|
|
Reference< XOutputStream > createStreamToFile( const OUString sFile )
|
|
{
|
|
const sal_Char* pcFile ;
|
|
OString aString ;
|
|
|
|
aString = OUStringToOString( sFile , RTL_TEXTENCODING_ASCII_US ) ;
|
|
pcFile = aString.getStr() ;
|
|
if( pcFile != NULL )
|
|
return Reference< XOutputStream >( new OOutputStream( pcFile ) ) ;
|
|
else
|
|
return NULL ;
|
|
}
|
|
|
|
/*-
|
|
* Helper : get service manager and context
|
|
*/
|
|
Reference< XMultiComponentFactory > serviceManager( Reference< XComponentContext >& xContext , OUString sUnoUrl , OUString sRdbUrl ) throw( RuntimeException , Exception )
|
|
{
|
|
Reference< XMultiComponentFactory > xLocalServiceManager = NULL ;
|
|
Reference< XComponentContext > xLocalComponentContext = NULL ;
|
|
Reference< XMultiComponentFactory > xUsedServiceManager = NULL ;
|
|
Reference< XComponentContext > xUsedComponentContext = NULL ;
|
|
|
|
OSL_ENSURE( !sUnoUrl.equalsAscii( "" ) ,
|
|
"serviceManager - "
|
|
"No uno URI specified" ) ;
|
|
|
|
OSL_ENSURE( !sRdbUrl.equalsAscii( "" ) ,
|
|
"serviceManager - "
|
|
"No rdb URI specified" ) ;
|
|
|
|
if( sUnoUrl.equalsAscii( "local" ) ) {
|
|
Reference< XSimpleRegistry > xSimpleRegistry = createSimpleRegistry();
|
|
OSL_ENSURE( xSimpleRegistry.is() ,
|
|
"serviceManager - "
|
|
"Cannot create simple registry" ) ;
|
|
|
|
//xSimpleRegistry->open(OUString::createFromAscii("xmlsecurity.rdb"), sal_False, sal_False);
|
|
xSimpleRegistry->open(sRdbUrl, sal_True, sal_False);
|
|
OSL_ENSURE( xSimpleRegistry->isValid() ,
|
|
"serviceManager - "
|
|
"Cannot open xml security registry rdb" ) ;
|
|
|
|
xLocalComponentContext = bootstrap_InitialComponentContext( xSimpleRegistry ) ;
|
|
OSL_ENSURE( xLocalComponentContext.is() ,
|
|
"serviceManager - "
|
|
"Cannot create intial component context" ) ;
|
|
|
|
xLocalServiceManager = xLocalComponentContext->getServiceManager() ;
|
|
OSL_ENSURE( xLocalServiceManager.is() ,
|
|
"serviceManager - "
|
|
"Cannot create intial service manager" ) ;
|
|
|
|
/*-
|
|
* Because of the exception rasied from
|
|
* ucbhelper/source/provider/provconf.cxx, lin 323
|
|
* I do not use the content broker at present
|
|
********************************************************************
|
|
//init ucb
|
|
if( ::ucb::ContentBroker::get() == NULL ) {
|
|
Reference< lang::XMultiServiceFactory > xSvmg( xLocalServiceManager , UNO_QUERY ) ;
|
|
OSL_ENSURE( xLocalServiceManager.is() ,
|
|
"serviceManager - "
|
|
"Cannot get multi-service factory" ) ;
|
|
|
|
Sequence< Any > args( 2 ) ;
|
|
args[ 0 ] <<= OUString::createFromAscii( UCB_CONFIGURATION_KEY1_LOCAL ) ;
|
|
args[ 1 ] <<= OUString::createFromAscii( UCB_CONFIGURATION_KEY2_OFFICE ) ;
|
|
if( ! ::ucb::ContentBroker::initialize( xSvmg , args ) ) {
|
|
throw RuntimeException( OUString::createFromAscii( "Cannot inlitialize ContentBroker" ) , Reference< XInterface >() , Any() ) ;
|
|
}
|
|
}
|
|
********************************************************************/
|
|
|
|
xUsedComponentContext = xLocalComponentContext ;
|
|
xUsedServiceManager = xLocalServiceManager ;
|
|
} else {
|
|
Reference< XComponentContext > xLocalComponentContext = defaultBootstrap_InitialComponentContext() ;
|
|
OSL_ENSURE( xLocalComponentContext.is() ,
|
|
"serviceManager - "
|
|
"Cannot create intial component context" ) ;
|
|
|
|
Reference< XMultiComponentFactory > xLocalServiceManager = xLocalComponentContext->getServiceManager();
|
|
OSL_ENSURE( xLocalServiceManager.is() ,
|
|
"serviceManager - "
|
|
"Cannot create intial service manager" ) ;
|
|
|
|
Reference< XInterface > urlResolver =
|
|
xLocalServiceManager->createInstanceWithContext( OUString::createFromAscii("com.sun.star.bridge.UnoUrlResolver") , xLocalComponentContext ) ;
|
|
OSL_ENSURE( urlResolver.is() ,
|
|
"serviceManager - "
|
|
"Cannot get service instance of \"bridge.UnoUrlResolver\"" ) ;
|
|
|
|
Reference< XUnoUrlResolver > xUnoUrlResolver( urlResolver , UNO_QUERY ) ;
|
|
OSL_ENSURE( xUnoUrlResolver.is() ,
|
|
"serviceManager - "
|
|
"Cannot get interface of \"XUnoUrlResolver\" from service \"bridge.UnoUrlResolver\"" ) ;
|
|
|
|
Reference< XInterface > initialObject = xUnoUrlResolver->resolve( sUnoUrl ) ;
|
|
OSL_ENSURE( initialObject.is() ,
|
|
"serviceManager - "
|
|
"Cannot resolve uno url" ) ;
|
|
|
|
/*-
|
|
* Method 1: with Naming Service
|
|
********************************************************************
|
|
Reference< XNamingService > xNamingService( initialObject , UNO_QUERY ) ;
|
|
OSL_ENSURE( xNamingService.is() ,
|
|
"serviceManager - "
|
|
"Cannot get interface of \"XNamingService\" from URL resolver" ) ;
|
|
|
|
Reference< XInterface > serviceManager =
|
|
xNamingService->getRegisteredObject( OUString::createFromAscii( "StarOffice.ServiceManager" ) ) ;
|
|
OSL_ENSURE( serviceManager.is() ,
|
|
"serviceManager - "
|
|
"Cannot get service instance of \"StarOffice.ServiceManager\"" ) ;
|
|
|
|
xUsedServiceManager = Reference< XMultiComponentFactory >( serviceManager , UNO_QUERY );
|
|
OSL_ENSURE( xUsedServiceManager.is() ,
|
|
"serviceManager - "
|
|
"Cannot get interface of \"XMultiComponentFactory\" from service \"StarOffice.ServiceManager\"" ) ;
|
|
|
|
Reference< XPropertySet > xPropSet( xUsedServiceManager , UNO_QUERY ) ;
|
|
OSL_ENSURE( xPropSet.is() ,
|
|
"serviceManager - "
|
|
"Cannot get interface of \"XPropertySet\" from service \"StarOffice.ServiceManager\"" ) ;
|
|
|
|
xPropSet->getPropertyValue( OUString::createFromAscii( "DefaultContext" ) ) >>= xUsedComponentContext ;
|
|
OSL_ENSURE( xUsedComponentContext.is() ,
|
|
"serviceManager - "
|
|
"Cannot create remote component context" ) ;
|
|
|
|
********************************************************************/
|
|
|
|
/*-
|
|
* Method 2: with Componnent context
|
|
********************************************************************
|
|
Reference< XPropertySet > xPropSet( initialObject , UNO_QUERY ) ;
|
|
OSL_ENSURE( xPropSet.is() ,
|
|
"serviceManager - "
|
|
"Cannot get interface of \"XPropertySet\" from URL resolver" ) ;
|
|
|
|
xPropSet->getPropertyValue( OUString::createFromAscii( "DefaultContext" ) ) >>= xUsedComponentContext ;
|
|
OSL_ENSURE( xUsedComponentContext.is() ,
|
|
"serviceManager - "
|
|
"Cannot create remote component context" ) ;
|
|
|
|
xUsedServiceManager = xUsedComponentContext->getServiceManager();
|
|
OSL_ENSURE( xUsedServiceManager.is() ,
|
|
"serviceManager - "
|
|
"Cannot create remote service manager" ) ;
|
|
********************************************************************/
|
|
|
|
/*-
|
|
* Method 3: with Service Manager
|
|
********************************************************************/
|
|
xUsedServiceManager = Reference< XMultiComponentFactory >( initialObject , UNO_QUERY );
|
|
OSL_ENSURE( xUsedServiceManager.is() ,
|
|
"serviceManager - "
|
|
"Cannot create remote service manager" ) ;
|
|
|
|
Reference< XPropertySet > xPropSet( xUsedServiceManager , UNO_QUERY ) ;
|
|
OSL_ENSURE( xPropSet.is() ,
|
|
"serviceManager - "
|
|
"Cannot get interface of \"XPropertySet\" from service \"StarOffice.ServiceManager\"" ) ;
|
|
|
|
xPropSet->getPropertyValue( OUString::createFromAscii( "DefaultContext" ) ) >>= xUsedComponentContext ;
|
|
OSL_ENSURE( xUsedComponentContext.is() ,
|
|
"serviceManager - "
|
|
"Cannot create remote component context" ) ;
|
|
/********************************************************************/
|
|
}
|
|
|
|
xContext = xUsedComponentContext ;
|
|
return xUsedServiceManager ;
|
|
}
|
|
|
|
char* PriPK11PasswordFunc(
|
|
PK11SlotInfo *slot ,
|
|
PRBool retry ,
|
|
void* arg
|
|
) {
|
|
char* passwd = NULL ;
|
|
|
|
if( retry != PR_TRUE ) {
|
|
passwd = ( char* )PORT_Alloc( 20 ) ;
|
|
printf( "Input Password:\n" ) ;
|
|
scanf( "%s" , passwd ) ;
|
|
printf( "The passwod is [%s]\n" , passwd ) ;
|
|
}
|
|
|
|
return passwd ;
|
|
}
|
|
|