LCOV - code coverage report
Current view: top level - xmloff/source/transform - PersAttrListTContext.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 65 0.0 %
Date: 2014-04-14 Functions: 0 21 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 <com/sun/star/util/XCloneable.hpp>
      21             : #include "IgnoreTContext.hxx"
      22             : #include "TransformerBase.hxx"
      23             : #include "MutableAttrList.hxx"
      24             : #include <xmloff/nmspmap.hxx>
      25             : #include "PersAttrListTContext.hxx"
      26             : 
      27             : 
      28             : using namespace ::com::sun::star::uno;
      29             : using namespace ::com::sun::star::util;
      30             : using namespace ::com::sun::star::xml::sax;
      31             : 
      32           0 : TYPEINIT1( XMLPersAttrListTContext, XMLTransformerContext );
      33             : 
      34           0 : void XMLPersAttrListTContext::AddAttribute(
      35             :         sal_uInt16 nAPrefix,
      36             :            ::xmloff::token::XMLTokenEnum eAToken,
      37             :            ::xmloff::token::XMLTokenEnum eVToken )
      38             : {
      39           0 :     OUString aAttrValue( ::xmloff::token::GetXMLToken( eVToken ) );
      40           0 :     AddAttribute( nAPrefix, eAToken, aAttrValue );
      41           0 : }
      42             : 
      43           0 : void XMLPersAttrListTContext::AddAttribute(
      44             :     sal_uInt16 nAPrefix,
      45             :     ::xmloff::token::XMLTokenEnum eAToken,
      46             :     const OUString & rValue )
      47             : {
      48           0 :     OUString aAttrQName( GetTransformer().GetNamespaceMap().GetQNameByKey(
      49           0 :                 nAPrefix, ::xmloff::token::GetXMLToken( eAToken ) ) );
      50           0 :     OUString aAttrValue( rValue );
      51             : 
      52             :     XMLMutableAttributeList *pMutableAttrList;
      53           0 :     if( m_xAttrList.is() )
      54             :     {
      55             :         pMutableAttrList =
      56           0 :             static_cast< XMLMutableAttributeList * >( m_xAttrList.get() );
      57             :     }
      58             :     else
      59             :     {
      60           0 :         pMutableAttrList = new XMLMutableAttributeList ;
      61           0 :         m_xAttrList = pMutableAttrList;
      62             :     }
      63             : 
      64           0 :     pMutableAttrList->AddAttribute( aAttrQName, aAttrValue );
      65           0 : }
      66             : 
      67           0 : XMLPersAttrListTContext::XMLPersAttrListTContext(
      68             :         XMLTransformerBase& rImp,
      69             :         const OUString& rQName ) :
      70             :     XMLTransformerContext( rImp, rQName ),
      71             :     m_aElemQName( rQName ),
      72           0 :     m_nActionMap( INVALID_ACTIONS )
      73             : {
      74           0 : }
      75             : 
      76           0 : XMLPersAttrListTContext::XMLPersAttrListTContext(
      77             :         XMLTransformerBase& rImp,
      78             :         const OUString& rQName,
      79             :        sal_uInt16 nActionMap ) :
      80             :     XMLTransformerContext( rImp, rQName ),
      81             :     m_aElemQName( rQName ),
      82           0 :     m_nActionMap( nActionMap )
      83             : {
      84           0 : }
      85             : 
      86           0 : XMLPersAttrListTContext::XMLPersAttrListTContext(
      87             :         XMLTransformerBase& rImp,
      88             :         const OUString& rQName,
      89             :         sal_uInt16 nPrefix,
      90             :         ::xmloff::token::XMLTokenEnum eToken ) :
      91             :     XMLTransformerContext( rImp, rQName ),
      92           0 :     m_aElemQName( rImp.GetNamespaceMap().GetQNameByKey( nPrefix,
      93           0 :                             ::xmloff::token::GetXMLToken( eToken ) ) ),
      94           0 :     m_nActionMap( INVALID_ACTIONS )
      95             : {
      96           0 : }
      97             : 
      98           0 : XMLPersAttrListTContext::XMLPersAttrListTContext(
      99             :         XMLTransformerBase& rImp,
     100             :         const OUString& rQName,
     101             :         sal_uInt16 nPrefix,
     102             :         ::xmloff::token::XMLTokenEnum eToken,
     103             :        sal_uInt16 nActionMap ) :
     104             :     XMLTransformerContext( rImp, rQName ),
     105           0 :     m_aElemQName( rImp.GetNamespaceMap().GetQNameByKey( nPrefix,
     106           0 :                             ::xmloff::token::GetXMLToken( eToken ) ) ),
     107           0 :     m_nActionMap( nActionMap )
     108             : {
     109           0 : }
     110             : 
     111           0 : XMLPersAttrListTContext::~XMLPersAttrListTContext()
     112             : {
     113           0 : }
     114             : 
     115           0 : XMLTransformerContext *XMLPersAttrListTContext::CreateChildContext(
     116             :         sal_uInt16 /*nPrefix*/,
     117             :         const OUString& /*rLocalName*/,
     118             :         const OUString& rQName,
     119             :         const Reference< XAttributeList >& )
     120             : {
     121             :     // ignore all child elements
     122           0 :     return  new XMLIgnoreTransformerContext( GetTransformer(),
     123           0 :                                              rQName, sal_True, sal_True );
     124             : }
     125             : 
     126           0 : void XMLPersAttrListTContext::StartElement(
     127             :     const Reference< XAttributeList >& rAttrList )
     128             : {
     129           0 :     XMLMutableAttributeList *pMutableAttrList = 0;
     130             : 
     131           0 :     Reference< XAttributeList > xAttrList( rAttrList );
     132           0 :     if( m_nActionMap != INVALID_ACTIONS )
     133             :     {
     134             :         pMutableAttrList =
     135           0 :             GetTransformer().ProcessAttrList( xAttrList, m_nActionMap,
     136           0 :                                                  sal_True );
     137             :     }
     138             : 
     139           0 :     if( m_xAttrList.is() )
     140             :     {
     141           0 :         static_cast< XMLMutableAttributeList * >( m_xAttrList.get() )
     142           0 :                 ->AppendAttributeList( xAttrList );
     143             :     }
     144           0 :     else if( pMutableAttrList )
     145             :     {
     146           0 :         m_xAttrList = xAttrList;
     147             :     }
     148             :     else
     149             :     {
     150           0 :         m_xAttrList = new XMLMutableAttributeList( rAttrList, sal_True );
     151           0 :     }
     152           0 : }
     153             : 
     154           0 : void XMLPersAttrListTContext::EndElement()
     155             : {
     156             :     // ignore for now
     157           0 : }
     158             : 
     159           0 : void XMLPersAttrListTContext::Characters( const OUString& )
     160             : {
     161           0 : }
     162             : 
     163           0 : sal_Bool XMLPersAttrListTContext::IsPersistent() const
     164             : {
     165           0 :     return sal_True;
     166             : }
     167             : 
     168           0 : void XMLPersAttrListTContext::Export()
     169             : {
     170           0 :     GetTransformer().GetDocHandler()->startElement( m_aElemQName, m_xAttrList );
     171           0 :     ExportContent();
     172           0 :     GetTransformer().GetDocHandler()->endElement( m_aElemQName );
     173           0 : }
     174             : 
     175           0 : void XMLPersAttrListTContext::ExportContent()
     176             : {
     177             :     // nothing to export
     178           0 : }
     179             : 
     180           0 : Reference< XAttributeList > XMLPersAttrListTContext::GetAttrList() const
     181             : {
     182           0 :     return m_xAttrList;
     183             : }
     184             : 
     185             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10