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

Generated by: LCOV version 1.10