LCOV - code coverage report
Current view: top level - xmloff/source/script - XMLStarBasicContextFactory.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 35 38 92.1 %
Date: 2014-11-03 Functions: 4 4 100.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 "XMLStarBasicContextFactory.hxx"
      21             : #include <xmloff/XMLEventsImportContext.hxx>
      22             : #include <xmloff/xmlimp.hxx>
      23             : #include <xmloff/nmspmap.hxx>
      24             : #include <xmloff/xmlnmspe.hxx>
      25             : #include <xmloff/xmltoken.hxx>
      26             : 
      27             : 
      28             : using namespace ::xmloff::token;
      29             : 
      30             : using ::com::sun::star::xml::sax::XAttributeList;
      31             : using ::com::sun::star::beans::PropertyValue;
      32             : using ::com::sun::star::uno::Reference;
      33             : using ::com::sun::star::uno::Sequence;
      34             : using ::com::sun::star::uno::Any;
      35             : 
      36             : 
      37          48 : XMLStarBasicContextFactory::XMLStarBasicContextFactory() :
      38             :     sEventType("EventType"),
      39             :     sLibrary("Library"),
      40             :     sMacroName("MacroName"),
      41          48 :     sStarBasic("StarBasic")
      42             : {
      43          48 : }
      44             : 
      45          96 : XMLStarBasicContextFactory::~XMLStarBasicContextFactory()
      46             : {
      47          96 : }
      48             : 
      49           6 : SvXMLImportContext* XMLStarBasicContextFactory::CreateContext(
      50             :     SvXMLImport& rImport,
      51             :     sal_uInt16 p_nPrefix,
      52             :     const OUString& rLocalName,
      53             :     const Reference<XAttributeList> & xAttrList,
      54             :     XMLEventsImportContext* rEvents,
      55             :     const OUString& rApiEventName,
      56             :     const OUString& /*rApiLanguage*/)
      57             : {
      58           6 :     OUString sLibraryVal;
      59          12 :     OUString sMacroNameVal;
      60             : 
      61           6 :     sal_Int16 nCount = xAttrList->getLength();
      62          24 :     for(sal_Int16 nAttr = 0; nAttr < nCount; nAttr++)
      63             :     {
      64          18 :         OUString sLocalName;
      65          18 :         sal_uInt16 nPrefix = rImport.GetNamespaceMap().
      66          36 :             GetKeyByAttrName( xAttrList->getNameByIndex(nAttr), &sLocalName );
      67             : 
      68          18 :         if (XML_NAMESPACE_SCRIPT == nPrefix)
      69             :         {
      70          18 :             if (IsXMLToken(sLocalName, XML_MACRO_NAME))
      71             :             {
      72           6 :                 sMacroNameVal = xAttrList->getValueByIndex(nAttr);
      73             :             }
      74             :             // else: ingore
      75             :         }
      76             :         // else: ignore
      77          18 :     }
      78             : 
      79           6 :     const OUString& rApp = GetXMLToken( XML_APPLICATION );
      80           6 :     const OUString& rDoc = GetXMLToken( XML_DOCUMENT );
      81          30 :     if( sMacroNameVal.getLength() > rApp.getLength()+1 &&
      82          30 :         sMacroNameVal.copy(0,rApp.getLength()).equalsIgnoreAsciiCase( rApp ) &&
      83           0 :         ':' == sMacroNameVal[rApp.getLength()] )
      84             :     {
      85           0 :         sLibraryVal = "StarOffice";
      86           0 :         sMacroNameVal = sMacroNameVal.copy( rApp.getLength()+1 );
      87             :     }
      88          30 :     else if( sMacroNameVal.getLength() > rDoc.getLength()+1 &&
      89          36 :         sMacroNameVal.copy(0,rDoc.getLength()).equalsIgnoreAsciiCase( rDoc ) &&
      90           6 :         ':' == sMacroNameVal[rDoc.getLength()] )
      91             :     {
      92           6 :         sLibraryVal = rDoc;
      93           6 :         sMacroNameVal = sMacroNameVal.copy( rDoc.getLength()+1 );
      94             :     }
      95             : 
      96          12 :     Sequence<PropertyValue> aValues(3);
      97             : 
      98             :     // EventType
      99           6 :     aValues[0].Name = sEventType;
     100           6 :     aValues[0].Value <<= sStarBasic;
     101             : 
     102             :     // library name
     103           6 :     aValues[1].Name = sLibrary;
     104           6 :     aValues[1].Value <<= sLibraryVal;
     105             : 
     106             :     // macro name
     107           6 :     aValues[2].Name = sMacroName;
     108           6 :     aValues[2].Value <<= sMacroNameVal;
     109             : 
     110             :     // add values for event now
     111           6 :     rEvents->AddEventValues(rApiEventName, aValues);
     112             : 
     113             :     // return dummy context
     114          12 :     return new SvXMLImportContext(rImport, p_nPrefix, rLocalName);
     115             : }
     116             : 
     117             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10