1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_OOX_OLE_VBAINPUTSTREAM_HXX
21 #define INCLUDED_OOX_OLE_VBAINPUTSTREAM_HXX
24 #include <oox/helper/binaryinputstream.hxx>
31 /** A non-seekable input stream that implements run-length decompression. */
32 class VbaInputStream
: public BinaryInputStream
35 explicit VbaInputStream( BinaryInputStream
& rInStrm
);
37 /** Returns -1, stream size is not determinable. */
38 virtual sal_Int64
size() const SAL_OVERRIDE
;
39 /** Returns -1, stream position is not tracked. */
40 virtual sal_Int64
tell() const SAL_OVERRIDE
;
41 /** Does nothing, stream is not seekable. */
42 virtual void seek( sal_Int64 nPos
) SAL_OVERRIDE
;
43 /** Closes the input stream but not the wrapped stream. */
44 virtual void close() SAL_OVERRIDE
;
46 /** Reads nBytes bytes to the passed sequence.
47 @return Number of bytes really read. */
48 virtual sal_Int32
readData( StreamDataSequence
& orData
, sal_Int32 nBytes
, size_t nAtomSize
= 1 ) SAL_OVERRIDE
;
49 /** Reads nBytes bytes to the (existing) buffer opMem.
50 @return Number of bytes really read. */
51 virtual sal_Int32
readMemory( void* opMem
, sal_Int32 nBytes
, size_t nAtomSize
= 1 ) SAL_OVERRIDE
;
52 /** Seeks the stream forward by the passed number of bytes. */
53 virtual void skip( sal_Int32 nBytes
, size_t nAtomSize
= 1 ) SAL_OVERRIDE
;
56 /** If no data left in chunk buffer, reads the next chunk from stream. */
60 typedef ::std::vector
< sal_uInt8
> ChunkBuffer
;
62 BinaryInputStream
* mpInStrm
;
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */