LCOV - code coverage report
Current view: top level - dbaccess/source/filter/xml - xmlDataSourceInfo.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 33 63 52.4 %
Date: 2012-08-25 Functions: 3 3 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 25 100 25.0 %

           Branch data     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 "xmlDataSourceInfo.hxx"
      21                 :            : #include "xmlDataSource.hxx"
      22                 :            : #include "xmlfilter.hxx"
      23                 :            : #include <xmloff/xmltoken.hxx>
      24                 :            : #include <xmloff/xmlnmspe.hxx>
      25                 :            : #include <xmloff/nmspmap.hxx>
      26                 :            : #include "xmlEnums.hxx"
      27                 :            : #include "xmlstrings.hrc"
      28                 :            : #include <com/sun/star/beans/PropertyValue.hpp>
      29                 :            : #include <tools/debug.hxx>
      30                 :            : #include <vector>
      31                 :            : 
      32                 :            : namespace dbaxml
      33                 :            : {
      34                 :            :     using namespace ::com::sun::star::uno;
      35                 :            :     using namespace ::com::sun::star::xml::sax;
      36                 :            : DBG_NAME(OXMLDataSourceInfo)
      37                 :            : 
      38                 :         12 : OXMLDataSourceInfo::OXMLDataSourceInfo( ODBFilter& rImport
      39                 :            :                 ,sal_uInt16 nPrfx
      40                 :            :                 ,const ::rtl::OUString& _sLocalName
      41                 :            :                 ,const Reference< XAttributeList > & _xAttrList
      42                 :            :                 ,const sal_uInt16 _nToken) :
      43                 :         12 :     SvXMLImportContext( rImport, nPrfx, _sLocalName )
      44                 :            : {
      45                 :            :     DBG_CTOR(OXMLDataSourceInfo,NULL);
      46                 :            : 
      47                 :            :     OSL_ENSURE(_xAttrList.is(),"Attribute list is NULL!");
      48                 :         12 :     const SvXMLNamespaceMap& rMap = rImport.GetNamespaceMap();
      49         [ +  - ]:         12 :     const SvXMLTokenMap& rTokenMap = rImport.GetDataSourceInfoElemTokenMap();
      50                 :            : 
      51                 :         12 :     PropertyValue aProperty;
      52 [ +  - ][ +  - ]:         12 :     sal_Int16 nLength = (_xAttrList.is()) ? _xAttrList->getLength() : 0;
                 [ +  - ]
      53                 :         12 :     bool bAutoEnabled = false;
      54                 :         12 :     bool bFoundField = false,bFoundThousand = false, bFoundCharset = false;
      55         [ +  - ]:         12 :     ::std::vector< sal_uInt16 > aTokens;
      56         [ +  + ]:         24 :     for(sal_Int16 i = 0; i < nLength; ++i)
      57                 :            :     {
      58                 :         12 :         ::rtl::OUString sLocalName;
      59 [ +  - ][ +  - ]:         12 :         rtl::OUString sAttrName = _xAttrList->getNameByIndex( i );
      60         [ +  - ]:         12 :         sal_uInt16 nPrefix = rMap.GetKeyByAttrName( sAttrName,&sLocalName );
      61 [ +  - ][ +  - ]:         12 :         rtl::OUString sValue = _xAttrList->getValueByIndex( i );
      62                 :            : 
      63                 :         12 :         aProperty.Name = ::rtl::OUString();
      64                 :            : 
      65         [ +  - ]:         12 :         sal_uInt16 nToken = rTokenMap.Get( nPrefix, sLocalName );
      66         [ +  - ]:         12 :         aTokens.push_back(nToken);
      67   [ -  -  -  -  :         12 :         switch( nToken )
             -  -  +  - ]
      68                 :            :         {
      69                 :            :             case XML_TOK_ADDITIONAL_COLUMN_STATEMENT:
      70         [ #  # ]:          0 :                 aProperty.Name = PROPERTY_AUTOINCREMENTCREATION;
      71                 :          0 :                 bAutoEnabled = true;
      72                 :          0 :                 break;
      73                 :            :             case XML_TOK_ROW_RETRIEVING_STATEMENT:
      74         [ #  # ]:          0 :                 aProperty.Name = INFO_AUTORETRIEVEVALUE;
      75                 :          0 :                 bAutoEnabled = true;
      76                 :          0 :                 break;
      77                 :            :             case XML_TOK_STRING:
      78         [ #  # ]:          0 :                 aProperty.Name = INFO_TEXTDELIMITER;
      79                 :          0 :                 break;
      80                 :            :             case XML_TOK_FIELD:
      81         [ #  # ]:          0 :                 aProperty.Name = INFO_FIELDDELIMITER;
      82                 :          0 :                 bFoundField = true;
      83                 :          0 :                 break;
      84                 :            :             case XML_TOK_DECIMAL:
      85         [ #  # ]:          0 :                 aProperty.Name = INFO_DECIMALDELIMITER;
      86                 :          0 :                 break;
      87                 :            :             case XML_TOK_THOUSAND:
      88         [ #  # ]:          0 :                 aProperty.Name = INFO_THOUSANDSDELIMITER;
      89                 :          0 :                 bFoundThousand = true;
      90                 :          0 :                 break;
      91                 :            :             case XML_TOK_ENCODING:
      92         [ +  - ]:         12 :                 aProperty.Name = INFO_CHARSET;
      93                 :         12 :                 bFoundCharset = true;
      94                 :         12 :                 break;
      95                 :            :         }
      96         [ +  - ]:         12 :         if ( !aProperty.Name.isEmpty() )
      97                 :            :         {
      98         [ +  - ]:         12 :             aProperty.Value <<= sValue;
      99         [ +  - ]:         12 :             rImport.addInfo(aProperty);
     100                 :            :         }
     101                 :         12 :     }
     102         [ -  + ]:         12 :     if ( bAutoEnabled )
     103                 :            :     {
     104         [ #  # ]:          0 :         aProperty.Name = INFO_AUTORETRIEVEENABLED;
     105         [ #  # ]:          0 :         aProperty.Value <<= sal_True;
     106         [ #  # ]:          0 :         rImport.addInfo(aProperty);
     107                 :            :     }
     108         [ +  - ]:         12 :     if ( rImport.isNewFormat() )
     109                 :            :     {
     110         [ -  + ]:         12 :         if ( XML_TOK_DELIMITER == _nToken )
     111                 :            :         {
     112         [ #  # ]:          0 :             if ( !bFoundField )
     113                 :            :             {
     114         [ #  # ]:          0 :                 aProperty.Name = INFO_FIELDDELIMITER;
     115 [ #  # ][ #  # ]:          0 :                 aProperty.Value <<= ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(";"));
     116         [ #  # ]:          0 :                 rImport.addInfo(aProperty);
     117                 :            :             }
     118         [ #  # ]:          0 :             if ( !bFoundThousand )
     119                 :            :             {
     120         [ #  # ]:          0 :                 aProperty.Name = INFO_THOUSANDSDELIMITER;
     121 [ #  # ][ #  # ]:          0 :                 aProperty.Value <<= ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(","));
     122         [ #  # ]:          0 :                 rImport.addInfo(aProperty);
     123                 :            :             }
     124                 :            :         }
     125 [ +  - ][ -  + ]:         12 :         if ( XML_TOK_FONT_CHARSET == _nToken && !bFoundCharset )
     126                 :            :         {
     127         [ #  # ]:          0 :             aProperty.Name = INFO_CHARSET;
     128 [ #  # ][ #  # ]:          0 :             aProperty.Value <<= ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("utf8"));
     129         [ #  # ]:          0 :             rImport.addInfo(aProperty);
     130                 :            :         }
     131                 :         12 :     }
     132                 :         12 : }
     133                 :            : // -----------------------------------------------------------------------------
     134                 :            : 
     135                 :         12 : OXMLDataSourceInfo::~OXMLDataSourceInfo()
     136                 :            : {
     137                 :            : 
     138                 :            :     DBG_DTOR(OXMLDataSourceInfo,NULL);
     139         [ -  + ]:         24 : }
     140                 :            : // -----------------------------------------------------------------------------
     141                 :            : //----------------------------------------------------------------------------
     142                 :            : } // namespace dbaxml
     143                 :            : // -----------------------------------------------------------------------------
     144                 :            : 
     145                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10