/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: _XInvocationAdapterFactory2.java,v $
*
* $Revision: 1.4 $
*
* last change: $Author: rt $ $Date: 2005-09-09 00:23:40 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 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
*
************************************************************************/
package ifc.script;
import lib.MultiMethodTest;
import lib.StatusException;
import com.sun.star.io.XInputStream;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.lang.XSingleServiceFactory;
import com.sun.star.script.XInvocation;
import com.sun.star.script.XInvocationAdapterFactory2;
import com.sun.star.uno.Type;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XInterface;
/**
* Testing com.sun.star.script.XInvocationAdapterFactory
* interface methods :
*
createAdapter()* Test is NOT multithread compilant.
* @see com.sun.star.script.XInvocationAdapterFactory
*/
public class _XInvocationAdapterFactory2 extends MultiMethodTest {
/**
* oObj filled by MultiMethodTest
*/
public XInvocationAdapterFactory2 oObj = null;
/**
* First an invocation object of com.sun.star.io.Pipe
* instance is created using com.sun.star.script.Invocation
* service. Then trying to create an adapter of this
* invocation for com.sun.star.io.XInputStream
* interface.
* Has OK status if the adapter returned is successfully
* queried for com.sun.star.io.XInputStream
* interface.
* @see com.sun.star.script.Invocation
* @see com.sun.star.script.XInvocation
* @see com.sun.star.io.Pipe
*/
public void _createAdapter() {
XInvocation xInv = null ;
XMultiServiceFactory xMSF = null;
try {
xMSF = (XMultiServiceFactory)tParam.getMSF();
Object[] args = {xMSF.createInstance
("com.sun.star.io.Pipe")};
Object oInvFac = xMSF.createInstance
("com.sun.star.script.Invocation") ;
XSingleServiceFactory xInvFac = (XSingleServiceFactory) UnoRuntime.
queryInterface(XSingleServiceFactory.class, oInvFac) ;
Object oInv = xInvFac.createInstanceWithArguments(args) ;
xInv = (XInvocation) UnoRuntime.queryInterface
(XInvocation.class, oInv) ;
} catch (com.sun.star.uno.Exception e) {
e.printStackTrace(log) ;
throw new StatusException("Cann't create invocation for object", e) ;
}
XInterface xInStr = null ;
Type[] types = new Type[1];
types[0] = new Type(XInputStream.class);
Object adp = oObj.createAdapter(xInv,types);
xInStr = (XInterface) UnoRuntime.queryInterface
(XInputStream.class, adp) ;
if (xInStr != null)
tRes.tested("createAdapter()", true) ;
else {
log.println("Adapter created doesn't implement required interface") ;
tRes.tested("createAdapter()", false) ;
}
}
}