2008-01-17 07:06:10 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 14:13:28 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:13:28 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:13:28 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:13:28 +00:00
|
|
|
* $RCSfile: relationshandler.cxx,v $
|
|
|
|
* $Revision: 1.4 $
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:13:28 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:13:28 +00:00
|
|
|
* 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.
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:13:28 +00:00
|
|
|
* 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).
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:13:28 +00:00
|
|
|
* 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.
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "oox/core/relationshandler.hxx"
|
|
|
|
#include <rtl/ustrbuf.hxx>
|
|
|
|
#include "oox/core/namespaces.hxx"
|
|
|
|
#include "tokens.hxx"
|
|
|
|
|
|
|
|
using ::rtl::OUString;
|
|
|
|
using ::rtl::OUStringBuffer;
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::xml::sax;
|
|
|
|
|
|
|
|
namespace oox {
|
|
|
|
namespace core {
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
/* Build path to relations file from passed path, e.g.:
|
|
|
|
'path/path/file.xml' -> 'path/path/_rels/file.xml.rels'
|
|
|
|
'file.xml' -> '_rels/file.xml.rels'
|
|
|
|
'' -> '_rels/.rels'
|
|
|
|
*/
|
|
|
|
OUString lclGetRelationsPath( const OUString& rFragmentPath )
|
|
|
|
{
|
|
|
|
sal_Int32 nPathLen = ::std::max< sal_Int32 >( rFragmentPath.lastIndexOf( '/' ) + 1, 0 );
|
|
|
|
return
|
|
|
|
OUStringBuffer( rFragmentPath.copy( 0, nPathLen ) ). // file path including slash
|
|
|
|
appendAscii( "_rels/" ). // additional '_rels/' path
|
|
|
|
append( rFragmentPath.copy( nPathLen ) ). // file name after path
|
|
|
|
appendAscii( ".rels" ). // '.rels' suffix
|
|
|
|
makeStringAndClear();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
|
2008-03-05 17:15:12 +00:00
|
|
|
RelationsFragmentHandler::RelationsFragmentHandler( XmlFilterBase& rFilter, RelationsRef xRelations ) :
|
|
|
|
FragmentHandler( rFilter, lclGetRelationsPath( xRelations->getBasePath() ), xRelations ),
|
|
|
|
mxRelations( xRelations )
|
2008-01-17 07:06:10 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Reference< XFastContextHandler > RelationsFragmentHandler::createFastChildContext(
|
|
|
|
sal_Int32 nElement, const Reference< XFastAttributeList >& rxAttribs ) throw (SAXException, RuntimeException)
|
|
|
|
{
|
|
|
|
Reference< XFastContextHandler > xRet;
|
|
|
|
switch( nElement )
|
|
|
|
{
|
|
|
|
case NMSP_PACKAGE_RELATIONSHIPS|XML_Relationship:
|
|
|
|
{
|
|
|
|
Relation aRelation;
|
|
|
|
aRelation.maId = rxAttribs->getOptionalValue( XML_Id );
|
|
|
|
aRelation.maType = rxAttribs->getOptionalValue( XML_Type );
|
|
|
|
aRelation.maTarget = rxAttribs->getOptionalValue( XML_Target );
|
|
|
|
if( (aRelation.maId.getLength() > 0) && (aRelation.maType.getLength() > 0) && (aRelation.maTarget.getLength() > 0) )
|
2008-03-05 17:15:12 +00:00
|
|
|
(*mxRelations)[ aRelation.maId ] = aRelation;
|
2008-01-17 07:06:10 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NMSP_PACKAGE_RELATIONSHIPS|XML_Relationships:
|
2008-03-05 17:15:12 +00:00
|
|
|
xRet = getFastContextHandler();
|
2008-01-17 07:06:10 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return xRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
} // namespace core
|
|
|
|
} // namespace oox
|
|
|
|
|