LCOV - code coverage report
Current view: top level - basegfx/source/tools - stringconversiontools.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 66 69 95.7 %
Date: 2015-06-13 12:38:46 Functions: 6 6 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 <stringconversiontools.hxx>
      21             : #include <rtl/math.hxx>
      22             : 
      23             : namespace basegfx
      24             : {
      25             :     namespace internal
      26             :     {
      27       56126 :         void skipSpaces(sal_Int32&      io_rPos,
      28             :                         const OUString& rStr,
      29             :                         const sal_Int32 nLen)
      30             :         {
      31      170842 :             while( io_rPos < nLen &&
      32       55700 :                     ' ' == rStr[io_rPos] )
      33             :             {
      34        2890 :                 ++io_rPos;
      35             :             }
      36       56126 :         }
      37             : 
      38      157351 :         void skipSpacesAndCommas(sal_Int32&      io_rPos,
      39             :                                  const OUString& rStr,
      40             :                                  const sal_Int32 nLen)
      41             :         {
      42      687337 :             while(io_rPos < nLen
      43      264993 :                     && (' ' == rStr[io_rPos] || ',' == rStr[io_rPos]))
      44             :             {
      45      107642 :                 ++io_rPos;
      46             :             }
      47      157351 :         }
      48             : 
      49      157105 :         bool getDoubleChar(double&         o_fRetval,
      50             :                            sal_Int32&      io_rPos,
      51             :                            const OUString& rStr)
      52             :         {
      53      157105 :             sal_Unicode aChar( rStr[io_rPos] );
      54      157105 :             OUStringBuffer sNumberString;
      55             : 
      56             :             // sign
      57      157105 :             if('+' == aChar || '-' == aChar)
      58             :             {
      59       46468 :                 sNumberString.append(rStr[io_rPos]);
      60       46468 :                 aChar = rStr[++io_rPos];
      61             :             }
      62             : 
      63             :             // numbers before point
      64      565773 :             while('0' <= aChar && '9' >= aChar)
      65             :             {
      66      251563 :                 sNumberString.append(rStr[io_rPos]);
      67      251563 :                 io_rPos++;
      68      251563 :                 aChar = io_rPos < rStr.getLength() ? rStr[io_rPos] : 0;
      69             :             }
      70             : 
      71             :             // point
      72      157105 :             if('.' == aChar)
      73             :             {
      74      120276 :                 sNumberString.append(rStr[io_rPos]);
      75      120276 :                 io_rPos++;
      76      120276 :                 aChar = io_rPos < rStr.getLength() ? rStr[io_rPos] : 0;
      77             :             }
      78             : 
      79             :             // numbers after point
      80      660965 :             while ('0' <= aChar && '9' >= aChar)
      81             :             {
      82      346755 :                 sNumberString.append(rStr[io_rPos]);
      83      346755 :                 io_rPos++;
      84      346755 :                 aChar = io_rPos < rStr.getLength() ? rStr[io_rPos] : 0;
      85             :             }
      86             : 
      87             :             // 'e'
      88      157105 :             if('e' == aChar || 'E' == aChar)
      89             :             {
      90           9 :                 sNumberString.append(rStr[io_rPos]);
      91           9 :                 io_rPos++;
      92           9 :                 aChar = io_rPos < rStr.getLength() ? rStr[io_rPos] : 0;
      93             : 
      94             :                 // sign for 'e'
      95           9 :                 if('+' == aChar || '-' == aChar)
      96             :                 {
      97           9 :                     sNumberString.append(rStr[io_rPos]);
      98           9 :                     io_rPos++;
      99           9 :                     aChar = io_rPos < rStr.getLength() ? rStr[io_rPos] : 0;
     100             :                 }
     101             : 
     102             :                 // number for 'e'
     103          27 :                 while('0' <= aChar && '9' >= aChar)
     104             :                 {
     105           9 :                     sNumberString.append(rStr[io_rPos]);
     106           9 :                     io_rPos++;
     107           9 :                     aChar = io_rPos < rStr.getLength() ? rStr[io_rPos] : 0;
     108             :                 }
     109             :             }
     110             : 
     111      157105 :             if(sNumberString.getLength())
     112             :             {
     113             :                 rtl_math_ConversionStatus eStatus;
     114             :                 o_fRetval = ::rtl::math::stringToDouble( sNumberString.makeStringAndClear(),
     115             :                                                             '.',
     116             :                                                             ',',
     117             :                                                             &eStatus,
     118      157105 :                                                             NULL );
     119      157105 :                 return ( eStatus == rtl_math_ConversionStatus_Ok );
     120             :             }
     121             : 
     122           0 :             return false;
     123             :         }
     124             : 
     125      157105 :         bool importDoubleAndSpaces(double&         o_fRetval,
     126             :                                    sal_Int32&      io_rPos,
     127             :                                    const OUString& rStr,
     128             :                                    const sal_Int32 nLen )
     129             :         {
     130      157105 :             if( !getDoubleChar(o_fRetval, io_rPos, rStr) )
     131           0 :                 return false;
     132             : 
     133      157105 :             skipSpacesAndCommas(io_rPos, rStr, nLen);
     134             : 
     135      157105 :             return true;
     136             :         }
     137             : 
     138         246 :         bool importFlagAndSpaces(sal_Int32&      o_nRetval,
     139             :                                  sal_Int32&      io_rPos,
     140             :                                  const OUString& rStr,
     141             :                                  const sal_Int32 nLen)
     142             :         {
     143         246 :             sal_Unicode aChar( rStr[io_rPos] );
     144             : 
     145         246 :             if('0' == aChar)
     146             :             {
     147         157 :                 o_nRetval = 0;
     148         157 :                 ++io_rPos;
     149             :             }
     150          89 :             else if ('1' == aChar)
     151             :             {
     152          89 :                 o_nRetval = 1;
     153          89 :                 ++io_rPos;
     154             :             }
     155             :             else
     156           0 :                 return false;
     157             : 
     158         246 :             skipSpacesAndCommas(io_rPos, rStr, nLen);
     159             : 
     160         246 :             return true;
     161             :         }
     162             : 
     163        3192 :         void putNumberCharWithSpace(OUStringBuffer& rStr,
     164             :                                     double          fValue,
     165             :                                     double          fOldValue,
     166             :                                     bool            bUseRelativeCoordinates )
     167             :         {
     168        3192 :             if( bUseRelativeCoordinates )
     169        3115 :                 fValue -= fOldValue;
     170             : 
     171        3192 :             const sal_Int32 aLen( rStr.getLength() );
     172        3192 :             if(aLen)
     173             :             {
     174        3192 :                 if( isOnNumberChar(rStr[aLen - 1], false, true) &&
     175             :                     fValue >= 0.0 )
     176             :                 {
     177        1120 :                     rStr.append( ' ' );
     178             :                 }
     179             :             }
     180             : 
     181        3192 :             rStr.append(fValue);
     182        3192 :         }
     183             :     } // namespace internal
     184             : }
     185             : 
     186             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11