2001-04-19 08:15:53 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* $RCSfile: ZipPackageStream.hxx,v $
|
|
|
|
*
|
2004-11-26 13:46:38 -06:00
|
|
|
* $Revision: 1.17 $
|
2001-04-19 08:15:53 -05:00
|
|
|
*
|
2004-11-26 13:46:38 -06:00
|
|
|
* last change: $Author: hr $ $Date: 2004-11-26 20:46:38 $
|
2001-04-19 08:15:53 -05:00
|
|
|
*
|
|
|
|
* The Contents of this file are made available subject to the terms of
|
|
|
|
* either of the following licenses
|
|
|
|
*
|
|
|
|
* - GNU Lesser General Public License Version 2.1
|
|
|
|
* - Sun Industry Standards Source License Version 1.1
|
|
|
|
*
|
|
|
|
* Sun Microsystems Inc., October, 2000
|
|
|
|
*
|
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2000 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Sun Industry Standards Source License Version 1.1
|
|
|
|
* =================================================
|
|
|
|
* The contents of this file are subject to the Sun Industry Standards
|
|
|
|
* Source License Version 1.1 (the "License"); You may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of the
|
|
|
|
* License at http://www.openoffice.org/license.html.
|
|
|
|
*
|
|
|
|
* Software provided under this License is provided on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
|
|
|
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
|
|
|
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
|
|
|
* See the License for the specific provisions governing your rights and
|
|
|
|
* obligations concerning the Software.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
|
|
|
*
|
|
|
|
* Copyright: 2000 by Sun Microsystems, Inc.
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s): Martin Gallwey (gallwey@sun.com)
|
|
|
|
*
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef _ZIP_PACKAGE_STREAM_HXX
|
|
|
|
#define _ZIP_PACKAGE_STREAM_HXX
|
|
|
|
|
|
|
|
#ifndef _COM_SUN_STAR_IO_XACTIVEDATASINK_HPP_
|
|
|
|
#include <com/sun/star/io/XActiveDataSink.hpp>
|
|
|
|
#endif
|
2003-09-11 04:18:17 -05:00
|
|
|
#ifndef _COM_SUN_STAR_PACKAGES_XDATASINKENCRSUPPORT_HPP_
|
|
|
|
#include <com/sun/star/packages/XDataSinkEncrSupport.hpp>
|
|
|
|
#endif
|
|
|
|
|
2001-04-19 08:15:53 -05:00
|
|
|
#ifndef _ZIP_PACKAGE_ENTRY_HXX
|
|
|
|
#include <ZipPackageEntry.hxx>
|
|
|
|
#endif
|
2001-04-27 08:56:07 -05:00
|
|
|
#ifndef _VOS_REF_H_
|
|
|
|
#include <vos/ref.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _ENCRYPTION_DATA_HXX_
|
|
|
|
#include <EncryptionData.hxx>
|
|
|
|
#endif
|
2003-09-11 04:18:17 -05:00
|
|
|
#ifndef _CPPUHELPER_IMPLBASE2_HXX
|
|
|
|
#include <cppuhelper/implbase2.hxx>
|
2001-10-02 16:29:08 -05:00
|
|
|
#endif
|
|
|
|
|
2004-02-03 11:01:44 -06:00
|
|
|
#ifndef __MUTEXHOLDER_HXX_
|
|
|
|
#include <mutexholder.hxx>
|
|
|
|
#endif
|
|
|
|
|
2003-09-11 04:18:17 -05:00
|
|
|
#define PACKAGE_STREAM_NOTSET 0
|
|
|
|
#define PACKAGE_STREAM_PACKAGEMEMBER 1
|
|
|
|
#define PACKAGE_STREAM_DETECT 2
|
|
|
|
#define PACKAGE_STREAM_DATA 3
|
|
|
|
#define PACKAGE_STREAM_RAW 4
|
2001-04-19 08:15:53 -05:00
|
|
|
|
2001-04-27 08:56:07 -05:00
|
|
|
class ZipPackage;
|
2001-09-14 09:23:03 -05:00
|
|
|
struct ZipEntry;
|
2003-09-11 04:18:17 -05:00
|
|
|
class ZipPackageStream : public cppu::ImplInheritanceHelper2
|
2001-11-15 13:27:48 -06:00
|
|
|
<
|
|
|
|
ZipPackageEntry,
|
2003-09-11 04:18:17 -05:00
|
|
|
::com::sun::star::io::XActiveDataSink,
|
|
|
|
::com::sun::star::packages::XDataSinkEncrSupport
|
2001-11-15 13:27:48 -06:00
|
|
|
>
|
2001-04-19 08:15:53 -05:00
|
|
|
{
|
2001-11-15 13:27:48 -06:00
|
|
|
static com::sun::star::uno::Sequence < sal_Int8 > aImplementationId;
|
2001-04-27 08:56:07 -05:00
|
|
|
protected:
|
2001-04-19 08:15:53 -05:00
|
|
|
com::sun::star::uno::Reference < com::sun::star::io::XInputStream > xStream;
|
2004-02-03 11:01:44 -06:00
|
|
|
const ::com::sun::star::uno::Reference < com::sun::star::lang::XMultiServiceFactory > m_xFactory;
|
2001-04-27 08:56:07 -05:00
|
|
|
ZipPackage &rZipPackage;
|
2003-09-11 04:18:17 -05:00
|
|
|
sal_Bool bToBeCompressed, bToBeEncrypted, bHaveOwnKey, bIsEncrypted;
|
2001-04-27 08:56:07 -05:00
|
|
|
vos::ORef < EncryptionData > xEncryptionData;
|
2003-09-11 04:18:17 -05:00
|
|
|
|
|
|
|
sal_uInt8 m_nStreamMode;
|
|
|
|
sal_uInt32 m_nMagicalHackPos;
|
|
|
|
sal_uInt32 m_nMagicalHackSize;
|
|
|
|
|
2004-02-03 11:01:44 -06:00
|
|
|
SotMutexHolderRef m_aSharedMutexRef;
|
|
|
|
|
2001-04-19 08:15:53 -05:00
|
|
|
public:
|
2001-09-24 12:23:40 -05:00
|
|
|
sal_Bool HasOwnKey () { return bHaveOwnKey;}
|
2001-09-14 09:23:03 -05:00
|
|
|
sal_Bool IsToBeCompressed () { return bToBeCompressed;}
|
|
|
|
sal_Bool IsToBeEncrypted () { return bToBeEncrypted;}
|
2001-11-15 13:27:48 -06:00
|
|
|
sal_Bool IsEncrypted () { return bIsEncrypted;}
|
2003-09-11 04:18:17 -05:00
|
|
|
sal_Bool IsPackageMember () { return m_nStreamMode == PACKAGE_STREAM_PACKAGEMEMBER;}
|
2001-09-06 03:22:44 -05:00
|
|
|
vos::ORef < EncryptionData > & getEncryptionData ()
|
2001-04-27 08:56:07 -05:00
|
|
|
{ return xEncryptionData;}
|
2001-05-08 08:02:21 -05:00
|
|
|
const com::sun::star::uno::Sequence < sal_Int8 >& getKey ()
|
|
|
|
{ return xEncryptionData->aKey;}
|
|
|
|
const com::sun::star::uno::Sequence < sal_uInt8 >& getInitialisationVector ()
|
2001-04-27 08:56:07 -05:00
|
|
|
{ return xEncryptionData->aInitVector;}
|
2001-09-06 03:22:44 -05:00
|
|
|
const com::sun::star::uno::Sequence < sal_uInt8 >& getDigest ()
|
|
|
|
{ return xEncryptionData->aDigest;}
|
2001-05-08 08:02:21 -05:00
|
|
|
const com::sun::star::uno::Sequence < sal_uInt8 >& getSalt ()
|
2001-04-27 08:56:07 -05:00
|
|
|
{ return xEncryptionData->aSalt;}
|
2001-05-08 08:02:21 -05:00
|
|
|
const sal_Int32 getIterationCount ()
|
2001-04-27 08:56:07 -05:00
|
|
|
{ return xEncryptionData->nIterationCount;}
|
2001-05-08 08:02:21 -05:00
|
|
|
const sal_Int32 getSize ()
|
|
|
|
{ return aEntry.nSize;}
|
2001-04-27 08:56:07 -05:00
|
|
|
|
2003-09-11 04:18:17 -05:00
|
|
|
sal_uInt8 GetStreamMode() { return m_nStreamMode; }
|
|
|
|
sal_uInt32 GetMagicalHackPos() { return m_nMagicalHackPos; }
|
|
|
|
sal_uInt32 GetMagicalHackSize() { return m_nMagicalHackSize; }
|
|
|
|
|
2001-09-14 09:23:03 -05:00
|
|
|
void SetToBeCompressed (sal_Bool bNewValue) { bToBeCompressed = bNewValue;}
|
2001-11-15 13:27:48 -06:00
|
|
|
void SetIsEncrypted (sal_Bool bNewValue) { bIsEncrypted = bNewValue;}
|
2001-09-14 09:23:03 -05:00
|
|
|
void SetToBeEncrypted (sal_Bool bNewValue)
|
|
|
|
{
|
|
|
|
bToBeEncrypted = bNewValue;
|
|
|
|
if ( bToBeEncrypted && xEncryptionData.isEmpty())
|
|
|
|
xEncryptionData = new EncryptionData;
|
2001-11-15 13:27:48 -06:00
|
|
|
else if ( !bToBeEncrypted && !xEncryptionData.isEmpty() )
|
|
|
|
xEncryptionData.unbind();
|
2001-09-14 09:23:03 -05:00
|
|
|
}
|
2003-09-11 04:18:17 -05:00
|
|
|
void SetPackageMember (sal_Bool bNewValue);
|
2001-09-14 09:23:03 -05:00
|
|
|
void setKey (const com::sun::star::uno::Sequence < sal_Int8 >& rNewKey )
|
2001-05-08 08:02:21 -05:00
|
|
|
{ xEncryptionData->aKey = rNewKey;}
|
2001-09-14 09:23:03 -05:00
|
|
|
void setInitialisationVector (const com::sun::star::uno::Sequence < sal_uInt8 >& rNewVector )
|
2001-04-27 08:56:07 -05:00
|
|
|
{ xEncryptionData->aInitVector = rNewVector;}
|
2001-09-14 09:23:03 -05:00
|
|
|
void setSalt (const com::sun::star::uno::Sequence < sal_uInt8 >& rNewSalt )
|
2001-04-27 08:56:07 -05:00
|
|
|
{ xEncryptionData->aSalt = rNewSalt;}
|
2001-09-14 09:23:03 -05:00
|
|
|
void setDigest (const com::sun::star::uno::Sequence < sal_uInt8 >& rNewDigest )
|
2001-09-06 03:22:44 -05:00
|
|
|
{ xEncryptionData->aDigest = rNewDigest;}
|
2001-09-14 09:23:03 -05:00
|
|
|
void setIterationCount (const sal_Int32 nNewCount)
|
2001-04-27 08:56:07 -05:00
|
|
|
{ xEncryptionData->nIterationCount = nNewCount;}
|
2001-05-17 10:17:06 -05:00
|
|
|
void setSize (const sal_Int32 nNewSize);
|
2001-04-27 08:56:07 -05:00
|
|
|
|
2004-02-03 11:01:44 -06:00
|
|
|
ZipPackageStream ( ZipPackage & rNewPackage,
|
|
|
|
const ::com::sun::star::uno::Reference < com::sun::star::lang::XMultiServiceFactory >& xFactory );
|
2001-04-19 08:15:53 -05:00
|
|
|
virtual ~ZipPackageStream( void );
|
|
|
|
|
2004-11-26 13:46:38 -06:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > GetRawEncrStreamNoHeaderCopy();
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > TryToGetRawFromDataStream(
|
|
|
|
sal_Bool bAddHeaderForEncr );
|
2004-02-03 11:01:44 -06:00
|
|
|
|
2003-09-11 04:18:17 -05:00
|
|
|
sal_Bool ParsePackageRawStream();
|
|
|
|
|
2001-09-14 09:23:03 -05:00
|
|
|
void setZipEntry( const ZipEntry &rInEntry);
|
2003-09-11 04:18:17 -05:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > SAL_CALL getRawData()
|
2001-04-19 08:15:53 -05:00
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
|
2001-11-15 13:27:48 -06:00
|
|
|
static ::com::sun::star::uno::Sequence < sal_Int8 >& static_getImplementationId()
|
2001-10-02 16:29:08 -05:00
|
|
|
{
|
2001-11-15 13:27:48 -06:00
|
|
|
return aImplementationId;
|
2001-10-02 16:29:08 -05:00
|
|
|
}
|
2001-04-19 08:15:53 -05:00
|
|
|
|
|
|
|
// XActiveDataSink
|
|
|
|
virtual void SAL_CALL setInputStream( const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& aStream )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > SAL_CALL getInputStream( )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
|
2003-09-11 04:18:17 -05:00
|
|
|
// XDataSinkEncrSupport
|
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > SAL_CALL getDataStream()
|
|
|
|
throw ( ::com::sun::star::packages::WrongPasswordException,
|
|
|
|
::com::sun::star::io::IOException,
|
|
|
|
::com::sun::star::uno::RuntimeException );
|
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > SAL_CALL getRawStream()
|
|
|
|
throw ( ::com::sun::star::packages::NoEncryptionException,
|
|
|
|
::com::sun::star::io::IOException,
|
|
|
|
::com::sun::star::uno::RuntimeException );
|
|
|
|
virtual void SAL_CALL setDataStream(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& aStream )
|
|
|
|
throw ( ::com::sun::star::io::IOException,
|
|
|
|
::com::sun::star::uno::RuntimeException );
|
|
|
|
virtual void SAL_CALL setRawStream(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& aStream )
|
|
|
|
throw ( ::com::sun::star::packages::EncryptionNotAllowedException,
|
|
|
|
::com::sun::star::packages::NoRawFormatException,
|
|
|
|
::com::sun::star::io::IOException,
|
2004-11-26 13:46:38 -06:00
|
|
|
::com::sun::star::uno::RuntimeException );
|
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > SAL_CALL getPlainRawStream()
|
|
|
|
throw ( ::com::sun::star::io::IOException,
|
|
|
|
::com::sun::star::uno::RuntimeException );
|
2003-09-11 04:18:17 -05:00
|
|
|
|
2001-04-19 08:15:53 -05:00
|
|
|
// XUnoTunnel
|
|
|
|
virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
2001-04-27 08:56:07 -05:00
|
|
|
|
|
|
|
// XPropertySet
|
|
|
|
virtual void SAL_CALL setPropertyValue( const ::rtl::OUString& aPropertyName, const ::com::sun::star::uno::Any& aValue )
|
|
|
|
throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValue( const ::rtl::OUString& PropertyName )
|
|
|
|
throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
2001-10-02 16:29:08 -05:00
|
|
|
|
2001-11-15 13:27:48 -06:00
|
|
|
// XServiceInfo
|
|
|
|
virtual ::rtl::OUString SAL_CALL getImplementationName( )
|
|
|
|
throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName )
|
|
|
|
throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( )
|
|
|
|
throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
};
|
2001-04-19 08:15:53 -05:00
|
|
|
#endif
|