LCOV - code coverage report
Current view: top level - sw/source/core/doc - docbasic.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 102 1.0 %
Date: 2015-06-13 12:38:46 Functions: 2 5 40.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; 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 <hintids.hxx>
      21             : 
      22             : #include <rtl/ustring.hxx>
      23             : #include <svtools/imap.hxx>
      24             : #include <svtools/imapobj.hxx>
      25             : #include <basic/sbx.hxx>
      26             : #include <frmfmt.hxx>
      27             : #include <fmtinfmt.hxx>
      28             : #include <fmturl.hxx>
      29             : #include <frmatr.hxx>
      30             : #include <docary.hxx>
      31             : #include <doc.hxx>
      32             : #include <docsh.hxx>
      33             : #include <swevent.hxx>
      34             : #include <boost/scoped_ptr.hpp>
      35             : 
      36             : using namespace ::com::sun::star::uno;
      37             : 
      38           0 : static Sequence<Any> *lcl_docbasic_convertArgs( SbxArray& rArgs )
      39             : {
      40           0 :     Sequence<Any> *pRet = 0;
      41             : 
      42           0 :     sal_uInt16 nCount = rArgs.Count();
      43           0 :     if( nCount > 1 )
      44             :     {
      45           0 :         nCount--;
      46           0 :         pRet = new Sequence<Any>( nCount );
      47           0 :         Any *pUnoArgs = pRet->getArray();
      48           0 :         for( sal_uInt16 i=0; i<nCount; i++ )
      49             :         {
      50           0 :             SbxVariable *pVar = rArgs.Get( i+1 );
      51           0 :             switch( pVar->GetType() )
      52             :             {
      53             :             case SbxSTRING:
      54           0 :                 pUnoArgs[i] <<= pVar->GetOUString();
      55           0 :                 break;
      56             :             case SbxCHAR:
      57           0 :                 pUnoArgs[i] <<= (sal_Int16)pVar->GetChar() ;
      58           0 :                 break;
      59             :             case SbxUSHORT:
      60           0 :                 pUnoArgs[i] <<= (sal_Int16)pVar->GetUShort();
      61           0 :                 break;
      62             :             case SbxLONG:
      63           0 :                 pUnoArgs[i] <<= (sal_Int32)pVar->GetLong();
      64           0 :                 break;
      65             :             default:
      66           0 :                 pUnoArgs[i].setValue(0, cppu::UnoType<void>::get());
      67           0 :                 break;
      68             :             }
      69             :         }
      70             :     }
      71             : 
      72           0 :     return pRet;
      73             : }
      74             : 
      75           0 : bool SwDoc::ExecMacro( const SvxMacro& rMacro, OUString* pRet, SbxArray* pArgs )
      76             : {
      77           0 :     ErrCode eErr = 0;
      78           0 :     switch( rMacro.GetScriptType() )
      79             :     {
      80             :     case STARBASIC:
      81             :         {
      82           0 :             SbxBaseRef aRef;
      83           0 :             SbxValue* pRetValue = new SbxValue;
      84           0 :             aRef = pRetValue;
      85           0 :             eErr = mpDocShell->CallBasic( rMacro.GetMacName(),
      86           0 :                                          rMacro.GetLibName(),
      87           0 :                                          pArgs, pRet ? pRetValue : 0 );
      88             : 
      89           0 :             if( pRet && SbxNULL <  pRetValue->GetType() &&
      90           0 :                         SbxVOID != pRetValue->GetType() )
      91             :             {
      92             :                 // valid value, so set it
      93           0 :                 *pRet = pRetValue->GetOUString();
      94           0 :             }
      95             :         }
      96           0 :         break;
      97             :     case JAVASCRIPT:
      98             :         // ignore JavaScript calls
      99           0 :         break;
     100             :     case EXTENDED_STYPE:
     101             :         {
     102           0 :             boost::scoped_ptr<Sequence<Any> > pUnoArgs;
     103           0 :             if( pArgs )
     104             :             {
     105             :                 // better to rename the local function to lcl_translateBasic2Uno and
     106             :                 // a much shorter routine can be found in sfx2/source/doc/objmisc.cxx
     107           0 :                 pUnoArgs.reset(lcl_docbasic_convertArgs( *pArgs ));
     108             :             }
     109             : 
     110           0 :             if (!pUnoArgs)
     111             :             {
     112           0 :                 pUnoArgs.reset(new Sequence< Any > (0));
     113             :             }
     114             : 
     115             :             // TODO - return value is not handled
     116           0 :             Any aRet;
     117           0 :             Sequence< sal_Int16 > aOutArgsIndex;
     118           0 :             Sequence< Any > aOutArgs;
     119             : 
     120             :             OSL_TRACE( "SwDoc::ExecMacro URL is %s", OUStringToOString( rMacro.GetMacName(),
     121             :                 RTL_TEXTENCODING_UTF8).getStr() );
     122             : 
     123             :             eErr = mpDocShell->CallXScript(
     124           0 :                 rMacro.GetMacName(), *pUnoArgs, aRet, aOutArgsIndex, aOutArgs);
     125             : 
     126           0 :             break;
     127             :         }
     128             :     }
     129             : 
     130           0 :     return 0 == eErr;
     131             : }
     132             : 
     133           0 : sal_uInt16 SwDoc::CallEvent( sal_uInt16 nEvent, const SwCallMouseEvent& rCallEvent,
     134             :                     bool bCheckPtr, SbxArray* pArgs, const Link<>* )
     135             : {
     136           0 :     if( !mpDocShell )        // we can't do that without a DocShell!
     137           0 :         return 0;
     138             : 
     139           0 :     sal_uInt16 nRet = 0;
     140           0 :     const SvxMacroTableDtor* pTable = 0;
     141           0 :     switch( rCallEvent.eType )
     142             :     {
     143             :     case EVENT_OBJECT_INETATTR:
     144           0 :         if( bCheckPtr  )
     145             :         {
     146           0 :             sal_uInt32 n, nMaxItems = GetAttrPool().GetItemCount2( RES_TXTATR_INETFMT );
     147           0 :             for( n = 0; n < nMaxItems; ++n )
     148             :             {
     149             :                 const SfxPoolItem* pItem;
     150           0 :                 if( 0 != (pItem = GetAttrPool().GetItem2( RES_TXTATR_INETFMT, n ) )
     151           0 :                     && rCallEvent.PTR.pINetAttr == pItem )
     152             :                 {
     153           0 :                     bCheckPtr = false;       // misuse as a flag
     154           0 :                     break;
     155             :                 }
     156             :             }
     157             :         }
     158           0 :         if( !bCheckPtr )
     159           0 :             pTable = rCallEvent.PTR.pINetAttr->GetMacroTable();
     160           0 :         break;
     161             : 
     162             :     case EVENT_OBJECT_URLITEM:
     163             :     case EVENT_OBJECT_IMAGE:
     164             :         {
     165           0 :             const SwFrameFormat* pFormat = rCallEvent.PTR.pFormat;
     166           0 :             if( bCheckPtr )
     167             :             {
     168           0 :                 if ( GetSpzFrameFormats()->Contains( pFormat ) )
     169           0 :                     bCheckPtr = false;      // misuse as a flag
     170             :             }
     171           0 :             if( !bCheckPtr )
     172           0 :                 pTable = &pFormat->GetMacro().GetMacroTable();
     173             :         }
     174           0 :         break;
     175             : 
     176             :     case EVENT_OBJECT_IMAGEMAP:
     177             :         {
     178           0 :             const IMapObject* pIMapObj = rCallEvent.PTR.IMAP.pIMapObj;
     179           0 :             if( bCheckPtr )
     180             :             {
     181           0 :                 const SwFrameFormat* pFormat = rCallEvent.PTR.IMAP.pFormat;
     182             :                 const ImageMap* pIMap;
     183           0 :                 if( GetSpzFrameFormats()->Contains( pFormat ) &&
     184           0 :                     0 != (pIMap = pFormat->GetURL().GetMap()) )
     185             :                 {
     186           0 :                     for( size_t nPos = pIMap->GetIMapObjectCount(); nPos; )
     187           0 :                         if( pIMapObj == pIMap->GetIMapObject( --nPos ))
     188             :                         {
     189           0 :                             bCheckPtr = false;      // misuse as a flag
     190           0 :                             break;
     191             :                         }
     192             :                 }
     193             :             }
     194           0 :             if( !bCheckPtr )
     195           0 :                 pTable = &pIMapObj->GetMacroTable();
     196             :         }
     197           0 :         break;
     198             :     default:
     199           0 :         break;
     200             :     }
     201             : 
     202           0 :     if( pTable )
     203             :     {
     204           0 :         nRet = 0x1;
     205           0 :         if( pTable->IsKeyValid( nEvent ) )
     206             :         {
     207           0 :             const SvxMacro& rMacro = *pTable->Get( nEvent );
     208           0 :             if( STARBASIC == rMacro.GetScriptType() )
     209             :             {
     210           0 :                 nRet += 0 == mpDocShell->CallBasic( rMacro.GetMacName(),
     211           0 :                                     rMacro.GetLibName(), pArgs ) ? 1 : 0;
     212             :             }
     213           0 :             else if( EXTENDED_STYPE == rMacro.GetScriptType() )
     214             :             {
     215           0 :                 boost::scoped_ptr<Sequence<Any> > pUnoArgs;
     216             : 
     217           0 :                 if( pArgs )
     218             :                 {
     219           0 :                     pUnoArgs.reset(lcl_docbasic_convertArgs( *pArgs ));
     220             :                 }
     221             : 
     222           0 :                 if (!pUnoArgs)
     223             :                 {
     224           0 :                     pUnoArgs.reset(new Sequence <Any> (0));
     225             :                 }
     226             : 
     227           0 :                 Any aRet;
     228           0 :                 Sequence< sal_Int16 > aOutArgsIndex;
     229           0 :                 Sequence< Any > aOutArgs;
     230             : 
     231             :                 OSL_TRACE( "SwDoc::CallEvent URL is %s", OUStringToOString(
     232             :                     rMacro.GetMacName(), RTL_TEXTENCODING_UTF8).getStr() );
     233             : 
     234             :                 nRet += 0 == mpDocShell->CallXScript(
     235           0 :                     rMacro.GetMacName(), *pUnoArgs,aRet, aOutArgsIndex, aOutArgs) ? 1 : 0;
     236             :             }
     237             :             // JavaScript calls are ignored
     238             :         }
     239             :     }
     240           0 :     return nRet;
     241         177 : }
     242             : 
     243             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11