LCOV - code coverage report
Current view: top level - oox/source/ole - vbahelper.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 12 12 100.0 %
Date: 2014-04-11 Functions: 2 2 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 "oox/ole/vbahelper.hxx"
      21             : #include <rtl/ustrbuf.hxx>
      22             : #include "oox/helper/binaryinputstream.hxx"
      23             : 
      24             : namespace oox {
      25             : namespace ole {
      26             : 
      27             : 
      28             : 
      29             : using namespace ::com::sun::star::uno;
      30             : 
      31             : 
      32             : 
      33        2446 : bool VbaHelper::readDirRecord( sal_uInt16& rnRecId, StreamDataSequence& rRecData, BinaryInputStream& rInStrm )
      34             : {
      35             :     // read the record header
      36             :     sal_Int32 nRecSize;
      37        2446 :     rInStrm >> rnRecId >> nRecSize;
      38             :     // for no obvious reason, PROJECTVERSION record contains size field of 4, but is 6 bytes long
      39        2446 :     if( rnRecId == VBA_ID_PROJECTVERSION )
      40             :     {
      41             :         OSL_ENSURE( nRecSize == 4, "VbaHelper::readDirRecord - unexpected record size for PROJECTVERSION" );
      42          29 :         nRecSize = 6;
      43             :     }
      44             :     // read the record contents into the passed sequence
      45        2446 :     return !rInStrm.isEof() && (rInStrm.readData( rRecData, nRecSize ) == nRecSize);
      46             : }
      47             : 
      48         398 : bool VbaHelper::extractKeyValue( OUString& rKey, OUString& rValue, const OUString& rKeyValue )
      49             : {
      50         398 :     sal_Int32 nEqSignPos = rKeyValue.indexOf( '=' );
      51         398 :     if( nEqSignPos > 0 )
      52             :     {
      53         369 :         rKey = rKeyValue.copy( 0, nEqSignPos ).trim();
      54         369 :         rValue = rKeyValue.copy( nEqSignPos + 1 ).trim();
      55         369 :         return !rKey.isEmpty() && !rValue.isEmpty();
      56             :     }
      57          29 :     return false;
      58             : }
      59             : 
      60             : 
      61             : 
      62             : } // namespace ole
      63             : } // namespace oox
      64             : 
      65             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10