LCOV - code coverage report
Current view: top level - xmloff/source/style - xmlprcon.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 17 20 85.0 %
Date: 2014-11-03 Functions: 4 5 80.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 <xmloff/xmlprcon.hxx>
      21             : #include <xmloff/xmlimp.hxx>
      22             : #include <xmloff/xmltypes.hxx>
      23             : #include <xmloff/maptype.hxx>
      24             : 
      25             : using namespace ::com::sun::star;
      26             : using namespace ::std;
      27             : 
      28       31292 : SvXMLPropertySetContext::SvXMLPropertySetContext(
      29             :     SvXMLImport& rImp, sal_uInt16 nPrfx,
      30             :     const OUString& rLName,
      31             :     const uno::Reference< xml::sax::XAttributeList >& xAttrList,
      32             :     sal_uInt32 nFam,
      33             :     vector< XMLPropertyState > &rProps,
      34             :     const rtl::Reference < SvXMLImportPropertyMapper >  &rMap,
      35             :     sal_Int32 nSIdx, sal_Int32 nEIdx )
      36             : :   SvXMLImportContext( rImp, nPrfx, rLName )
      37             : ,   mnStartIdx( nSIdx )
      38             : ,   mnEndIdx( nEIdx )
      39             : ,   mnFamily( nFam )
      40             : ,   mrProperties( rProps )
      41       31292 : ,   mxMapper( rMap )
      42             : {
      43             :     mxMapper->importXML( mrProperties, xAttrList,
      44       31292 :                         GetImport().GetMM100UnitConverter(),
      45       31292 :                         GetImport().GetNamespaceMap(), mnFamily,
      46       62584 :                         mnStartIdx, mnEndIdx );
      47       31292 : }
      48             : 
      49       37026 : SvXMLPropertySetContext::~SvXMLPropertySetContext()
      50             : {
      51       37026 : }
      52             : 
      53        3076 : SvXMLImportContext *SvXMLPropertySetContext::CreateChildContext(
      54             :     sal_uInt16 nPrefix,
      55             :     const OUString& rLocalName,
      56             :     const uno::Reference< xml::sax::XAttributeList >& xAttrList )
      57             : {
      58             :     rtl::Reference< XMLPropertySetMapper > aSetMapper(
      59        3076 :             mxMapper->getPropertySetMapper() );
      60             :     sal_Int32 nEntryIndex = aSetMapper->GetEntryIndex( nPrefix, rLocalName,
      61        3076 :                                                        mnFamily, mnStartIdx );
      62             : 
      63        6152 :     if( ( nEntryIndex != -1 ) && (-1 == mnEndIdx || nEntryIndex < mnEndIdx ) &&
      64        3076 :         ( 0 != ( aSetMapper->GetEntryFlags( nEntryIndex )
      65        3076 :                          & MID_FLAG_ELEMENT_ITEM_IMPORT ) ) )
      66             :     {
      67        3076 :         XMLPropertyState aProp( nEntryIndex );
      68             :         return CreateChildContext( nPrefix, rLocalName, xAttrList,
      69        3076 :                                    mrProperties, aProp );
      70             :     }
      71             :     else
      72             :     {
      73           0 :         return new SvXMLImportContext( GetImport(), nPrefix, rLocalName );
      74        3076 :     }
      75             : }
      76             : 
      77             : /** This method is called from this instance implementation of
      78             :     CreateChildContext if the element matches an entry in the
      79             :     SvXMLImportItemMapper with the mid flag MID_FLAG_ELEMENT
      80             : */
      81           0 : SvXMLImportContext *SvXMLPropertySetContext::CreateChildContext(
      82             :     sal_uInt16 nPrefix,
      83             :     const OUString& rLocalName,
      84             :     const uno::Reference< xml::sax::XAttributeList >&,
      85             :     ::std::vector< XMLPropertyState > &,
      86             :     const XMLPropertyState& )
      87             : {
      88           0 :     return new SvXMLImportContext( GetImport(), nPrefix, rLocalName );
      89             : }
      90             : 
      91             : 
      92             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10