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 #include <package/Inflater.hxx>
24 using namespace com::sun::star::uno
;
25 using namespace ZipUtils
;
27 /** Provides general purpose decompression using the ZLIB library */
29 Inflater::Inflater(bool bNoWrap
)
38 pStream
= new z_stream
;
39 /* memset to 0 to set zalloc/opaque etc */
40 memset (pStream
, 0, sizeof(*pStream
));
42 nRes
= inflateInit2(pStream
, bNoWrap
? -MAX_WBITS
: MAX_WBITS
);
63 void SAL_CALL
Inflater::setInput( const Sequence
< sal_Int8
>& rBuffer
)
67 nLength
= rBuffer
.getLength();
72 sal_Int32 SAL_CALL
Inflater::doInflateSegment( Sequence
< sal_Int8
>& rBuffer
, sal_Int32 nNewOffset
, sal_Int32 nNewLength
)
74 if (nNewOffset
< 0 || nNewLength
< 0 || nNewOffset
+ nNewLength
> rBuffer
.getLength())
78 return doInflateBytes(rBuffer
, nNewOffset
, nNewLength
);
81 void SAL_CALL
Inflater::end( )
88 z_inflateEnd(pStream
);
95 sal_Int32
Inflater::doInflateBytes (Sequence
< sal_Int8
> &rBuffer
, sal_Int32 nNewOffset
, sal_Int32 nNewLength
)
99 nLastInflateError
= Z_STREAM_ERROR
;
103 nLastInflateError
= 0;
105 pStream
->next_in
= reinterpret_cast<unsigned char*>( sInBuffer
.getArray() + nOffset
);
106 pStream
->avail_in
= nLength
;
107 pStream
->next_out
= reinterpret_cast < unsigned char* > ( rBuffer
.getArray() + nNewOffset
);
108 pStream
->avail_out
= nNewLength
;
110 #if !defined Z_PREFIX
111 sal_Int32 nResult
= ::inflate(pStream
, Z_PARTIAL_FLUSH
);
113 sal_Int32 nResult
= ::z_inflate(pStream
, Z_PARTIAL_FLUSH
);
121 nOffset
+= nLength
- pStream
->avail_in
;
122 nLength
= pStream
->avail_in
;
123 return nNewLength
- pStream
->avail_out
;
127 nOffset
+= nLength
- pStream
->avail_in
;
128 nLength
= pStream
->avail_in
;
132 // it is no error, if there is no input or no output
133 if ( nLength
&& nNewLength
)
134 nLastInflateError
= nResult
;
140 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */