office-gobmx/oox/source/helper/storagebase.cxx
Olivier Hallot 6af59644d6 Fix for fdo43460 Part XXV getLength() to isEmpty()
Please find attached a partial fix for Easy Hack FDO43460

Part XXI
Module
oox
2012-01-02 19:17:17 +01:00

284 lines
8.8 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include "oox/helper/storagebase.hxx"
#include <com/sun/star/embed/XTransactedObject.hpp>
#include <com/sun/star/io/XStream.hpp>
#include <rtl/ustrbuf.hxx>
#include "oox/helper/binaryinputstream.hxx"
#include "oox/helper/binaryoutputstream.hxx"
namespace oox {
// ============================================================================
using namespace ::com::sun::star::embed;
using namespace ::com::sun::star::io;
using namespace ::com::sun::star::uno;
using ::rtl::OUString;
using ::rtl::OUStringBuffer;
// ============================================================================
namespace {
void lclSplitFirstElement( OUString& orElement, OUString& orRemainder, OUString aFullName )
{
sal_Int32 nSlashPos = aFullName.indexOf( '/' );
// strip leading slashes
while( nSlashPos == 0 )
{
aFullName = aFullName.copy(1);
nSlashPos = aFullName.indexOf( '/' );
}
if( (0 <= nSlashPos) && (nSlashPos < aFullName.getLength()) )
{
orElement = aFullName.copy( 0, nSlashPos );
orRemainder = aFullName.copy( nSlashPos + 1 );
}
else
{
orElement = aFullName;
}
}
} // namespace
// ----------------------------------------------------------------------------
StorageBase::StorageBase( const Reference< XInputStream >& rxInStream, bool bBaseStreamAccess ) :
mxInStream( rxInStream ),
mbBaseStreamAccess( bBaseStreamAccess ),
mbReadOnly( true )
{
OSL_ENSURE( mxInStream.is(), "StorageBase::StorageBase - missing base input stream" );
}
StorageBase::StorageBase( const Reference< XStream >& rxOutStream, bool bBaseStreamAccess ) :
mxOutStream( rxOutStream ),
mbBaseStreamAccess( bBaseStreamAccess ),
mbReadOnly( false )
{
OSL_ENSURE( mxOutStream.is(), "StorageBase::StorageBase - missing base output stream" );
}
StorageBase::StorageBase( const StorageBase& rParentStorage, const OUString& rStorageName, bool bReadOnly ) :
maParentPath( rParentStorage.getPath() ),
maStorageName( rStorageName ),
mbBaseStreamAccess( false ),
mbReadOnly( bReadOnly )
{
}
StorageBase::~StorageBase()
{
}
bool StorageBase::isStorage() const
{
return implIsStorage();
}
bool StorageBase::isRootStorage() const
{
return implIsStorage() && maStorageName.isEmpty();
}
bool StorageBase::isReadOnly() const
{
return mbReadOnly;
}
Reference< XStorage > StorageBase::getXStorage() const
{
return implGetXStorage();
}
const OUString& StorageBase::getName() const
{
return maStorageName;
}
OUString StorageBase::getPath() const
{
OUStringBuffer aBuffer( maParentPath );
if( aBuffer.getLength() > 0 )
aBuffer.append( sal_Unicode( '/' ) );
aBuffer.append( maStorageName );
return aBuffer.makeStringAndClear();
}
void StorageBase::getElementNames( ::std::vector< OUString >& orElementNames ) const
{
orElementNames.clear();
implGetElementNames( orElementNames );
}
StorageRef StorageBase::openSubStorage( const OUString& rStorageName, bool bCreateMissing )
{
StorageRef xSubStorage;
OSL_ENSURE( !bCreateMissing || !mbReadOnly, "StorageBase::openSubStorage - cannot create substorage in read-only mode" );
if( !bCreateMissing || !mbReadOnly )
{
OUString aElement, aRemainder;
lclSplitFirstElement( aElement, aRemainder, rStorageName );
if( !aElement.isEmpty() )
xSubStorage = getSubStorage( aElement, bCreateMissing );
if( xSubStorage.get() && !aRemainder.isEmpty() )
xSubStorage = xSubStorage->openSubStorage( aRemainder, bCreateMissing );
}
return xSubStorage;
}
Reference< XInputStream > StorageBase::openInputStream( const OUString& rStreamName )
{
Reference< XInputStream > xInStream;
OUString aElement, aRemainder;
lclSplitFirstElement( aElement, aRemainder, rStreamName );
if( !aElement.isEmpty() )
{
if( !aRemainder.isEmpty() )
{
StorageRef xSubStorage = getSubStorage( aElement, false );
if( xSubStorage.get() )
xInStream = xSubStorage->openInputStream( aRemainder );
}
else
{
xInStream = implOpenInputStream( aElement );
}
}
else if( mbBaseStreamAccess )
{
xInStream = mxInStream;
}
return xInStream;
}
Reference< XOutputStream > StorageBase::openOutputStream( const OUString& rStreamName )
{
Reference< XOutputStream > xOutStream;
OSL_ENSURE( !mbReadOnly, "StorageBase::openOutputStream - cannot create output stream in read-only mode" );
if( !mbReadOnly )
{
OUString aElement, aRemainder;
lclSplitFirstElement( aElement, aRemainder, rStreamName );
if( !aElement.isEmpty() )
{
if( !aRemainder.isEmpty() )
{
StorageRef xSubStorage = getSubStorage( aElement, true );
if( xSubStorage.get() )
xOutStream = xSubStorage->openOutputStream( aRemainder );
}
else
{
xOutStream = implOpenOutputStream( aElement );
}
}
else if( mbBaseStreamAccess )
{
xOutStream = mxOutStream->getOutputStream();
}
}
return xOutStream;
}
void StorageBase::copyToStorage( StorageBase& rDestStrg, const OUString& rElementName )
{
OSL_ENSURE( rDestStrg.isStorage() && !rDestStrg.isReadOnly(), "StorageBase::copyToStorage - invalid destination" );
OSL_ENSURE( !rElementName.isEmpty(), "StorageBase::copyToStorage - invalid element name" );
if( rDestStrg.isStorage() && !rDestStrg.isReadOnly() && !rElementName.isEmpty() )
{
StorageRef xSubStrg = openSubStorage( rElementName, false );
if( xSubStrg.get() )
{
StorageRef xDestSubStrg = rDestStrg.openSubStorage( rElementName, true );
if( xDestSubStrg.get() )
xSubStrg->copyStorageToStorage( *xDestSubStrg );
}
else
{
Reference< XInputStream > xInStrm = openInputStream( rElementName );
if( xInStrm.is() )
{
Reference< XOutputStream > xOutStrm = rDestStrg.openOutputStream( rElementName );
if( xOutStrm.is() )
{
BinaryXInputStream aInStrm( xInStrm, true );
BinaryXOutputStream aOutStrm( xOutStrm, true );
aInStrm.copyToStream( aOutStrm );
}
}
}
}
}
void StorageBase::copyStorageToStorage( StorageBase& rDestStrg )
{
OSL_ENSURE( rDestStrg.isStorage() && !rDestStrg.isReadOnly(), "StorageBase::copyToStorage - invalid destination" );
if( rDestStrg.isStorage() && !rDestStrg.isReadOnly() )
{
::std::vector< OUString > aElements;
getElementNames( aElements );
for( ::std::vector< OUString >::iterator aIt = aElements.begin(), aEnd = aElements.end(); aIt != aEnd; ++aIt )
copyToStorage( rDestStrg, *aIt );
}
}
void StorageBase::commit()
{
OSL_ENSURE( !mbReadOnly, "StorageBase::commit - cannot commit in read-only mode" );
if( !mbReadOnly )
{
// commit all open substorages
maSubStorages.forEachMem( &StorageBase::commit );
// commit this storage
implCommit();
}
}
// private --------------------------------------------------------------------
StorageRef StorageBase::getSubStorage( const OUString& rElementName, bool bCreateMissing )
{
StorageRef& rxSubStrg = maSubStorages[ rElementName ];
if( !rxSubStrg )
rxSubStrg = implOpenSubStorage( rElementName, bCreateMissing );
return rxSubStrg;
}
// ============================================================================
} // namespace oox
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */