LibreOffice Module oox (master) 1
vbahelper.cxx
Go to the documentation of this file.
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 <osl/diagnose.h>
22#include <o3tl/string_view.hxx>
24
25namespace oox::ole {
26
27using namespace ::com::sun::star::uno;
28
29bool VbaHelper::readDirRecord( sal_uInt16& rnRecId, StreamDataSequence& rRecData, BinaryInputStream& rInStrm )
30{
31 // read the record header
32 sal_Int32 nRecSize;
33 rnRecId = rInStrm.readuInt16();
34 nRecSize = rInStrm.readInt32();
35 // for no obvious reason, PROJECTVERSION record contains size field of 4, but is 6 bytes long
36 if( rnRecId == VBA_ID_PROJECTVERSION )
37 {
38 OSL_ENSURE( nRecSize == 4, "VbaHelper::readDirRecord - unexpected record size for PROJECTVERSION" );
39 nRecSize = 6;
40 }
41 // read the record contents into the passed sequence
42 return !rInStrm.isEof() && (rInStrm.readData( rRecData, nRecSize ) == nRecSize);
43}
44
45bool VbaHelper::extractKeyValue( OUString& rKey, OUString& rValue, std::u16string_view rKeyValue )
46{
47 size_t nEqSignPos = rKeyValue.find( '=' );
48 if( nEqSignPos > 0 && nEqSignPos != std::u16string_view::npos )
49 {
50 rKey = o3tl::trim(rKeyValue.substr( 0, nEqSignPos ));
51 rValue = o3tl::trim(rKeyValue.substr( nEqSignPos + 1 ));
52 return !rKey.isEmpty() && !rValue.isEmpty();
53 }
54 return false;
55}
56
57} // namespace oox::ole
58
59/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Interface for binary input stream classes.
virtual sal_Int32 readData(StreamDataSequence &orData, sal_Int32 nBytes, size_t nAtomSize=1)=0
Derived classes implement reading nBytes bytes to the passed sequence.
bool isEof() const
Returns true, if the stream position is invalid (EOF).
std::basic_string_view< charT, traits > trim(std::basic_string_view< charT, traits > str)
bool readDirRecord(sal_uInt16 &rnRecId, StreamDataSequence &rRecData, BinaryInputStream &rInStrm)
Reads the next record from the VBA directory stream 'dir'.
Definition: vbahelper.cxx:29
bool extractKeyValue(OUString &rKey, OUString &rValue, std::u16string_view rKeyValue)
Extracts a key/value pair from a string separated by an equality sign.
Definition: vbahelper.cxx:45
const sal_uInt16 VBA_ID_PROJECTVERSION
Definition: vbahelper.hxx:51
css::uno::Sequence< sal_Int8 > StreamDataSequence