summaryrefslogtreecommitdiff
path: root/filter/source/msfilter/powerpoint/pptimporter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/msfilter/powerpoint/pptimporter.cxx')
-rw-r--r--filter/source/msfilter/powerpoint/pptimporter.cxx163
1 files changed, 163 insertions, 0 deletions
diff --git a/filter/source/msfilter/powerpoint/pptimporter.cxx b/filter/source/msfilter/powerpoint/pptimporter.cxx
new file mode 100644
index 000000000000..960987700980
--- /dev/null
+++ b/filter/source/msfilter/powerpoint/pptimporter.cxx
@@ -0,0 +1,163 @@
+/*************************************************************************
+ *
+ * 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.
+ *
+ ************************************************************************/
+
+// MARKER(update_precomp.py): autogen include statement, do not remove
+#include "precompiled_filter.hxx"
+#include "pptimporter.hxx"
+
+#ifdef DBG_DUMP_PPT_IMPORT
+#ifndef _COM_SUN_STAR_IO_XACTIVEDATASOURCE_HDL_
+#include <com/sun/star/io/XActiveDataSource.hpp>
+#endif
+#include <unotools/streamwrap.hxx>
+#include <comphelper/processfactory.hxx>
+#endif
+
+#include <uno/mapping.hxx>
+
+// -----------------
+// - PptImporter -
+// -----------------
+
+NMSP_RTL::OUString PptImporter_getImplementationName()
+ throw( NMSP_UNO::RuntimeException )
+{
+ return B2UCONST( "com.sun.star.presentation.PptImporter" );
+}
+#define SERVICE_NAME "com.sun.star.document.ImportFilter"
+sal_Bool SAL_CALL PptImporter_supportsService( const NMSP_RTL::OUString& ServiceName )
+ throw( NMSP_UNO::RuntimeException )
+{
+ return ServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( SERVICE_NAME ) );
+}
+
+SEQ( NMSP_RTL::OUString ) SAL_CALL PptImporter_getSupportedServiceNames()
+ throw( NMSP_UNO::RuntimeException )
+{
+ SEQ( NMSP_RTL::OUString ) aRet(1);
+ NMSP_RTL::OUString* pArray = aRet.getArray();
+ pArray[0] = B2UCONST( SERVICE_NAME );
+ return aRet;
+}
+#undef SERVICE_NAME
+
+// -----------------------------------------------------------------------------
+
+PptImporter::PptImporter( const REF( NMSP_LANG::XMultiServiceFactory )& rxMgr ) :
+ xFact( rxMgr )
+{
+ NMSP_RTL::OUString sService( B2UCONST( "com.sun.star.comp.Impress.XMLImporter" ) );
+ try
+ {
+ xHdl = REF( NMSP_SAX::XDocumentHandler ) ( xFact->createInstance( sService ), NMSP_UNO::UNO_QUERY );
+ xImporter = REF( NMSP_DOCUMENT::XImporter )( xHdl, NMSP_UNO::UNO_QUERY );
+ }
+ catch( NMSP_UNO::Exception & )
+ {
+ }
+}
+
+// -----------------------------------------------------------------------------
+
+PptImporter::~PptImporter()
+{
+}
+
+// -----------------------------------------------------------------------------
+
+void SAL_CALL PptImporter::acquire() throw()
+{
+ OWeakObject::acquire();
+}
+
+// -----------------------------------------------------------------------------
+
+void SAL_CALL PptImporter::release() throw()
+{
+ OWeakObject::release();
+}
+
+// XFilter
+sal_Bool SAL_CALL PptImporter::filter( const SEQ( NMSP_BEANS::PropertyValue )& aDescriptor )
+ throw ( NMSP_UNO::RuntimeException )
+{
+
+
+#ifdef DBG_DUMP_PPT_IMPORT
+
+ REF( NMSP_LANG::XMultiServiceFactory ) xServiceFactory( NMSP_COMPHELPER::getProcessServiceFactory() );
+ REF( NMSP_UNO::XInterface ) xWriter( xServiceFactory->createInstance( B2UCONST( "com.sun.star.xml.sax.Writer" ) ) );
+ SvFileStream aStrm( B2UCONST( "d:\\test2.xml" ), STREAM_READ | STREAM_WRITE | STREAM_TRUNC );
+ REF( NMSP_IO::XOutputStream ) xOutStream( (::cppu::OWeakObject*) new NMSP_UTL::OOutputStreamWrapper( aStrm ), NMSP_UNO::UNO_QUERY );
+ REF( NMSP_IO::XActiveDataSource ) xDataSource( xWriter , NMSP_UNO::UNO_QUERY );
+ xDataSource->setOutputStream( xOutStream );
+ aFilter.filter( aDescriptor, REF( NMSP_SAX::XDocumentHandler )( xWriter, NMSP_UNO::UNO_QUERY ) );
+
+// REF( NMSP_BEANS::XPropertySet ) xPropSet( xServiceFactory->createInstance( B2UCONST( "com.sun.star.beans.PropertySet" ) ) );
+// Any aAny;
+// aAny <<= (sal_Bool)sal_True;
+// xPropSet->setPropertyValue( B2UCONST( "UsePrettyPrinting" ), aAny );
+
+#endif
+
+ return aFilter.filter( aDescriptor, xHdl );
+}
+void SAL_CALL PptImporter::cancel()
+ throw ( NMSP_UNO::RuntimeException )
+{
+ aFilter.cancel();
+}
+
+// XImporter
+void SAL_CALL PptImporter::setTargetDocument( const REF( NMSP_LANG::XComponent )& xDoc )
+ throw ( NMSP_LANG::IllegalArgumentException, NMSP_UNO::RuntimeException)
+{
+ xImporter->setTargetDocument( xDoc );
+}
+
+// XInitialization
+void SAL_CALL PptImporter::initialize( const SEQ( NMSP_UNO::Any )& /* aArguments */ )
+ throw ( NMSP_UNO::Exception, NMSP_UNO::RuntimeException )
+{
+}
+
+// XServiceInfo
+NMSP_RTL::OUString SAL_CALL PptImporter::getImplementationName()
+ throw( NMSP_UNO::RuntimeException )
+{
+ return PptImporter_getImplementationName();
+}
+sal_Bool SAL_CALL PptImporter::supportsService( const NMSP_RTL::OUString& rServiceName )
+ throw( NMSP_UNO::RuntimeException )
+{
+ return PptImporter_supportsService( rServiceName );
+}
+SEQ( NMSP_RTL::OUString ) SAL_CALL PptImporter::getSupportedServiceNames()
+ throw ( NMSP_UNO::RuntimeException )
+{
+ return PptImporter_getSupportedServiceNames();
+}