LCOV - code coverage report
Current view: top level - libreoffice/xmloff/source/transform - EventOASISTContext.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 166 0.0 %
Date: 2012-12-27 Functions: 0 17 0.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 "EventOASISTContext.hxx"
      21             : #include "EventMap.hxx"
      22             : #include "MutableAttrList.hxx"
      23             : #include "xmloff/xmlnmspe.hxx"
      24             : #include "ActionMapTypesOASIS.hxx"
      25             : #include "AttrTransformerAction.hxx"
      26             : #include "TransformerActions.hxx"
      27             : #include "TransformerBase.hxx"
      28             : 
      29             : #ifndef OASIS_FILTER_OOO_1X
      30             : // Used to parse Scripting Framework URLs
      31             : #include <com/sun/star/uri/UriReferenceFactory.hpp>
      32             : #include <com/sun/star/uri/XVndSunStarScriptUrl.hpp>
      33             : #include <comphelper/processfactory.hxx>
      34             : #endif
      35             : 
      36             : #include <boost/unordered_map.hpp>
      37             : 
      38             : using ::rtl::OUString;
      39             : 
      40             : using namespace ::com::sun::star::uno;
      41             : using namespace ::com::sun::star::xml::sax;
      42             : using namespace ::xmloff::token;
      43             : 
      44             : class XMLTransformerOASISEventMap_Impl:
      45             :     public ::boost::unordered_map< NameKey_Impl, ::rtl::OUString,
      46             :                             NameHash_Impl, NameHash_Impl >
      47             : {
      48             : public:
      49             :     XMLTransformerOASISEventMap_Impl( XMLTransformerEventMapEntry *pInit );
      50             :     ~XMLTransformerOASISEventMap_Impl();
      51             : };
      52             : 
      53           0 : XMLTransformerOASISEventMap_Impl::XMLTransformerOASISEventMap_Impl( XMLTransformerEventMapEntry *pInit )
      54             : {
      55           0 :     if( pInit )
      56             :     {
      57           0 :         XMLTransformerOASISEventMap_Impl::key_type aKey;
      58           0 :         XMLTransformerOASISEventMap_Impl::mapped_type aData;
      59           0 :         while( pInit->m_pOASISName )
      60             :         {
      61           0 :             aKey.m_nPrefix = pInit->m_nOASISPrefix;
      62           0 :             aKey.m_aLocalName = OUString::createFromAscii(pInit->m_pOASISName);
      63             : 
      64             :             OSL_ENSURE( find( aKey ) == end(), "duplicate event map entry" );
      65             : 
      66           0 :             aData = OUString::createFromAscii(pInit->m_pOOoName);
      67             : 
      68           0 :             XMLTransformerOASISEventMap_Impl::value_type aVal( aKey, aData );
      69             : 
      70           0 :             insert( aVal );
      71           0 :             ++pInit;
      72           0 :         }
      73             :     }
      74           0 : }
      75             : 
      76           0 : XMLTransformerOASISEventMap_Impl::~XMLTransformerOASISEventMap_Impl()
      77             : {
      78           0 : }
      79             : 
      80             : // -----------------------------------------------------------------------------
      81             : 
      82           0 : TYPEINIT1( XMLEventOASISTransformerContext, XMLRenameElemTransformerContext);
      83             : 
      84           0 : XMLEventOASISTransformerContext::XMLEventOASISTransformerContext(
      85             :         XMLTransformerBase& rImp,
      86             :         const OUString& rQName ) :
      87             :     XMLRenameElemTransformerContext( rImp, rQName,
      88           0 :          rImp.GetNamespaceMap().GetKeyByAttrName( rQName ), XML_EVENT )
      89             : {
      90           0 : }
      91             : 
      92           0 : XMLEventOASISTransformerContext::~XMLEventOASISTransformerContext()
      93             : {
      94           0 : }
      95             : 
      96             : XMLTransformerOASISEventMap_Impl
      97           0 :     *XMLEventOASISTransformerContext::CreateEventMap()
      98             : {
      99           0 :     return new XMLTransformerOASISEventMap_Impl( aTransformerEventMap );
     100             : }
     101             : 
     102             : XMLTransformerOASISEventMap_Impl
     103           0 :     *XMLEventOASISTransformerContext::CreateFormEventMap()
     104             : {
     105           0 :     return new XMLTransformerOASISEventMap_Impl( aFormTransformerEventMap );
     106             : }
     107             : 
     108           0 : void XMLEventOASISTransformerContext::FlushEventMap(
     109             :         XMLTransformerOASISEventMap_Impl *p )
     110             : {
     111           0 :     delete p;
     112           0 : }
     113             : 
     114           0 : OUString XMLEventOASISTransformerContext::GetEventName(
     115             :         sal_uInt16 nPrefix,
     116             :         const OUString& rName,
     117             :            XMLTransformerOASISEventMap_Impl& rMap,
     118             :            XMLTransformerOASISEventMap_Impl *pMap2)
     119             : {
     120           0 :     XMLTransformerOASISEventMap_Impl::key_type aKey( nPrefix, rName );
     121           0 :     if( pMap2 )
     122             :     {
     123             :         XMLTransformerOASISEventMap_Impl::const_iterator aIter =
     124           0 :             pMap2->find( aKey );
     125           0 :         if( !(aIter == pMap2->end()) )
     126           0 :             return (*aIter).second;
     127             :     }
     128             : 
     129           0 :     XMLTransformerOASISEventMap_Impl::const_iterator aIter = rMap.find( aKey );
     130           0 :     if( aIter == rMap.end() )
     131           0 :         return rName;
     132             :     else
     133           0 :         return (*aIter).second;
     134             : }
     135             : 
     136           0 : bool ParseURLAsString(
     137             :     const OUString& rAttrValue,
     138             :     OUString* pName, OUString* pLocation )
     139             : {
     140           0 :     OUString SCHEME( "vnd.sun.star.script:"  );
     141             : 
     142           0 :     sal_Int32 params = rAttrValue.indexOf( '?' );
     143           0 :     if ( rAttrValue.indexOf( SCHEME ) != 0 || params < 0 )
     144             :     {
     145           0 :         return sal_False;
     146             :     }
     147             : 
     148           0 :     sal_Int32 start = SCHEME.getLength();
     149           0 :     *pName = rAttrValue.copy( start, params - start );
     150             : 
     151           0 :     OUString aToken;
     152           0 :     OUString aLanguage;
     153           0 :     params++;
     154           0 :     do
     155             :     {
     156           0 :         aToken = rAttrValue.getToken( 0, '&', params );
     157           0 :         sal_Int32 dummy = 0;
     158             : 
     159           0 :         if ( aToken.match( GetXMLToken( XML_LANGUAGE ) ) )
     160             :         {
     161           0 :             aLanguage = aToken.getToken( 1, '=', dummy );
     162             :         }
     163           0 :         else if ( aToken.match( GetXMLToken( XML_LOCATION ) ) )
     164             :         {
     165           0 :             OUString tmp = aToken.getToken( 1, '=', dummy );
     166           0 :             if ( tmp.equalsIgnoreAsciiCase( GetXMLToken( XML_DOCUMENT ) ) )
     167             :             {
     168           0 :                 *pLocation = GetXMLToken( XML_DOCUMENT );
     169             :             }
     170             :             else
     171             :             {
     172           0 :                 *pLocation = GetXMLToken( XML_APPLICATION );
     173           0 :             }
     174             :         }
     175             :     } while ( params >= 0 );
     176             : 
     177           0 :     if ( aLanguage.equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("basic")) )
     178             :     {
     179           0 :         return sal_True;
     180             :     }
     181           0 :     return sal_False;
     182             : }
     183             : 
     184           0 : bool ParseURL(
     185             :     const OUString& rAttrValue,
     186             :     OUString* pName, OUString* pLocation )
     187             : {
     188             : #ifdef OASIS_FILTER_OOO_1X
     189             :     return ParseURLAsString( rAttrValue, pName, pLocation );
     190             : #else
     191             :     Reference< com::sun::star::uno::XComponentContext >
     192           0 :         xContext = ::comphelper::getProcessComponentContext();
     193             : 
     194             :     Reference< com::sun::star::uri::XUriReferenceFactory > xFactory =
     195           0 :         com::sun::star::uri::UriReferenceFactory::create(xContext);
     196             : 
     197             :     Reference< com::sun::star::uri::XVndSunStarScriptUrl > xUrl (
     198           0 :         xFactory->parse( rAttrValue ), UNO_QUERY );
     199             : 
     200           0 :     if ( xUrl.is() )
     201             :     {
     202           0 :         OUString aLanguageKey = GetXMLToken( XML_LANGUAGE );
     203           0 :         if ( xUrl.is() && xUrl->hasParameter( aLanguageKey ) )
     204             :         {
     205           0 :             OUString aLanguage = xUrl->getParameter( aLanguageKey );
     206             : 
     207           0 :             if ( aLanguage.equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("basic")) )
     208             :             {
     209           0 :                 *pName = xUrl->getName();
     210             : 
     211             :                 OUString tmp =
     212           0 :                     xUrl->getParameter( GetXMLToken( XML_LOCATION ) );
     213             : 
     214           0 :                 OUString doc = GetXMLToken( XML_DOCUMENT );
     215             : 
     216           0 :                 if ( tmp.equalsIgnoreAsciiCase( doc ) )
     217             :                 {
     218           0 :                     *pLocation = doc;
     219             :                 }
     220             :                 else
     221             :                 {
     222           0 :                     *pLocation = GetXMLToken( XML_APPLICATION );
     223             :                 }
     224           0 :                 return sal_True;
     225           0 :             }
     226           0 :         }
     227             :     }
     228           0 :     return sal_False;
     229             : #endif
     230             : }
     231             : 
     232           0 : void XMLEventOASISTransformerContext::StartElement(
     233             :     const Reference< XAttributeList >& rAttrList )
     234             : {
     235             :     OSL_TRACE("XMLEventOASISTransformerContext::StartElement");
     236             : 
     237             :     XMLTransformerActions *pActions =
     238           0 :         GetTransformer().GetUserDefinedActions( OASIS_EVENT_ACTIONS );
     239             :     OSL_ENSURE( pActions, "go no actions" );
     240             : 
     241           0 :     Reference< XAttributeList > xAttrList( rAttrList );
     242           0 :     XMLMutableAttributeList *pMutableAttrList = 0;
     243           0 :     sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
     244           0 :     for( sal_Int16 i=0; i < nAttrCount; i++ )
     245             :     {
     246           0 :         const OUString& rAttrName = xAttrList->getNameByIndex( i );
     247           0 :         OUString aLocalName;
     248             :         sal_uInt16 nPrefix =
     249           0 :             GetTransformer().GetNamespaceMap().GetKeyByAttrName( rAttrName,
     250           0 :                                                                  &aLocalName );
     251           0 :         XMLTransformerActions::key_type aKey( nPrefix, aLocalName );
     252             :         XMLTransformerActions::const_iterator aIter =
     253           0 :             pActions->find( aKey );
     254           0 :         if( !(aIter == pActions->end() ) )
     255             :         {
     256           0 :             if( !pMutableAttrList )
     257             :             {
     258             :                 pMutableAttrList =
     259           0 :                         new XMLMutableAttributeList( xAttrList );
     260           0 :                 xAttrList = pMutableAttrList;
     261             :             }
     262           0 :             const OUString& rAttrValue = xAttrList->getValueByIndex( i );
     263           0 :             switch( (*aIter).second.m_nActionType )
     264             :             {
     265             :             case XML_ATACTION_HREF:
     266             :                 {
     267           0 :                     OUString aName, aLocation;
     268             : 
     269             :                     bool bNeedsTransform =
     270           0 :                         ParseURL( rAttrValue, &aName, &aLocation );
     271             : 
     272           0 :                     if ( bNeedsTransform )
     273             :                     {
     274           0 :                         pMutableAttrList->RemoveAttributeByIndex( i );
     275             : 
     276             :                         OUString aAttrQName(
     277           0 :                             GetTransformer().GetNamespaceMap().GetQNameByKey(
     278             :                                 XML_NAMESPACE_SCRIPT,
     279           0 :                             ::xmloff::token::GetXMLToken( XML_MACRO_NAME ) ) );
     280             : 
     281           0 :                         pMutableAttrList->AddAttribute( aAttrQName, aName );
     282             : 
     283             :                         sal_Int16 idx = pMutableAttrList->GetIndexByName(
     284           0 :                             GetTransformer().GetNamespaceMap().GetQNameByKey(
     285             :                                 XML_NAMESPACE_SCRIPT,
     286           0 :                             GetXMLToken( XML_LANGUAGE ) ) );
     287             : 
     288             :                         pMutableAttrList->SetValueByIndex( idx,
     289           0 :                             OUString("StarBasic") );
     290             : 
     291             :                         OUString aLocQName(
     292           0 :                             GetTransformer().GetNamespaceMap().GetQNameByKey(
     293             :                                 XML_NAMESPACE_SCRIPT,
     294           0 :                                 GetXMLToken( XML_LOCATION ) ) );
     295             : 
     296           0 :                         pMutableAttrList->AddAttribute( aLocQName, aLocation );
     297           0 :                     }
     298             :                 }
     299           0 :                 break;
     300             :             case XML_ATACTION_EVENT_NAME:
     301             :                 {
     302             :                     // Check if the event belongs to a form or control by
     303             :                     // cehcking the 2nd ancestor element, f.i.:
     304             :                     // <form:button><form:event-listeners><form:event-listener>
     305             :                     const XMLTransformerContext *pObjContext =
     306           0 :                         GetTransformer().GetAncestorContext( 1 );
     307             :                     sal_Bool bForm = pObjContext &&
     308             : 
     309           0 :                         pObjContext->HasNamespace(XML_NAMESPACE_FORM );
     310             :                     pMutableAttrList->SetValueByIndex( i,
     311           0 :                                    GetTransformer().GetEventName( rAttrValue,
     312           0 :                                                                     bForm ) );
     313             :                 }
     314           0 :                 break;
     315             :             case XML_ATACTION_REMOVE_NAMESPACE_PREFIX:
     316             :                 {
     317           0 :                     OUString aAttrValue( rAttrValue );
     318             :                     sal_uInt16 nValPrefix =
     319           0 :                         static_cast<sal_uInt16>((*aIter).second.m_nParam1);
     320           0 :                     if( GetTransformer().RemoveNamespacePrefix(
     321           0 :                                 aAttrValue, nValPrefix ) )
     322           0 :                         pMutableAttrList->SetValueByIndex( i, aAttrValue );
     323             :                 }
     324           0 :                 break;
     325             :             case XML_ATACTION_MACRO_NAME:
     326             :             {
     327           0 :                 OUString aName, aLocation;
     328             :                 bool bNeedsTransform =
     329           0 :                 ParseURL( rAttrValue, &aName, &aLocation );
     330             : 
     331           0 :                 if ( bNeedsTransform )
     332             :                 {
     333           0 :                     pMutableAttrList->SetValueByIndex( i, aName );
     334             : 
     335             :                     sal_Int16 idx = pMutableAttrList->GetIndexByName(
     336           0 :                     GetTransformer().GetNamespaceMap().GetQNameByKey(
     337             :                     XML_NAMESPACE_SCRIPT,
     338           0 :                     GetXMLToken( XML_LANGUAGE ) ) );
     339             : 
     340             :                     pMutableAttrList->SetValueByIndex( idx,
     341           0 :                     OUString("StarBasic") );
     342             : 
     343             :                     OUString aLocQName(
     344           0 :                     GetTransformer().GetNamespaceMap().GetQNameByKey(
     345             :                     XML_NAMESPACE_SCRIPT,
     346           0 :                     GetXMLToken( XML_LOCATION ) ) );
     347             : 
     348           0 :                     pMutableAttrList->AddAttribute( aLocQName, aLocation );
     349             :                 }
     350             :                 else
     351             :                 {
     352           0 :                     const OUString& rApp = GetXMLToken( XML_APPLICATION );
     353           0 :                     const OUString& rDoc = GetXMLToken( XML_DOCUMENT );
     354           0 :                     OUString aAttrValue;
     355           0 :                     if( rAttrValue.getLength() > rApp.getLength()+1 &&
     356             :                         rAttrValue.copy(0,rApp.getLength()).
     357           0 :                             equalsIgnoreAsciiCase( rApp ) &&
     358           0 :                         ':' == rAttrValue[rApp.getLength()] )
     359             :                     {
     360           0 :                         aLocation = rApp;
     361           0 :                         aAttrValue = rAttrValue.copy( rApp.getLength()+1 );
     362             :                     }
     363           0 :                     else if( rAttrValue.getLength() > rDoc.getLength()+1 &&
     364             :                              rAttrValue.copy(0,rDoc.getLength()).
     365           0 :                                 equalsIgnoreAsciiCase( rDoc ) &&
     366           0 :                              ':' == rAttrValue[rDoc.getLength()] )
     367             :                     {
     368           0 :                         aLocation= rDoc;
     369           0 :                         aAttrValue = rAttrValue.copy( rDoc.getLength()+1 );
     370             :                     }
     371           0 :                     if( !aAttrValue.isEmpty() )
     372             :                         pMutableAttrList->SetValueByIndex( i,
     373           0 :                     aAttrValue );
     374           0 :                     if( !aLocation.isEmpty() )
     375             :                     {
     376           0 :                         OUString aAttrQName( GetTransformer().GetNamespaceMap().
     377             :                         GetQNameByKey( XML_NAMESPACE_SCRIPT,
     378           0 :                         ::xmloff::token::GetXMLToken( XML_LOCATION ) ) );
     379           0 :                         pMutableAttrList->AddAttribute( aAttrQName, aLocation );
     380             :                         // draw bug
     381           0 :                         aAttrQName = GetTransformer().GetNamespaceMap().
     382             :                         GetQNameByKey( XML_NAMESPACE_SCRIPT,
     383           0 :                         ::xmloff::token::GetXMLToken( XML_LIBRARY ) );
     384           0 :                         pMutableAttrList->AddAttribute( aAttrQName, aLocation );
     385           0 :                     }
     386           0 :                 }
     387             :             }
     388           0 :             break;
     389             :             case XML_ATACTION_COPY:
     390           0 :                 break;
     391             :             default:
     392             :                 OSL_ENSURE( !this, "unknown action" );
     393           0 :                 break;
     394           0 :             }
     395             :         }
     396           0 :     }
     397             : 
     398           0 :     XMLRenameElemTransformerContext::StartElement( xAttrList );
     399           0 : }
     400             : 
     401             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10