LCOV - code coverage report
Current view: top level - pyuno/source/module - pyuno_runtime.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 259 446 58.1 %
Date: 2015-06-13 12:38:46 Functions: 16 21 76.2 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; eval:(c-set-style "bsd"); tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include <config_features.h>
      21             : #include <config_folders.h>
      22             : 
      23             : #include "pyuno_impl.hxx"
      24             : 
      25             : #include <osl/diagnose.h>
      26             : #include <osl/thread.h>
      27             : #include <osl/module.h>
      28             : #include <osl/process.h>
      29             : #include <rtl/strbuf.hxx>
      30             : #include <rtl/ustrbuf.hxx>
      31             : #include <rtl/bootstrap.hxx>
      32             : 
      33             : #include <typelib/typedescription.hxx>
      34             : 
      35             : #include <com/sun/star/lang/WrappedTargetRuntimeException.hpp>
      36             : #include <com/sun/star/beans/XMaterialHolder.hpp>
      37             : #include <com/sun/star/beans/theIntrospection.hpp>
      38             : #include <com/sun/star/script/Converter.hpp>
      39             : #include <com/sun/star/script/InvocationAdapterFactory.hpp>
      40             : #include <com/sun/star/reflection/theCoreReflection.hpp>
      41             : 
      42             : 
      43             : using com::sun::star::uno::Reference;
      44             : using com::sun::star::uno::XInterface;
      45             : using com::sun::star::uno::Any;
      46             : using com::sun::star::uno::TypeDescription;
      47             : using com::sun::star::uno::Sequence;
      48             : using com::sun::star::uno::Type;
      49             : using com::sun::star::uno::UNO_QUERY;
      50             : using com::sun::star::uno::Exception;
      51             : using com::sun::star::uno::RuntimeException;
      52             : using com::sun::star::uno::XComponentContext;
      53             : using com::sun::star::lang::WrappedTargetRuntimeException;
      54             : using com::sun::star::lang::XSingleServiceFactory;
      55             : using com::sun::star::lang::XUnoTunnel;
      56             : using com::sun::star::reflection::theCoreReflection;
      57             : using com::sun::star::reflection::XIdlReflection;
      58             : using com::sun::star::reflection::InvocationTargetException;
      59             : using com::sun::star::script::Converter;
      60             : using com::sun::star::script::XTypeConverter;
      61             : using com::sun::star::script::XInvocationAdapterFactory2;
      62             : using com::sun::star::script::XInvocation;
      63             : using com::sun::star::beans::XMaterialHolder;
      64             : using com::sun::star::beans::XIntrospection;
      65             : using com::sun::star::beans::theIntrospection;
      66             : 
      67             : #include <vector>
      68             : 
      69             : namespace pyuno
      70             : {
      71             : 
      72             : static PyTypeObject RuntimeImpl_Type =
      73             : {
      74             :     PyVarObject_HEAD_INIT (&PyType_Type, 0)
      75             :     "pyuno_runtime",
      76             :     sizeof (RuntimeImpl),
      77             :     0,
      78             :     RuntimeImpl::del,
      79             :     nullptr,
      80             :     nullptr,
      81             :     nullptr,
      82             :     0,
      83             :     nullptr,
      84             :     0,
      85             :     0,
      86             :     0,
      87             :     nullptr,
      88             :     nullptr,
      89             :     nullptr,
      90             :     nullptr,
      91             :     nullptr,
      92             :     NULL,
      93             :     0,
      94             :     NULL,
      95             :     nullptr,
      96             :     nullptr,
      97             :     nullptr,
      98             :     0,
      99             :     nullptr,
     100             :     nullptr,
     101             :     NULL,
     102             :     NULL,
     103             :     NULL,
     104             :     NULL,
     105             :     NULL,
     106             :     nullptr,
     107             :     nullptr,
     108             :     0,
     109             :     nullptr,
     110             :     nullptr,
     111             :     nullptr,
     112             :     nullptr,
     113             :     nullptr,
     114             :     NULL,
     115             :     NULL,
     116             :     NULL,
     117             :     NULL,
     118             :     NULL,
     119             :     nullptr
     120             : #if PY_VERSION_HEX >= 0x02060000
     121             :     , 0
     122             : #endif
     123             : #if PY_VERSION_HEX >= 0x03040000
     124             :     , 0
     125             : #endif
     126             : };
     127             : 
     128             : /*----------------------------------------------------------------------
     129             :   Runtime implementation
     130             :  -----------------------------------------------------------------------*/
     131        4289 : static void getRuntimeImpl( PyRef & globalDict, PyRef &runtimeImpl )
     132             :     throw ( com::sun::star::uno::RuntimeException )
     133             : {
     134        4289 :     PyThreadState * state = PyThreadState_Get();
     135        4289 :     if( ! state )
     136             :     {
     137           0 :         throw RuntimeException( "python global interpreter must be held (thread must be attached)" );
     138             :     }
     139             : 
     140        4289 :     PyObject* pModule = PyImport_AddModule("__main__");
     141             : 
     142        4289 :     if (!pModule)
     143             :     {
     144           0 :         throw RuntimeException("can't import __main__ module");
     145             :     }
     146             : 
     147        4289 :     globalDict = PyRef( PyModule_GetDict(pModule));
     148             : 
     149        4289 :     if( ! globalDict.is() ) // FATAL !
     150             :     {
     151           0 :         throw RuntimeException("can't find __main__ module");
     152             :     }
     153        4289 :     runtimeImpl = PyDict_GetItemString( globalDict.get() , "pyuno_runtime" );
     154        4289 : }
     155             : 
     156           3 : static PyRef importUnoModule( ) throw ( RuntimeException )
     157             : {
     158             :     // import the uno module
     159           3 :     PyRef module( PyImport_ImportModule( "uno" ), SAL_NO_ACQUIRE, NOT_NULL );
     160           3 :     if( PyErr_Occurred() )
     161             :     {
     162           0 :         PyRef excType, excValue, excTraceback;
     163           0 :         PyErr_Fetch( reinterpret_cast<PyObject **>(&excType), reinterpret_cast<PyObject**>(&excValue), reinterpret_cast<PyObject**>(&excTraceback));
     164             :         // As of Python 2.7 this gives a rather non-useful "<traceback object at 0xADDRESS>",
     165             :         // but it is the best we can do in the absence of uno._uno_extract_printable_stacktrace
     166             :         // Who knows, a future Python might print something better.
     167           0 :         PyRef str( PyObject_Str( excTraceback.get() ), SAL_NO_ACQUIRE );
     168             : 
     169           0 :         OUStringBuffer buf;
     170           0 :         buf.appendAscii( "python object raised an unknown exception (" );
     171           0 :         PyRef valueRep( PyObject_Repr( excValue.get() ), SAL_NO_ACQUIRE );
     172           0 :         buf.appendAscii( PyStr_AsString( valueRep.get())).appendAscii( ", traceback follows\n" );
     173           0 :         buf.appendAscii( PyStr_AsString( str.get() ) );
     174           0 :         buf.appendAscii( ")" );
     175           0 :         throw RuntimeException( buf.makeStringAndClear() );
     176             :     }
     177           3 :     PyRef dict( PyModule_GetDict( module.get() ) );
     178           3 :     return dict;
     179             : }
     180             : 
     181           3 : static void readLoggingConfig( sal_Int32 *pLevel, FILE **ppFile )
     182             : {
     183           3 :     *pLevel = LogLevel::NONE;
     184           3 :     *ppFile = 0;
     185           3 :     OUString fileName;
     186             :     osl_getModuleURLFromFunctionAddress(
     187             :         reinterpret_cast< oslGenericFunction >(readLoggingConfig),
     188           3 :         &fileName.pData );
     189           3 :     fileName = fileName.copy( fileName.lastIndexOf( '/' )+1 );
     190             : #ifdef MACOSX
     191             :     fileName += "../" LIBO_ETC_FOLDER "/";
     192             : #endif
     193           3 :     fileName += SAL_CONFIGFILE("pyuno" );
     194           6 :     rtl::Bootstrap bootstrapHandle( fileName );
     195             : 
     196           6 :     OUString str;
     197           3 :     if( bootstrapHandle.getFrom( "PYUNO_LOGLEVEL", str ) )
     198             :     {
     199           0 :         if ( str == "NONE" )
     200           0 :             *pLevel = LogLevel::NONE;
     201           0 :         else if ( str == "CALL" )
     202           0 :             *pLevel = LogLevel::CALL;
     203           0 :         else if ( str == "ARGS" )
     204           0 :             *pLevel = LogLevel::ARGS;
     205             :         else
     206             :         {
     207             :             fprintf( stderr, "unknown loglevel %s\n",
     208           0 :                      OUStringToOString( str, RTL_TEXTENCODING_UTF8 ).getStr() );
     209             :         }
     210             :     }
     211           3 :     if( *pLevel > LogLevel::NONE )
     212             :     {
     213           0 :         *ppFile = stdout;
     214           0 :         if( bootstrapHandle.getFrom( "PYUNO_LOGTARGET", str ) )
     215             :         {
     216           0 :             if ( str == "stdout" )
     217           0 :                 *ppFile = stdout;
     218           0 :             else if ( str == "stderr" )
     219           0 :                 *ppFile = stderr;
     220             :             else
     221             :             {
     222             :                 oslProcessInfo data;
     223           0 :                 data.Size = sizeof( data );
     224             :                 osl_getProcessInfo(
     225           0 :                     0 , osl_Process_IDENTIFIER , &data );
     226           0 :                 osl_getSystemPathFromFileURL( str.pData, &str.pData);
     227           0 :                 OString o = OUStringToOString( str, osl_getThreadTextEncoding() );
     228           0 :                 o += ".";
     229           0 :                 o += OString::number( data.Ident );
     230             : 
     231           0 :                 *ppFile = fopen( o.getStr() , "w" );
     232           0 :                 if ( *ppFile )
     233             :                 {
     234             :                     // do not buffer (useful if e.g. analyzing a crash)
     235           0 :                     setvbuf( *ppFile, 0, _IONBF, 0 );
     236             :                 }
     237             :                 else
     238             :                 {
     239             :                     fprintf( stderr, "couldn't create file %s\n",
     240           0 :                              OUStringToOString( str, RTL_TEXTENCODING_UTF8 ).getStr() );
     241             : 
     242           0 :                 }
     243             :             }
     244             :         }
     245           3 :     }
     246           3 : }
     247             : 
     248             : /*-------------------------------------------------------------------
     249             :  RuntimeImpl implementations
     250             :  *-------------------------------------------------------------------*/
     251           3 : PyRef stRuntimeImpl::create( const Reference< XComponentContext > &ctx )
     252             :     throw( com::sun::star::uno::RuntimeException )
     253             : {
     254           3 :     RuntimeImpl *me = PyObject_New (RuntimeImpl, &RuntimeImpl_Type);
     255           3 :     if( ! me )
     256           0 :         throw RuntimeException( "cannot instantiate pyuno::RuntimeImpl" );
     257           3 :     me->cargo = 0;
     258             :     // must use a different struct here, as the PyObject_New
     259             :     // makes C++ unusable
     260           3 :     RuntimeCargo *c = new RuntimeCargo();
     261           3 :     readLoggingConfig( &(c->logLevel) , &(c->logFile) );
     262           3 :     log( c, LogLevel::CALL, "Instantiating pyuno bridge" );
     263             : 
     264           3 :     c->valid = true;
     265           3 :     c->xContext = ctx;
     266           6 :     c->xInvocation = Reference< XSingleServiceFactory > (
     267           6 :         ctx->getServiceManager()->createInstanceWithContext(
     268             :             OUString(  "com.sun.star.script.Invocation"  ),
     269           3 :             ctx ),
     270           3 :         UNO_QUERY );
     271           3 :     if( ! c->xInvocation.is() )
     272           0 :         throw RuntimeException( "pyuno: couldn't instantiate invocation service" );
     273             : 
     274           3 :     c->xTypeConverter = Converter::create(ctx);
     275           3 :     if( ! c->xTypeConverter.is() )
     276           0 :         throw RuntimeException( "pyuno: couldn't instantiate typeconverter service" );
     277             : 
     278           3 :     c->xCoreReflection = theCoreReflection::get(ctx);
     279             : 
     280           3 :     c->xAdapterFactory = css::script::InvocationAdapterFactory::create(ctx);
     281             : 
     282           3 :     c->xIntrospection = theIntrospection::get(ctx);
     283             : 
     284           3 :     Any a = ctx->getValueByName("/singletons/com.sun.star.reflection.theTypeDescriptionManager");
     285           3 :     a >>= c->xTdMgr;
     286           3 :     if( ! c->xTdMgr.is() )
     287           0 :         throw RuntimeException( "pyuno: couldn't retrieve typedescriptionmanager" );
     288             : 
     289           3 :     me->cargo =c;
     290           3 :     return PyRef( reinterpret_cast< PyObject * > ( me ), SAL_NO_ACQUIRE );
     291             : }
     292             : 
     293           0 : void  stRuntimeImpl::del(PyObject* self)
     294             : {
     295           0 :     RuntimeImpl *me = reinterpret_cast< RuntimeImpl * > ( self );
     296           0 :     if( me->cargo->logFile )
     297           0 :         fclose( me->cargo->logFile );
     298           0 :     delete me->cargo;
     299           0 :     PyObject_Del (self);
     300           0 : }
     301             : 
     302             : 
     303           3 : void Runtime::initialize( const Reference< XComponentContext > & ctx )
     304             :     throw ( RuntimeException )
     305             : {
     306           6 :     PyRef globalDict, runtime;
     307           3 :     getRuntimeImpl( globalDict , runtime );
     308           3 :     RuntimeImpl *impl = reinterpret_cast< RuntimeImpl * > (runtime.get());
     309             : 
     310           3 :     if( runtime.is() && impl->cargo->valid )
     311             :     {
     312           0 :         throw RuntimeException("pyuno runtime has already been initialized before" );
     313             :     }
     314           6 :     PyRef keep( RuntimeImpl::create( ctx ) );
     315           3 :     PyDict_SetItemString( globalDict.get(), "pyuno_runtime" , keep.get() );
     316           6 :     Py_XINCREF( keep.get() );
     317           3 : }
     318             : 
     319             : 
     320          39 : bool Runtime::isInitialized() throw ( RuntimeException )
     321             : {
     322          78 :     PyRef globalDict, runtime;
     323          39 :     getRuntimeImpl( globalDict , runtime );
     324          39 :     RuntimeImpl *impl = reinterpret_cast< RuntimeImpl * > (runtime.get());
     325          78 :     return runtime.is() && impl->cargo->valid;
     326             : }
     327             : 
     328        4247 : Runtime::Runtime() throw(  RuntimeException )
     329        4247 :     : impl( 0 )
     330             : {
     331        8494 :     PyRef globalDict, runtime;
     332        4247 :     getRuntimeImpl( globalDict , runtime );
     333        4247 :     if( ! runtime.is() )
     334             :     {
     335             :         throw RuntimeException(
     336             :             "pyuno runtime is not initialized, "
     337           0 :             "(the pyuno.bootstrap needs to be called before using any uno classes)" );
     338             :     }
     339        4247 :     impl = reinterpret_cast< RuntimeImpl * > (runtime.get());
     340        8494 :     Py_XINCREF( runtime.get() );
     341        4247 : }
     342             : 
     343           0 : Runtime::Runtime( const Runtime & r )
     344             : {
     345           0 :     impl = r.impl;
     346           0 :     Py_XINCREF( reinterpret_cast< PyObject * >(impl) );
     347           0 : }
     348             : 
     349        4247 : Runtime::~Runtime()
     350             : {
     351        4247 :     Py_XDECREF( reinterpret_cast< PyObject * >(impl) );
     352        4247 : }
     353             : 
     354           0 : Runtime & Runtime::operator = ( const Runtime & r )
     355             : {
     356           0 :     PyRef temp( reinterpret_cast< PyObject * >(r.impl) );
     357           0 :     Py_XINCREF( temp.get() );
     358           0 :     Py_XDECREF( reinterpret_cast< PyObject * >(impl) );
     359           0 :     impl = r.impl;
     360           0 :     return *this;
     361             : }
     362             : 
     363        1662 : PyRef Runtime::any2PyObject (const Any &a ) const
     364             :     throw ( com::sun::star::script::CannotConvertException,
     365             :             com::sun::star::lang::IllegalArgumentException,
     366             :             RuntimeException)
     367             : {
     368        1662 :     if( ! impl->cargo->valid )
     369             :     {
     370           0 :         throw RuntimeException("pyuno runtime must be initialized before calling any2PyObject" );
     371             :     }
     372             : 
     373        1662 :     switch (a.getValueTypeClass ())
     374             :     {
     375             :     case typelib_TypeClass_VOID:
     376             :     {
     377         100 :         Py_INCREF (Py_None);
     378         100 :         return PyRef(Py_None);
     379             :     }
     380             :     case typelib_TypeClass_CHAR:
     381             :     {
     382           0 :         sal_Unicode c = *static_cast<sal_Unicode const *>(a.getValue());
     383           0 :         return PyRef( PyUNO_char_new( c , *this ), SAL_NO_ACQUIRE );
     384             :     }
     385             :     case typelib_TypeClass_BOOLEAN:
     386             :     {
     387             :         bool b;
     388         102 :         if ((a >>= b) && b)
     389          69 :             return Py_True;
     390             :         else
     391          33 :             return Py_False;
     392             :     }
     393             :     case typelib_TypeClass_BYTE:
     394             :     case typelib_TypeClass_SHORT:
     395             :     case typelib_TypeClass_UNSIGNED_SHORT:
     396             :     case typelib_TypeClass_LONG:
     397             :     {
     398         301 :         sal_Int32 l = 0;
     399         301 :         a >>= l;
     400         301 :         return PyRef( PyLong_FromLong (l), SAL_NO_ACQUIRE );
     401             :     }
     402             :     case typelib_TypeClass_UNSIGNED_LONG:
     403             :     {
     404          14 :         sal_uInt32 l = 0;
     405          14 :         a >>= l;
     406          14 :         return PyRef( PyLong_FromUnsignedLong (l), SAL_NO_ACQUIRE );
     407             :     }
     408             :     case typelib_TypeClass_HYPER:
     409             :     {
     410           0 :         sal_Int64 l = 0;
     411           0 :         a >>= l;
     412           0 :         return PyRef( PyLong_FromLongLong (l), SAL_NO_ACQUIRE);
     413             :     }
     414             :     case typelib_TypeClass_UNSIGNED_HYPER:
     415             :     {
     416           0 :         sal_uInt64 l = 0;
     417           0 :         a >>= l;
     418           0 :         return PyRef( PyLong_FromUnsignedLongLong (l), SAL_NO_ACQUIRE);
     419             :     }
     420             :     case typelib_TypeClass_FLOAT:
     421             :     {
     422           8 :         float f = 0.0;
     423           8 :         a >>= f;
     424           8 :         return PyRef(PyFloat_FromDouble (f), SAL_NO_ACQUIRE);
     425             :     }
     426             :     case typelib_TypeClass_DOUBLE:
     427             :     {
     428          50 :         double d = 0.0;
     429          50 :         a >>= d;
     430          50 :         return PyRef( PyFloat_FromDouble (d), SAL_NO_ACQUIRE);
     431             :     }
     432             :     case typelib_TypeClass_STRING:
     433             :     {
     434         282 :         OUString tmp_ostr;
     435         282 :         a >>= tmp_ostr;
     436         282 :         return ustring2PyUnicode( tmp_ostr );
     437             :     }
     438             :     case typelib_TypeClass_TYPE:
     439             :     {
     440           0 :         Type t;
     441           0 :         a >>= t;
     442           0 :         OString o = OUStringToOString( t.getTypeName(), RTL_TEXTENCODING_ASCII_US );
     443             :         return PyRef(
     444             :             PyUNO_Type_new (
     445             :                 o.getStr(),  (com::sun::star::uno::TypeClass)t.getTypeClass(), *this),
     446           0 :             SAL_NO_ACQUIRE);
     447             :     }
     448             :     case typelib_TypeClass_ANY:
     449             :     {
     450             :         //I don't think this can happen.
     451           0 :         Py_INCREF (Py_None);
     452           0 :         return Py_None;
     453             :     }
     454             :     case typelib_TypeClass_ENUM:
     455             :     {
     456           5 :         sal_Int32 l = *static_cast<sal_Int32 const *>(a.getValue());
     457           5 :         TypeDescription desc( a.getValueType() );
     458           5 :         if( desc.is() )
     459             :         {
     460           5 :             desc.makeComplete();
     461             :             typelib_EnumTypeDescription *pEnumDesc =
     462           5 :                 reinterpret_cast<typelib_EnumTypeDescription *>(desc.get());
     463           5 :             for( int i = 0 ; i < pEnumDesc->nEnumValues ; i ++ )
     464             :             {
     465           5 :                 if( pEnumDesc->pEnumValues[i] == l )
     466             :                 {
     467           5 :                     OString v = OUStringToOString( pEnumDesc->ppEnumNames[i], RTL_TEXTENCODING_ASCII_US);
     468          10 :                     OString e = OUStringToOString( pEnumDesc->aBase.pTypeName, RTL_TEXTENCODING_ASCII_US);
     469          10 :                     return PyRef( PyUNO_Enum_new(e.getStr(),v.getStr(), *this ), SAL_NO_ACQUIRE );
     470             :                 }
     471             :             }
     472             :         }
     473           0 :         OUStringBuffer buf;
     474           0 :         buf.appendAscii( "Any carries enum " );
     475           0 :         buf.append( a.getValueType().getTypeName());
     476           0 :         buf.appendAscii( " with invalid value " ).append( l );
     477           5 :         throw RuntimeException( buf.makeStringAndClear() );
     478             :     }
     479             :     case typelib_TypeClass_EXCEPTION:
     480             :     case typelib_TypeClass_STRUCT:
     481             :     {
     482         569 :         PyRef excClass = getClass( a.getValueType().getTypeName(), *this );
     483        1138 :         PyRef value = PyRef( PyUNO_new_UNCHECKED (a, getImpl()->cargo->xInvocation), SAL_NO_ACQUIRE);
     484        1138 :         PyRef argsTuple( PyTuple_New( 1 ) , SAL_NO_ACQUIRE, NOT_NULL );
     485         569 :         PyTuple_SetItem( argsTuple.get() , 0 , value.getAcquired() );
     486        1138 :         PyRef ret( PyObject_CallObject( excClass.get() , argsTuple.get() ), SAL_NO_ACQUIRE );
     487         569 :         if( ! ret.is() )
     488             :         {
     489           0 :             OUStringBuffer buf;
     490           0 :             buf.appendAscii( "Couldn't instantiate python representation of structered UNO type " );
     491           0 :             buf.append( a.getValueType().getTypeName() );
     492           0 :             throw RuntimeException( buf.makeStringAndClear() );
     493             :         }
     494             : 
     495         569 :         if( com::sun::star::uno::TypeClass_EXCEPTION == a.getValueTypeClass() )
     496             :         {
     497             :             // add the message in a standard python way !
     498         259 :             PyRef args( PyTuple_New( 1 ), SAL_NO_ACQUIRE, NOT_NULL );
     499             : 
     500             :             // assuming that the Message is always the first member, wuuuu
     501         259 :             void const *pData = a.getValue();
     502         518 :             OUString message = *static_cast<OUString const *>(pData);
     503         518 :             PyRef pymsg = ustring2PyString( message );
     504         259 :             PyTuple_SetItem( args.get(), 0 , pymsg.getAcquired() );
     505             :             // the exception base functions want to have an "args" tuple,
     506             :             // which contains the message
     507         518 :             PyObject_SetAttrString( ret.get(), "args", args.get() );
     508             :         }
     509        1138 :         return ret;
     510             :     }
     511             :     case typelib_TypeClass_SEQUENCE:
     512             :     {
     513          36 :         Sequence<Any> s;
     514             : 
     515          72 :         Sequence< sal_Int8 > byteSequence;
     516          36 :         if( a >>= byteSequence )
     517             :         {
     518             :             // byte sequence is treated in a special way because of peformance reasons
     519             :             // @since 0.9.2
     520           2 :             return PyRef( PyUNO_ByteSequence_new( byteSequence, *this ), SAL_NO_ACQUIRE );
     521             :         }
     522             :         else
     523             :         {
     524          34 :             Reference< XTypeConverter > tc = getImpl()->cargo->xTypeConverter;
     525          68 :             Reference< XSingleServiceFactory > ssf = getImpl()->cargo->xInvocation;
     526          34 :             tc->convertTo (a, cppu::UnoType<decltype(s)>::get()) >>= s;
     527          68 :             PyRef tuple( PyTuple_New (s.getLength()), SAL_NO_ACQUIRE, NOT_NULL);
     528          34 :             int i=0;
     529             :             try
     530             :             {
     531         278 :                 for ( i = 0; i < s.getLength (); i++)
     532             :                 {
     533         244 :                     PyRef element;
     534         244 :                     element = any2PyObject (tc->convertTo (s[i], s[i].getValueType() ));
     535             :                     OSL_ASSERT( element.is() );
     536         244 :                     PyTuple_SetItem( tuple.get(), i, element.getAcquired() );
     537         244 :                 }
     538             :             }
     539           0 :             catch( com::sun::star::uno::Exception & )
     540             :             {
     541           0 :                 for( ; i < s.getLength() ; i ++ )
     542             :                 {
     543           0 :                     Py_INCREF( Py_None );
     544           0 :                     PyTuple_SetItem( tuple.get(), i,  Py_None );
     545             :                 }
     546           0 :                 throw;
     547             :             }
     548          68 :             return tuple;
     549          36 :         }
     550             :     }
     551             :     case typelib_TypeClass_INTERFACE:
     552             :     {
     553             :         // fdo#46678 must unlock GIL because getSomething could acquire locks,
     554             :         // and queryInterface too...
     555             :         {
     556         195 :             PyThreadDetach d;
     557             : 
     558         390 :             Reference<XUnoTunnel> tunnel;
     559         195 :             a >>= tunnel;
     560         195 :             if (tunnel.is())
     561             :             {
     562         118 :                 sal_Int64 that = tunnel->getSomething( ::pyuno::Adapter::getUnoTunnelImplementationId() );
     563         118 :                 if( that )
     564           0 :                     return reinterpret_cast<Adapter*>(that)->getWrappedObject();
     565         195 :             }
     566             :         }
     567             :         //This is just like the struct case:
     568         195 :         return PyRef( PyUNO_new (a, getImpl()->cargo->xInvocation), SAL_NO_ACQUIRE );
     569             :     }
     570             :     default:
     571             :     {
     572           0 :         OUStringBuffer buf;
     573           0 :         buf.appendAscii( "Unknown UNO type class " );
     574           0 :         buf.append( (sal_Int32 ) a.getValueTypeClass() );
     575           0 :         throw RuntimeException(buf.makeStringAndClear( ) );
     576             :     }
     577             :     }
     578             : }
     579             : 
     580          16 : static Sequence< Type > invokeGetTypes( const Runtime & r , PyObject * o )
     581             : {
     582          16 :     Sequence< Type > ret;
     583             : 
     584          32 :     PyRef method( PyObject_GetAttrString( o , "getTypes" ), SAL_NO_ACQUIRE );
     585          16 :     raiseInvocationTargetExceptionWhenNeeded( r );
     586          16 :     if( method.is() && PyCallable_Check( method.get() ) )
     587             :     {
     588          16 :         PyRef types( PyObject_CallObject( method.get(), 0 ) , SAL_NO_ACQUIRE );
     589          16 :         raiseInvocationTargetExceptionWhenNeeded( r );
     590          16 :         if( types.is() && PyTuple_Check( types.get() ) )
     591             :         {
     592          16 :             int size = PyTuple_Size( types.get() );
     593             : 
     594             :             // add the XUnoTunnel interface  for uno object identity concept (hack)
     595          16 :             ret.realloc( size + 1 );
     596          63 :             for( int i = 0 ; i < size ; i ++ )
     597             :             {
     598          47 :                 Any a = r.pyObject2Any(PyTuple_GetItem(types.get(),i));
     599          47 :                 a >>= ret[i];
     600          47 :             }
     601          16 :             ret[size] = cppu::UnoType<com::sun::star::lang::XUnoTunnel>::get();
     602          16 :         }
     603             :     }
     604          32 :     return ret;
     605             : }
     606             : 
     607             : static OUString
     608           0 : lcl_ExceptionMessage(PyObject *const o, OUString const*const pWrapped)
     609             : {
     610           0 :     OUStringBuffer buf;
     611           0 :     buf.appendAscii("Couldn't convert ");
     612           0 :     PyRef reprString( PyObject_Str(o), SAL_NO_ACQUIRE );
     613           0 :     buf.appendAscii( PyStr_AsString(reprString.get()) );
     614           0 :     buf.appendAscii(" to a UNO type");
     615           0 :     if (pWrapped)
     616             :     {
     617           0 :         buf.appendAscii("; caught exception: ");
     618           0 :         buf.append(*pWrapped);
     619             :     }
     620           0 :     return buf.makeStringAndClear();
     621             : }
     622             : 
     623        1934 : Any Runtime::pyObject2Any ( const PyRef & source, enum ConversionMode mode ) const
     624             :     throw ( com::sun::star::uno::RuntimeException )
     625             : {
     626        1934 :     if( ! impl->cargo->valid )
     627             :     {
     628           0 :         throw RuntimeException("pyuno runtime must be initialized before calling any2PyObject" );
     629             :     }
     630             : 
     631        1934 :     Any a;
     632        1934 :     PyObject *o = source.get();
     633        1934 :     if( Py_None == o )
     634             :     {
     635             : 
     636             :     }
     637             :     // In Python 3, there is no PyInt type.
     638             : #if PY_MAJOR_VERSION < 3
     639             :     else if (PyInt_Check (o))
     640             :     {
     641             :         if( o == Py_True )
     642             :         {
     643             :             sal_Bool b = sal_True;
     644             :             a = Any( &b, cppu::UnoType<bool>::get() );
     645             :         }
     646             :         else if ( o == Py_False )
     647             :         {
     648             :             sal_Bool b = sal_False;
     649             :             a = Any( &b, cppu::UnoType<bool>::get() );
     650             :         }
     651             :         else
     652             :         {
     653             :             sal_Int32 l = (sal_Int32) PyLong_AsLong( o );
     654             :             if( l < 128 && l >= -128 )
     655             :             {
     656             :                 sal_Int8 b = (sal_Int8 ) l;
     657             :                 a <<= b;
     658             :             }
     659             :             else if( l <= 0x7fff && l >= -0x8000 )
     660             :             {
     661             :                 sal_Int16 s = (sal_Int16) l;
     662             :                 a <<= s;
     663             :             }
     664             :             else
     665             :             {
     666             :                 a <<= l;
     667             :             }
     668             :         }
     669             :     }
     670             : #endif /* PY_MAJOR_VERSION < 3 */
     671        1930 :     else if (PyLong_Check (o))
     672             :     {
     673             : #if PY_MAJOR_VERSION >= 3
     674             :         // Convert the Python 3 booleans that are actually of type PyLong.
     675         351 :         if(o == Py_True)
     676             :         {
     677          36 :             sal_Bool b = sal_True;
     678          36 :             a = Any(&b, cppu::UnoType<bool>::get());
     679             :         }
     680         315 :         else if(o == Py_False)
     681             :         {
     682          44 :             sal_Bool b = sal_False;
     683          44 :             a = Any(&b, cppu::UnoType<bool>::get());
     684             :         }
     685             :         else
     686             :         {
     687             : #endif /* PY_MAJOR_VERSION >= 3 */
     688         271 :         sal_Int64 l = (sal_Int64)PyLong_AsLong (o);
     689         271 :         if( l < 128 && l >= -128 )
     690             :         {
     691         265 :             sal_Int8 b = (sal_Int8 ) l;
     692         265 :             a <<= b;
     693             :         }
     694           6 :         else if( l <= 0x7fff && l >= -0x8000 )
     695             :         {
     696           4 :             sal_Int16 s = (sal_Int16) l;
     697           4 :             a <<= s;
     698             :         }
     699           4 :         else if( l <= SAL_CONST_INT64(0x7fffffff) &&
     700           2 :                  l >= -SAL_CONST_INT64(0x80000000) )
     701             :         {
     702           2 :             sal_Int32 l32 = (sal_Int32) l;
     703           2 :             a <<= l32;
     704             :         }
     705             :         else
     706             :         {
     707           0 :             a <<= l;
     708             :         }
     709             : #if PY_MAJOR_VERSION >= 3
     710             :         }
     711             : #endif
     712             :     }
     713        1579 :     else if (PyFloat_Check (o))
     714             :     {
     715           4 :         double d = PyFloat_AsDouble (o);
     716           4 :         a <<= d;
     717             :     }
     718        1575 :     else if (PyStrBytes_Check(o) || PyUnicode_Check(o))
     719             :     {
     720         624 :         a <<= pyString2ustring(o);
     721             :     }
     722         951 :     else if (PyTuple_Check (o))
     723             :     {
     724         782 :         Sequence<Any> s (PyTuple_Size (o));
     725        1716 :         for (Py_ssize_t i = 0; i < PyTuple_Size (o); i++)
     726             :         {
     727         934 :             s[i] = pyObject2Any (PyTuple_GetItem (o, i), mode );
     728             :         }
     729         782 :         a <<= s;
     730             :     }
     731             :     else
     732             :     {
     733         169 :         Runtime runtime;
     734             :         // should be removed, in case ByteSequence gets derived from String
     735         169 :         if( PyObject_IsInstance( o, getByteSequenceClass( runtime ).get() ) )
     736             :         {
     737           0 :             PyRef str(PyObject_GetAttrString( o , "value" ),SAL_NO_ACQUIRE);
     738           0 :             Sequence< sal_Int8 > seq;
     739           0 :             if( PyStrBytes_Check( str.get() ) )
     740             :             {
     741           0 :                 seq = Sequence<sal_Int8 > (
     742           0 :                     reinterpret_cast<sal_Int8*>(PyStrBytes_AsString(str.get())), PyStrBytes_Size(str.get()));
     743             :             }
     744           0 :             a <<= seq;
     745             :         }
     746             :         else
     747         169 :         if( PyObject_IsInstance( o, getTypeClass( runtime ).get() ) )
     748             :         {
     749          77 :             Type t = PyType2Type( o );
     750          77 :             a <<= t;
     751             :         }
     752          92 :         else if( PyObject_IsInstance( o, getEnumClass( runtime ).get() ) )
     753             :         {
     754           0 :             a = PyEnum2Enum( o );
     755             :         }
     756          92 :         else if( isInstanceOfStructOrException( o ) )
     757             :         {
     758          33 :             PyRef struc(PyObject_GetAttrString( o , "value" ),SAL_NO_ACQUIRE);
     759          33 :             PyUNO * obj = reinterpret_cast<PyUNO*>(struc.get());
     760          66 :             Reference< XMaterialHolder > holder( obj->members->xInvocation, UNO_QUERY );
     761          33 :             if( holder.is( ) )
     762          33 :                 a = holder->getMaterial();
     763             :             else
     764             :             {
     765             :                 throw RuntimeException(
     766           0 :                     "struct or exception wrapper does not support XMaterialHolder" );
     767          33 :             }
     768             :         }
     769          59 :         else if( PyObject_IsInstance( o, getPyUnoClass().get() ) )
     770             :         {
     771             :             PyUNO* o_pi;
     772          43 :             o_pi = reinterpret_cast<PyUNO*>(o);
     773          86 :             if (o_pi->members->wrappedObject.getValueTypeClass () ==
     774          86 :                 com::sun::star::uno::TypeClass_STRUCT ||
     775          43 :                 o_pi->members->wrappedObject.getValueTypeClass () ==
     776             :                 com::sun::star::uno::TypeClass_EXCEPTION)
     777             :             {
     778           0 :                 Reference<XMaterialHolder> my_mh (o_pi->members->xInvocation, UNO_QUERY);
     779             : 
     780           0 :                 if (!my_mh.is ())
     781             :                 {
     782             :                     throw RuntimeException(
     783           0 :                         "struct wrapper does not support XMaterialHolder" );
     784             :                 }
     785             :                 else
     786           0 :                     a = my_mh->getMaterial ();
     787             :             }
     788             :             else
     789             :             {
     790          43 :                 a = o_pi->members->wrappedObject;
     791             :             }
     792             :         }
     793          16 :         else if( PyObject_IsInstance( o, getCharClass( runtime ).get() ) )
     794             :         {
     795           0 :             sal_Unicode c = PyChar2Unicode( o );
     796           0 :             a.setValue( &c, cppu::UnoType<cppu::UnoCharType>::get());
     797             :         }
     798          16 :         else if( PyObject_IsInstance( o, getAnyClass( runtime ).get() ) )
     799             :         {
     800           0 :             if( ACCEPT_UNO_ANY == mode )
     801             :             {
     802           0 :                 a = pyObject2Any( PyRef( PyObject_GetAttrString( o , "value" ), SAL_NO_ACQUIRE) );
     803           0 :                 Type t;
     804           0 :                 pyObject2Any( PyRef( PyObject_GetAttrString( o, "type" ), SAL_NO_ACQUIRE ) ) >>= t;
     805             : 
     806             :                 try
     807             :                 {
     808           0 :                     a = getImpl()->cargo->xTypeConverter->convertTo( a, t );
     809             :                 }
     810           0 :                 catch( const com::sun::star::uno::Exception & e )
     811             :                 {
     812             :                     throw WrappedTargetRuntimeException(
     813           0 :                             e.Message, e.Context, makeAny(e));
     814           0 :                 }
     815             :             }
     816             :             else
     817             :             {
     818             :                 throw RuntimeException(
     819             :                     "uno.Any instance not accepted during method call, "
     820           0 :                     "use uno.invoke instead" );
     821             :             }
     822             :         }
     823             :         else
     824             :         {
     825          16 :             Reference< XInterface > mappedObject;
     826          32 :             Reference< XInvocation > adapterObject;
     827             : 
     828             :             // instance already mapped out to the world ?
     829          16 :             PyRef2Adapter::iterator ii = impl->cargo->mappedObjects.find( PyRef( o ) );
     830          16 :             if( ii != impl->cargo->mappedObjects.end() )
     831             :             {
     832           0 :                 adapterObject = ii->second;
     833             :             }
     834             : 
     835          16 :             if( adapterObject.is() )
     836             :             {
     837             :                 // object got already bridged !
     838           0 :                 Reference< com::sun::star::lang::XUnoTunnel > tunnel( adapterObject, UNO_QUERY );
     839             : 
     840             :                 Adapter *pAdapter = reinterpret_cast<Adapter*>(
     841           0 :                         tunnel->getSomething(
     842           0 :                             ::pyuno::Adapter::getUnoTunnelImplementationId() ) );
     843             : 
     844           0 :                 mappedObject = impl->cargo->xAdapterFactory->createAdapter(
     845           0 :                     adapterObject, pAdapter->getWrappedTypes() );
     846             :             }
     847             :             else
     848             :             {
     849             :                 try {
     850          16 :                     Sequence<Type> interfaces = invokeGetTypes(*this, o);
     851          16 :                     if (interfaces.getLength())
     852             :                     {
     853          16 :                         Adapter *pAdapter = new Adapter( o, interfaces );
     854          32 :                         mappedObject =
     855          16 :                             getImpl()->cargo->xAdapterFactory->createAdapter(
     856          32 :                                 pAdapter, interfaces );
     857             : 
     858             :                         // keep a list of exported objects to ensure object identity !
     859          32 :                         impl->cargo->mappedObjects[ PyRef(o) ] =
     860          32 :                             com::sun::star::uno::WeakReference< XInvocation > ( pAdapter );
     861          16 :                     }
     862           0 :                 } catch (InvocationTargetException const& e) {
     863           0 :                     OUString const msg(lcl_ExceptionMessage(o, &e.Message));
     864             :                     throw WrappedTargetRuntimeException( // re-wrap that
     865           0 :                             msg, e.Context, e.TargetException);
     866             :                 }
     867             :             }
     868          16 :             if( mappedObject.is() )
     869             :             {
     870          16 :                 a = com::sun::star::uno::makeAny( mappedObject );
     871             :             }
     872             :             else
     873             :             {
     874           0 :                 OUString const msg(lcl_ExceptionMessage(o, 0));
     875           0 :                 throw RuntimeException(msg);
     876          16 :             }
     877         169 :         }
     878             :     }
     879        1934 :     return a;
     880             : }
     881             : 
     882           0 : Any Runtime::extractUnoException( const PyRef & excType, const PyRef &excValue, const PyRef &excTraceback) const
     883             : {
     884           0 :     OUString str;
     885           0 :     Any ret;
     886           0 :     if( excTraceback.is() )
     887             :     {
     888           0 :         Exception e;
     889           0 :         PyRef unoModule;
     890           0 :         if ( impl )
     891             :         {
     892             :             try
     893             :             {
     894           0 :                 unoModule = impl->cargo->getUnoModule();
     895             :             }
     896           0 :             catch (const Exception &ei)
     897             :             {
     898           0 :                 e=ei;
     899             :             }
     900             :         }
     901           0 :         if( unoModule.is() )
     902             :         {
     903             :             PyRef extractTraceback(
     904           0 :                 PyDict_GetItemString(unoModule.get(),"_uno_extract_printable_stacktrace" ) );
     905             : 
     906           0 :             if( PyCallable_Check(extractTraceback.get()) )
     907             :             {
     908           0 :                 PyRef args( PyTuple_New( 1), SAL_NO_ACQUIRE, NOT_NULL );
     909           0 :                 PyTuple_SetItem( args.get(), 0, excTraceback.getAcquired() );
     910           0 :                 PyRef pyStr( PyObject_CallObject( extractTraceback.get(),args.get() ), SAL_NO_ACQUIRE);
     911           0 :                 str = OUString::createFromAscii( PyStr_AsString(pyStr.get()) );
     912             :             }
     913             :             else
     914             :             {
     915           0 :                 str = "Couldn't find uno._uno_extract_printable_stacktrace";
     916           0 :             }
     917             :         }
     918             :         else
     919             :         {
     920           0 :             str = "Could not load uno.py, no stacktrace available";
     921           0 :             if ( !e.Message.isEmpty() )
     922             :             {
     923           0 :                 str += OUString (" (Error loading uno.py: ");
     924           0 :                 str += e.Message;
     925           0 :                 str += OUString (")");
     926             :             }
     927           0 :         }
     928             : 
     929             :     }
     930             :     else
     931             :     {
     932             :         // it may occur, that no traceback is given (e.g. only native code below)
     933           0 :         str = "no traceback available";
     934             :     }
     935             : 
     936           0 :     if( isInstanceOfStructOrException( excValue.get() ) )
     937             :     {
     938           0 :         ret = pyObject2Any( excValue );
     939             :     }
     940             :     else
     941             :     {
     942           0 :         OUStringBuffer buf;
     943           0 :         PyRef typeName( PyObject_Str( excType.get() ), SAL_NO_ACQUIRE );
     944           0 :         if( typeName.is() )
     945             :         {
     946           0 :             buf.appendAscii( PyStr_AsString( typeName.get() ) );
     947             :         }
     948             :         else
     949             :         {
     950           0 :             buf.appendAscii( "no typename available" );
     951             :         }
     952           0 :         buf.appendAscii( ": " );
     953           0 :         PyRef valueRep( PyObject_Str( excValue.get() ), SAL_NO_ACQUIRE );
     954           0 :         if( valueRep.is() )
     955             :         {
     956           0 :             buf.appendAscii( PyStr_AsString( valueRep.get()));
     957             :         }
     958             :         else
     959             :         {
     960           0 :             buf.appendAscii( "Couldn't convert exception value to a string" );
     961             :         }
     962           0 :         buf.appendAscii( ", traceback follows\n" );
     963           0 :         if( !str.isEmpty() )
     964             :         {
     965           0 :             buf.append( str );
     966           0 :             buf.appendAscii( "\n" );
     967             :         }
     968             :         else
     969             :         {
     970           0 :             buf.appendAscii( ", no traceback available\n" );
     971             :         }
     972           0 :         RuntimeException e;
     973           0 :         e.Message = buf.makeStringAndClear();
     974             : #if OSL_DEBUG_LEVEL > 0
     975             :         fprintf( stderr, "Python exception: %s\n",
     976             :                  OUStringToOString(e.Message, RTL_TEXTENCODING_UTF8).getStr() );
     977             : #endif
     978           0 :         ret = com::sun::star::uno::makeAny( e );
     979             :     }
     980           0 :     return ret;
     981             : }
     982             : 
     983             : 
     984          55 : PyThreadAttach::PyThreadAttach( PyInterpreterState *interp)
     985             :     throw ( com::sun::star::uno::RuntimeException )
     986             : {
     987          55 :     tstate = PyThreadState_New( interp );
     988          55 :     if( !tstate  )
     989           0 :         throw RuntimeException( "Couldn't create a pythreadstate" );
     990          55 :     PyEval_AcquireThread( tstate);
     991          55 : }
     992             : 
     993          55 : PyThreadAttach::~PyThreadAttach()
     994             : {
     995          55 :     PyThreadState_Clear( tstate );
     996          55 :     PyEval_ReleaseThread( tstate );
     997          55 :     PyThreadState_Delete( tstate );
     998          55 : }
     999             : 
    1000        3058 : PyThreadDetach::PyThreadDetach() throw ( com::sun::star::uno::RuntimeException )
    1001             : {
    1002        3058 :     tstate = PyThreadState_Get();
    1003        3058 :     PyEval_ReleaseThread( tstate );
    1004        3058 : }
    1005             : 
    1006             :     /** Acquires the global interpreter lock again
    1007             : 
    1008             :     */
    1009        3058 : PyThreadDetach::~PyThreadDetach()
    1010             : {
    1011        3058 :     PyEval_AcquireThread( tstate );
    1012        3058 : }
    1013             : 
    1014             : 
    1015         805 : PyRef RuntimeCargo::getUnoModule()
    1016             : {
    1017         805 :     if( ! dictUnoModule.is() )
    1018             :     {
    1019           3 :         dictUnoModule = importUnoModule();
    1020             :     }
    1021         805 :     return dictUnoModule;
    1022             : }
    1023             : }
    1024             : 
    1025             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11