blob: 5dcdd1977c67b3de4daa24669506d049f30c9480 [file] [log] [blame]
/**************************************************************
*
* 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
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
package com.sun.star.lib.uno.helper;
import com.sun.star.uno.XComponentContext;
import com.sun.star.uno.Type;
import com.sun.star.uno.AnyConverter;
import com.sun.star.lang.XServiceInfo;
import com.sun.star.lang.XSingleComponentFactory;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.lang.XComponent;
import com.sun.star.beans.XPropertySet;
import com.sun.star.registry.XRegistryKey;
import com.sun.star.registry.XSimpleRegistry;
import com.sun.star.registry.XImplementationRegistration;
import com.sun.star.container.XSet;
import com.sun.star.lib.uno.helper.Factory;
import com.sun.star.comp.helper.Bootstrap;
import com.sun.star.comp.helper.RegistryServiceFactory;
import com.sun.star.uno.UnoRuntime;
//==================================================================================================
public class Factory_Test
extends WeakBase
implements XServiceInfo
{
static final String m_impl_name = Factory_Test.class.getName();
static final String m_supported_services [] = {
"Factory_Test.Service0", "Factory_Test.Service1" };
//______________________________________________________________________________________________
public Factory_Test()
{
}
//______________________________________________________________________________________________
public Factory_Test( XComponentContext xContext )
throws com.sun.star.uno.Exception
{
if (null == xContext.getValueByName( "/singletons/com.sun.star.lang.theServiceManager" ))
{
throw new com.sun.star.uno.RuntimeException(
"bad component context given!", this );
}
}
//______________________________________________________________________________________________
public static Object __create( XComponentContext xContext )
throws com.sun.star.uno.Exception
{
return new Factory_Test( xContext );
}
// XServiceInfo impl
//______________________________________________________________________________________________
public final String getImplementationName()
{
return m_impl_name;
}
//______________________________________________________________________________________________
public final boolean supportsService( String service_name )
{
for ( int nPos = 0; nPos < m_supported_services.length; ++nPos )
{
if (m_supported_services[ nPos ].equals( service_name ))
return true;
}
return false;
}
//______________________________________________________________________________________________
public final String [] getSupportedServiceNames()
{
return m_supported_services;
}
//==============================================================================================
public static XSingleComponentFactory __getComponentFactory( String implName )
{
if (implName.equals( m_impl_name ))
{
return Factory.createComponentFactory(
Factory_Test.class, Factory_Test.m_supported_services );
}
return null;
}
//==============================================================================================
public static boolean __writeRegistryServiceInfo( XRegistryKey xKey )
{
return Factory.writeRegistryServiceInfo(
m_impl_name, Factory_Test.m_supported_services, xKey );
}
//==============================================================================================
static void service_info_test( Object inst )
{
XServiceInfo xInfo = UnoRuntime.queryInterface( XServiceInfo.class, inst );
if (! xInfo.getImplementationName().equals( m_impl_name ))
{
System.err.println( "Factory_Test: err -- 1" );
System.exit( 1 );
}
String supported_services [] = xInfo.getSupportedServiceNames();
if (supported_services.length != m_supported_services.length)
{
System.err.println( "Factory_Test: err -- 2" );
System.exit( 1 );
}
for ( int nPos = 0; nPos < supported_services.length; ++nPos )
{
if (! supported_services[ nPos ].equals( m_supported_services[ nPos ] ))
{
System.err.println( "Factory_Test: err -- 3" );
System.exit( 1 );
}
if (! xInfo.supportsService( m_supported_services[ nPos ] ))
{
System.err.println( "Factory_Test: err -- 4" );
System.exit( 1 );
}
}
}
//==============================================================================================
public static void main( String args [] )
{
try
{
String jar = "file://" + new java.io.File( args[ 0 ] ).toURL().getPath();
String rdb = "file://" + new java.io.File( args[ 1 ] ).toURL().getPath();
System.out.println( "jar file = " + jar );
System.out.println( "rdb file = " + rdb );
// bootstrap service manager
XMultiServiceFactory xMgr = RegistryServiceFactory.create( rdb );
XPropertySet xProps = UnoRuntime.queryInterface(
XPropertySet.class, xMgr );
XComponentContext xContext = (XComponentContext)AnyConverter.toObject(
new Type( XComponentContext.class ), xProps.getPropertyValue( "DefaultContext" ) );
// insert java loader
XSet xSet = (XSet)AnyConverter.toObject(
new Type( XSet.class ), xContext.getServiceManager() );
xSet.insert( new com.sun.star.comp.loader.JavaLoaderFactory( xMgr ) );
// get rdb of smgr
XSimpleRegistry xRDB = (XSimpleRegistry)AnyConverter.toObject(
new Type( XSimpleRegistry.class ), xProps.getPropertyValue( "Registry" ) );
// register impl
XImplementationRegistration xImpReg =
UnoRuntime.queryInterface(
XImplementationRegistration.class,
xContext.getServiceManager().createInstanceWithContext(
"com.sun.star.registry.ImplementationRegistration", xContext ) );
xImpReg.registerImplementation( "com.sun.star.loader.Java2", jar, xRDB );
// tests
System.out.println( "testing instance" );
service_info_test( new Factory_Test() );
System.out.println( "testing instance" );
service_info_test( new Factory_Test( xContext ) );
System.out.println( "testing instance" );
service_info_test( Factory_Test.__create( xContext ) );
System.out.println( "testing factory __getComponentFactory()" );
service_info_test( __getComponentFactory( m_impl_name ) );
for ( int nPos = 0; nPos < m_supported_services.length; ++nPos )
{
System.out.println( "testing factory " + m_supported_services[ nPos ] );
service_info_test(
// create Service
xContext.getServiceManager().createInstanceWithContext(
m_supported_services[ nPos ], xContext ) );
}
XComponent xComp = UnoRuntime.queryInterface( XComponent.class, xContext );
xComp.dispose();
}
catch (Exception exc)
{
System.err.println( ">>>>>>>>>> exc occured: " + exc.toString() );
exc.printStackTrace();
}
System.exit( 0 );
}
}