306 lines
10 KiB
C++
306 lines
10 KiB
C++
/*************************************************************************
|
|
*
|
|
* $RCSfile: XMLEmbeddedObjectImportContext.cxx,v $
|
|
*
|
|
* $Revision: 1.1 $
|
|
*
|
|
* last change: $Author: mib $ $Date: 2001-05-09 12:15:59 $
|
|
*
|
|
* 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): _______________________________________
|
|
*
|
|
*
|
|
************************************************************************/
|
|
|
|
#ifndef _COM_SUN_STAR_DOCUMENT_XIMPORTER_HPP_
|
|
#include <com/sun/star/document/XImporter.hpp>
|
|
#endif
|
|
|
|
#ifndef _COMPHELPER_PROCESSFACTORY_HXX_
|
|
#include <comphelper/processfactory.hxx>
|
|
#endif
|
|
|
|
#ifndef _XMLOFF_NMSPMAP_HXX
|
|
#include "nmspmap.hxx"
|
|
#endif
|
|
#ifndef _XMLOFF_XMLIMP_HXX
|
|
#include "xmlimp.hxx"
|
|
#endif
|
|
#ifndef _XMLOFF_XMLNMSPE_HXX
|
|
#include "xmlnmspe.hxx"
|
|
#endif
|
|
#ifndef _XMLOFF_XMLKYWD_HXX
|
|
#include "xmlkywd.hxx"
|
|
#endif
|
|
|
|
#ifndef _XMLOFF_XMLFILTERSERVICENAMES_H
|
|
#include "XMLFilterServiceNames.h"
|
|
#endif
|
|
#ifndef _XMLOFF_XMLEMBEDDEDOBJECTIMPORTCONTEXT_HXX
|
|
#include "XMLEmbeddedObjectImportContext.hxx"
|
|
#endif
|
|
|
|
using namespace ::rtl;
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::lang;
|
|
using namespace ::com::sun::star::document;
|
|
using namespace ::com::sun::star::xml::sax;
|
|
|
|
struct XMLServiceMapEntry_Impl
|
|
{
|
|
const sal_Char *sClass;
|
|
sal_Int32 sClassLen;
|
|
const sal_Char *sFilterService;
|
|
sal_Int32 nFilterServiceLen;
|
|
};
|
|
|
|
#define SERVICE_MAP_ENTRY( cls, app ) \
|
|
{ sXML_##cls, sizeof(sXML_##cls)-1, \
|
|
XML_IMPORT_FILTER_##app, sizeof(XML_IMPORT_FILTER_##app)-1 }
|
|
|
|
const XMLServiceMapEntry_Impl aServiceMap[] =
|
|
{
|
|
SERVICE_MAP_ENTRY( text, WRITER ),
|
|
SERVICE_MAP_ENTRY( online_text, WRITER ),
|
|
SERVICE_MAP_ENTRY( spreadsheet, CALC ),
|
|
SERVICE_MAP_ENTRY( drawing, DRAW ),
|
|
SERVICE_MAP_ENTRY( presentation, IMPRESS ),
|
|
SERVICE_MAP_ENTRY( chart, CHART ),
|
|
{ 0, 0, 0, 0 }
|
|
};
|
|
|
|
class XMLEmbeddedObjectImportContext_Impl : public SvXMLImportContext
|
|
{
|
|
::com::sun::star::uno::Reference<
|
|
::com::sun::star::xml::sax::XDocumentHandler > xHandler;
|
|
|
|
public:
|
|
TYPEINFO();
|
|
|
|
XMLEmbeddedObjectImportContext_Impl( SvXMLImport& rImport, USHORT nPrfx,
|
|
const ::rtl::OUString& rLName,
|
|
const ::com::sun::star::uno::Reference<
|
|
::com::sun::star::xml::sax::XDocumentHandler >& rHandler );
|
|
|
|
virtual ~XMLEmbeddedObjectImportContext_Impl();
|
|
|
|
virtual SvXMLImportContext *CreateChildContext( USHORT nPrefix,
|
|
const ::rtl::OUString& rLocalName,
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
|
|
|
|
virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
|
|
|
|
virtual void EndElement();
|
|
|
|
virtual void Characters( const ::rtl::OUString& rChars );
|
|
};
|
|
|
|
TYPEINIT1( XMLEmbeddedObjectImportContext_Impl, SvXMLImportContext );
|
|
|
|
XMLEmbeddedObjectImportContext_Impl::XMLEmbeddedObjectImportContext_Impl(
|
|
SvXMLImport& rImport, USHORT nPrfx,
|
|
const OUString& rLName,
|
|
const Reference< XDocumentHandler >& rHandler ) :
|
|
SvXMLImportContext( rImport, nPrfx, rLName ),
|
|
xHandler( rHandler )
|
|
{
|
|
}
|
|
|
|
XMLEmbeddedObjectImportContext_Impl::~XMLEmbeddedObjectImportContext_Impl()
|
|
{
|
|
}
|
|
|
|
SvXMLImportContext *XMLEmbeddedObjectImportContext_Impl::CreateChildContext(
|
|
USHORT nPrefix,
|
|
const OUString& rLocalName,
|
|
const Reference< XAttributeList >& xAttrList )
|
|
{
|
|
return new XMLEmbeddedObjectImportContext_Impl( GetImport(),
|
|
nPrefix, rLocalName,
|
|
xHandler );
|
|
}
|
|
|
|
void XMLEmbeddedObjectImportContext_Impl::StartElement(
|
|
const Reference< XAttributeList >& xAttrList )
|
|
{
|
|
xHandler->startElement( GetImport().GetNamespaceMap().GetQNameByKey(
|
|
GetPrefix(), GetLocalName() ),
|
|
xAttrList );
|
|
}
|
|
|
|
void XMLEmbeddedObjectImportContext_Impl::EndElement()
|
|
{
|
|
xHandler->endElement( GetImport().GetNamespaceMap().GetQNameByKey(
|
|
GetPrefix(), GetLocalName() ) );
|
|
}
|
|
|
|
void XMLEmbeddedObjectImportContext_Impl::Characters( const OUString& rChars )
|
|
{
|
|
xHandler->characters( rChars );
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
TYPEINIT1( XMLEmbeddedObjectImportContext, SvXMLImportContext );
|
|
|
|
sal_Bool XMLEmbeddedObjectImportContext::SetComponent(
|
|
Reference< XComponent >& rComp )
|
|
{
|
|
if( !rComp.is() || !sFilterService.getLength() )
|
|
return sal_False;
|
|
|
|
Sequence<Any> aArgs( 0 );
|
|
Reference< XMultiServiceFactory > xServiceFactory =
|
|
comphelper::getProcessServiceFactory();
|
|
xHandler = Reference < XDocumentHandler >(
|
|
xServiceFactory->createInstanceWithArguments( sFilterService, aArgs),
|
|
UNO_QUERY);
|
|
|
|
if( !xHandler.is() )
|
|
return sal_False;
|
|
|
|
Reference < XImporter > xImporter( xHandler, UNO_QUERY );
|
|
xImporter->setTargetDocument( rComp );
|
|
|
|
return sal_True;
|
|
}
|
|
|
|
XMLEmbeddedObjectImportContext::XMLEmbeddedObjectImportContext(
|
|
SvXMLImport& rImport, USHORT nPrfx, const OUString& rLName,
|
|
const Reference< XAttributeList >& xAttrList ) :
|
|
SvXMLImportContext( rImport, nPrfx, rLName )
|
|
{
|
|
if( nPrfx == XML_NAMESPACE_MATH &&
|
|
rLName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( sXML_math ) ) )
|
|
{
|
|
sFilterService = OUString( RTL_CONSTASCII_USTRINGPARAM(XML_IMPORT_FILTER_MATH) );
|
|
}
|
|
else if( nPrfx == XML_NAMESPACE_OFFICE &&
|
|
rLName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( sXML_document ) ) )
|
|
{
|
|
OUString sClass;
|
|
|
|
sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
|
|
for( sal_Int16 i=0; i < nAttrCount; i++ )
|
|
{
|
|
const OUString& rAttrName = xAttrList->getNameByIndex( i );
|
|
OUString aLocalName;
|
|
sal_uInt16 nPrefix = GetImport().GetNamespaceMap().GetKeyByAttrName( rAttrName, &aLocalName );
|
|
if( nPrefix == XML_NAMESPACE_OFFICE &&
|
|
aLocalName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( sXML_class ) ) )
|
|
{
|
|
sClass = xAttrList->getValueByIndex( i );
|
|
break;
|
|
}
|
|
}
|
|
|
|
if( sClass.getLength() )
|
|
{
|
|
const XMLServiceMapEntry_Impl *pEntry = aServiceMap;
|
|
while( pEntry->sClass )
|
|
{
|
|
if( sClass.equalsAsciiL( pEntry->sClass, pEntry->sClassLen ) )
|
|
{
|
|
sFilterService = OUString( pEntry->sFilterService,
|
|
pEntry->nFilterServiceLen,
|
|
RTL_TEXTENCODING_ASCII_US );
|
|
break;
|
|
}
|
|
pEntry++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
XMLEmbeddedObjectImportContext::~XMLEmbeddedObjectImportContext()
|
|
{
|
|
}
|
|
|
|
SvXMLImportContext *XMLEmbeddedObjectImportContext::CreateChildContext(
|
|
USHORT nPrefix, const OUString& rLocalName,
|
|
const Reference< XAttributeList >& xAttrList )
|
|
{
|
|
if( xHandler.is() )
|
|
return new XMLEmbeddedObjectImportContext_Impl( GetImport(),
|
|
nPrefix, rLocalName,
|
|
xHandler );
|
|
else
|
|
return new SvXMLImportContext( GetImport(), nPrefix, rLocalName );
|
|
}
|
|
|
|
void XMLEmbeddedObjectImportContext::StartElement(
|
|
const Reference< XAttributeList >& xAttrList )
|
|
{
|
|
if( xHandler.is() )
|
|
{
|
|
xHandler->startDocument();
|
|
xHandler->startElement( GetImport().GetNamespaceMap().GetQNameByKey(
|
|
GetPrefix(), GetLocalName() ),
|
|
xAttrList );
|
|
}
|
|
}
|
|
|
|
void XMLEmbeddedObjectImportContext::EndElement()
|
|
{
|
|
if( xHandler.is() )
|
|
{
|
|
xHandler->endElement( GetImport().GetNamespaceMap().GetQNameByKey(
|
|
GetPrefix(), GetLocalName() ) );
|
|
xHandler->endDocument();
|
|
}
|
|
}
|
|
|
|
void XMLEmbeddedObjectImportContext::Characters( const ::rtl::OUString& rChars )
|
|
{
|
|
if( xHandler.is() )
|
|
xHandler->characters( rChars );
|
|
}
|
|
|