update emoji autocorrect entries from po-files
[LibreOffice.git] / include / oox / ole / vbainputstream.hxx
blob330158bee707c22c5d876c656108d54589931382
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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
23 #include <vector>
24 #include <oox/helper/binaryinputstream.hxx>
26 namespace oox {
27 namespace ole {
31 /** A non-seekable input stream that implements run-length decompression. */
32 class VbaInputStream : public BinaryInputStream
34 public:
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;
55 private:
56 /** If no data left in chunk buffer, reads the next chunk from stream. */
57 bool updateChunk();
59 private:
60 typedef ::std::vector< sal_uInt8 > ChunkBuffer;
62 BinaryInputStream* mpInStrm;
63 ChunkBuffer maChunk;
64 size_t mnChunkPos;
69 } // namespace ole
70 } // namespace oox
72 #endif
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */