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

Generated by: LCOV version 1.11