2010-10-14 08:30:07 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2003-03-23 11:12:59 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 09:33:22 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2003-03-23 11:12:59 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2003-03-23 11:12:59 +00:00
|
|
|
*
|
2008-04-11 09:33:22 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2003-03-23 11:12:59 +00:00
|
|
|
*
|
2008-04-11 09:33:22 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2003-03-23 11:12:59 +00:00
|
|
|
*
|
2008-04-11 09:33:22 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2003-03-23 11:12:59 +00:00
|
|
|
*
|
2008-04-11 09:33:22 +00:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2003-03-23 11:12:59 +00:00
|
|
|
*
|
2008-04-11 09:33:22 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2003-03-23 11:12:59 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#include "pyuno_impl.hxx"
|
|
|
|
|
|
|
|
#include <osl/thread.h>
|
|
|
|
#include <rtl/ustrbuf.hxx>
|
|
|
|
|
|
|
|
using rtl::OUStringToOString;
|
|
|
|
using rtl::OUString;
|
|
|
|
using com::sun::star::uno::Sequence;
|
|
|
|
using com::sun::star::uno::Reference;
|
|
|
|
using com::sun::star::uno::XInterface;
|
|
|
|
using com::sun::star::uno::Any;
|
|
|
|
using com::sun::star::uno::Type;
|
|
|
|
using com::sun::star::uno::TypeClass;
|
|
|
|
using com::sun::star::uno::RuntimeException;
|
|
|
|
using com::sun::star::uno::XComponentContext;
|
|
|
|
using com::sun::star::lang::XSingleServiceFactory;
|
|
|
|
using com::sun::star::script::XTypeConverter;
|
|
|
|
using com::sun::star::script::XInvocation2;
|
|
|
|
|
|
|
|
namespace pyuno
|
|
|
|
{
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
Reference<XInvocation2> xInvocation;
|
|
|
|
Reference<XSingleServiceFactory> xInvocationFactory;
|
|
|
|
Reference<XTypeConverter> xTypeConverter;
|
|
|
|
OUString methodName;
|
2003-05-24 22:28:33 +00:00
|
|
|
ConversionMode mode;
|
2003-03-23 11:12:59 +00:00
|
|
|
} PyUNO_callable_Internals;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
PyObject_HEAD
|
|
|
|
PyUNO_callable_Internals* members;
|
|
|
|
} PyUNO_callable;
|
|
|
|
|
|
|
|
void PyUNO_callable_del (PyObject* self)
|
|
|
|
{
|
|
|
|
PyUNO_callable* me;
|
|
|
|
|
|
|
|
me = (PyUNO_callable*) self;
|
|
|
|
delete me->members;
|
2006-11-14 17:21:35 +00:00
|
|
|
PyObject_Del (self);
|
2003-03-23 11:12:59 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-06-20 04:03:27 +00:00
|
|
|
PyObject* PyUNO_callable_call (PyObject* self, PyObject* args, PyObject*)
|
2003-03-23 11:12:59 +00:00
|
|
|
{
|
|
|
|
PyUNO_callable* me;
|
|
|
|
|
|
|
|
Sequence<short> aOutParamIndex;
|
|
|
|
Sequence<Any> aOutParam;
|
|
|
|
Sequence<Any> aParams;
|
|
|
|
Sequence<Type> aParamTypes;
|
|
|
|
Any any_params;
|
|
|
|
Any out_params;
|
|
|
|
Any ret_value;
|
2006-03-22 09:49:10 +00:00
|
|
|
RuntimeCargo *cargo = 0;
|
2003-03-23 11:12:59 +00:00
|
|
|
me = (PyUNO_callable*) self;
|
|
|
|
|
|
|
|
PyRef ret;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Runtime runtime;
|
2006-03-22 09:49:10 +00:00
|
|
|
cargo = runtime.getImpl()->cargo;
|
2003-05-24 22:28:33 +00:00
|
|
|
any_params = runtime.pyObject2Any (args, me->members->mode);
|
2003-03-23 11:12:59 +00:00
|
|
|
|
|
|
|
if (any_params.getValueTypeClass () == com::sun::star::uno::TypeClass_SEQUENCE)
|
|
|
|
{
|
|
|
|
any_params >>= aParams;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
aParams.realloc (1);
|
|
|
|
aParams [0] <<= any_params;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2006-03-22 09:49:10 +00:00
|
|
|
PyThreadDetach antiguard; //pyhton free zone
|
|
|
|
|
|
|
|
// do some logging if desired ...
|
|
|
|
if( isLog( cargo, LogLevel::CALL ) )
|
|
|
|
{
|
2006-06-20 04:03:27 +00:00
|
|
|
logCall( cargo, "try py->uno[0x", me->members->xInvocation.get(),
|
2006-03-22 09:49:10 +00:00
|
|
|
me->members->methodName, aParams );
|
|
|
|
}
|
|
|
|
|
|
|
|
// do the call
|
2003-03-23 11:12:59 +00:00
|
|
|
ret_value = me->members->xInvocation->invoke (
|
|
|
|
me->members->methodName, aParams, aOutParamIndex, aOutParam);
|
2006-03-22 09:49:10 +00:00
|
|
|
|
|
|
|
// log the reply, if desired
|
|
|
|
if( isLog( cargo, LogLevel::CALL ) )
|
|
|
|
{
|
2006-06-20 04:03:27 +00:00
|
|
|
logReply( cargo, "success py->uno[0x", me->members->xInvocation.get(),
|
2006-03-22 09:49:10 +00:00
|
|
|
me->members->methodName, ret_value, aOutParam);
|
|
|
|
}
|
2003-03-23 11:12:59 +00:00
|
|
|
}
|
|
|
|
|
2006-03-22 09:49:10 +00:00
|
|
|
|
2003-03-23 11:12:59 +00:00
|
|
|
PyRef temp = runtime.any2PyObject (ret_value);
|
|
|
|
if( aOutParam.getLength() )
|
|
|
|
{
|
|
|
|
PyRef return_list( PyTuple_New (1+aOutParam.getLength()), SAL_NO_ACQUIRE );
|
|
|
|
PyTuple_SetItem (return_list.get(), 0, temp.getAcquired());
|
|
|
|
|
|
|
|
// initialize with defaults in case of exceptions
|
|
|
|
int i;
|
|
|
|
for( i = 1 ; i < 1+aOutParam.getLength() ; i ++ )
|
2003-08-18 14:01:22 +00:00
|
|
|
{
|
|
|
|
Py_INCREF( Py_None );
|
2003-03-23 11:12:59 +00:00
|
|
|
PyTuple_SetItem( return_list.get() , i , Py_None );
|
2003-08-18 14:01:22 +00:00
|
|
|
}
|
2003-03-23 11:12:59 +00:00
|
|
|
|
|
|
|
for( i = 0 ; i < aOutParam.getLength() ; i ++ )
|
|
|
|
{
|
|
|
|
PyRef ref = runtime.any2PyObject( aOutParam[i] );
|
|
|
|
PyTuple_SetItem (return_list.get(), 1+i, ref.getAcquired());
|
|
|
|
}
|
|
|
|
ret = return_list;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = temp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch( com::sun::star::reflection::InvocationTargetException & e )
|
|
|
|
{
|
2006-03-22 09:49:10 +00:00
|
|
|
|
|
|
|
if( isLog( cargo, LogLevel::CALL ) )
|
|
|
|
{
|
2006-06-20 04:03:27 +00:00
|
|
|
logException( cargo, "except py->uno[0x", me->members->xInvocation.get() ,
|
2006-03-22 09:49:10 +00:00
|
|
|
me->members->methodName, e.TargetException.getValue(), e.TargetException.getValueTypeRef());
|
|
|
|
}
|
2003-03-23 11:12:59 +00:00
|
|
|
raisePyExceptionWithAny( e.TargetException );
|
|
|
|
}
|
|
|
|
catch( com::sun::star::script::CannotConvertException &e )
|
|
|
|
{
|
2006-03-22 09:49:10 +00:00
|
|
|
if( isLog( cargo, LogLevel::CALL ) )
|
|
|
|
{
|
2006-06-20 04:03:27 +00:00
|
|
|
logException( cargo, "error py->uno[0x", me->members->xInvocation.get() ,
|
2006-03-22 09:49:10 +00:00
|
|
|
me->members->methodName, &e, getCppuType(&e).getTypeLibType());
|
|
|
|
}
|
2003-03-23 11:12:59 +00:00
|
|
|
raisePyExceptionWithAny( com::sun::star::uno::makeAny( e ) );
|
|
|
|
}
|
|
|
|
catch( com::sun::star::lang::IllegalArgumentException &e )
|
|
|
|
{
|
2006-03-22 09:49:10 +00:00
|
|
|
if( isLog( cargo, LogLevel::CALL ) )
|
|
|
|
{
|
2006-06-20 04:03:27 +00:00
|
|
|
logException( cargo, "error py->uno[0x", me->members->xInvocation.get() ,
|
2006-03-22 09:49:10 +00:00
|
|
|
me->members->methodName, &e, getCppuType(&e).getTypeLibType());
|
|
|
|
}
|
2003-03-23 11:12:59 +00:00
|
|
|
raisePyExceptionWithAny( com::sun::star::uno::makeAny( e ) );
|
|
|
|
}
|
|
|
|
catch (::com::sun::star::uno::RuntimeException &e)
|
|
|
|
{
|
2006-03-22 09:49:10 +00:00
|
|
|
if( cargo && isLog( cargo, LogLevel::CALL ) )
|
|
|
|
{
|
2006-06-20 04:03:27 +00:00
|
|
|
logException( cargo, "error py->uno[0x", me->members->xInvocation.get() ,
|
2006-03-22 09:49:10 +00:00
|
|
|
me->members->methodName, &e, getCppuType(&e).getTypeLibType());
|
|
|
|
}
|
2003-03-23 11:12:59 +00:00
|
|
|
raisePyExceptionWithAny( com::sun::star::uno::makeAny( e ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret.getAcquired();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static PyTypeObject PyUNO_callable_Type =
|
|
|
|
{
|
2011-05-07 20:35:03 +01:00
|
|
|
PyVarObject_HEAD_INIT( &PyType_Type, 0 )
|
2006-06-20 04:03:27 +00:00
|
|
|
const_cast< char * >("PyUNO_callable"),
|
2003-03-23 11:12:59 +00:00
|
|
|
sizeof (PyUNO_callable),
|
|
|
|
0,
|
|
|
|
(destructor) ::pyuno::PyUNO_callable_del,
|
|
|
|
(printfunc) 0,
|
|
|
|
(getattrfunc) 0,
|
|
|
|
(setattrfunc) 0,
|
2011-05-07 20:35:03 +01:00
|
|
|
0,
|
2003-03-23 11:12:59 +00:00
|
|
|
(reprfunc) 0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
(hashfunc) 0,
|
|
|
|
(ternaryfunc) ::pyuno::PyUNO_callable_call,
|
|
|
|
(reprfunc) 0,
|
2011-05-07 20:35:03 +01:00
|
|
|
(getattrofunc)0,
|
2006-06-20 04:03:27 +00:00
|
|
|
(setattrofunc)0,
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
(traverseproc)0,
|
|
|
|
(inquiry)0,
|
|
|
|
(richcmpfunc)0,
|
|
|
|
0,
|
|
|
|
(getiterfunc)0,
|
|
|
|
(iternextfunc)0,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
(descrgetfunc)0,
|
|
|
|
(descrsetfunc)0,
|
|
|
|
0,
|
|
|
|
(initproc)0,
|
|
|
|
(allocfunc)0,
|
|
|
|
(newfunc)0,
|
|
|
|
(freefunc)0,
|
|
|
|
(inquiry)0,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
(destructor)0
|
2009-03-14 17:15:26 +00:00
|
|
|
#if PY_VERSION_HEX >= 0x02060000
|
|
|
|
, 0
|
|
|
|
#endif
|
2003-03-23 11:12:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
PyRef PyUNO_callable_new (
|
|
|
|
const Reference<XInvocation2> &my_inv,
|
|
|
|
const OUString & methodName,
|
|
|
|
const Reference<XSingleServiceFactory> &xInvocationFactory,
|
2003-05-24 22:28:33 +00:00
|
|
|
const Reference<XTypeConverter> &tc,
|
|
|
|
enum ConversionMode mode )
|
2003-03-23 11:12:59 +00:00
|
|
|
{
|
|
|
|
PyUNO_callable* self;
|
|
|
|
|
2006-11-14 17:21:35 +00:00
|
|
|
self = PyObject_New (PyUNO_callable, &PyUNO_callable_Type);
|
2003-03-23 11:12:59 +00:00
|
|
|
if (self == NULL)
|
|
|
|
return NULL; //NULL == Error!
|
|
|
|
|
|
|
|
self->members = new PyUNO_callable_Internals;
|
|
|
|
self->members->xInvocation = my_inv;
|
|
|
|
self->members->methodName = methodName;
|
|
|
|
self->members->xInvocationFactory = xInvocationFactory;
|
|
|
|
self->members->xTypeConverter = tc;
|
2003-05-24 22:28:33 +00:00
|
|
|
self->members->mode = mode;
|
2003-03-23 11:12:59 +00:00
|
|
|
|
|
|
|
return PyRef( (PyObject*)self, SAL_NO_ACQUIRE );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2010-10-14 08:30:07 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|