/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* CMXImportFilter: Sets up the filter, and calls OdgExporter * to do the actual filtering * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /* "This product is not manufactured, approved, or supported by * Corel Corporation or Corel Corporation Limited." */ #include #include #include #include #include #include #include #include #include #include #include #include #include "filter/DocumentHandler.hxx" #include "filter/OdgGenerator.hxx" #include "CMXImportFilter.hxx" #include "stream/WPXSvStream.h" #include using namespace ::com::sun::star::uno; using com::sun::star::uno::Reference; using com::sun::star::io::XInputStream; using com::sun::star::io::XSeekable; using com::sun::star::uno::Sequence; using com::sun::star::uno::Any; using com::sun::star::uno::UNO_QUERY; using com::sun::star::uno::XInterface; using com::sun::star::uno::Exception; using com::sun::star::uno::RuntimeException; using com::sun::star::beans::PropertyValue; using com::sun::star::document::XFilter; using com::sun::star::document::XExtendedFilterDetection; using com::sun::star::document::XImporter; using com::sun::star::xml::sax::InputSource; using com::sun::star::xml::sax::XAttributeList; using com::sun::star::xml::sax::XDocumentHandler; using com::sun::star::xml::sax::XParser; sal_Bool SAL_CALL CMXImportFilter::filter( const Sequence< ::com::sun::star::beans::PropertyValue >& aDescriptor ) throw (RuntimeException) { #ifdef DEBUG std::cerr << "CMXImportFilter::filter" << std::endl; #endif sal_Int32 nLength = aDescriptor.getLength(); const PropertyValue *pValue = aDescriptor.getConstArray(); Reference < XInputStream > xInputStream; for ( sal_Int32 i = 0 ; i < nLength; i++) { if ( pValue[i].Name == "InputStream" ) pValue[i].Value >>= xInputStream; } if ( !xInputStream.is() ) { OSL_ASSERT( 0 ); return sal_False; } // An XML import service: what we push sax messages to.. OUString sXMLImportService ( "com.sun.star.comp.Draw.XMLOasisImporter" ); Reference < XDocumentHandler > xInternalHandler( comphelper::ComponentContext( mxContext ).createComponent( sXMLImportService ), UNO_QUERY ); // The XImporter sets up an empty target document for XDocumentHandler to write to.. Reference < XImporter > xImporter(xInternalHandler, UNO_QUERY); xImporter->setTargetDocument( mxDoc ); // OO Graphics Handler: abstract class to handle document SAX messages, concrete implementation here // writes to in-memory target doc DocumentHandler xHandler(xInternalHandler); WPXSvInputStream input( xInputStream ); OdgGenerator exporter(&xHandler, ODF_FLAT_XML); bool tmpParseResult = libcdr::CMXDocument::parse(&input, &exporter); return tmpParseResult; } void SAL_CALL CMXImportFilter::cancel( ) throw (RuntimeException) { #ifdef DEBUG std::cerr << "CMXImportFilter::cancel" << std::endl; #endif } // XImporter void SAL_CALL CMXImportFilter::setTargetDocument( const Reference< ::com::sun::star::lang::XComponent >& xDoc ) throw (::com::sun::star::lang::IllegalArgumentException, RuntimeException) { #ifdef DEBUG std::cerr << "CMXImportFilter::setTargetDocument" << std::endl; #endif mxDoc = xDoc; } // XExtendedFilterDetection OUString SAL_CALL CMXImportFilter::detect( com::sun::star::uno::Sequence< PropertyValue >& Descriptor ) throw( com::sun::star::uno::RuntimeException ) { #ifdef DEBUG std::cerr << "CMXImportFilter::detect" << std::endl; #endif OUString sTypeName; sal_Int32 nLength = Descriptor.getLength(); sal_Int32 location = nLength; const PropertyValue *pValue = Descriptor.getConstArray(); Reference < XInputStream > xInputStream; for ( sal_Int32 i = 0 ; i < nLength; i++) { if ( pValue[i].Name == "TypeName" ) location=i; else if ( pValue[i].Name == "InputStream" ) pValue[i].Value >>= xInputStream; } if (!xInputStream.is()) return OUString(); WPXSvInputStream input( xInputStream ); if (libcdr::CMXDocument::isSupported(&input)) sTypeName = "draw_Corel_Presentation_Exchange"; if (!sTypeName.isEmpty()) { if ( location == nLength ) { Descriptor.realloc(nLength+1); Descriptor[location].Name = "TypeName"; } Descriptor[location].Value <<=sTypeName; } return sTypeName; } // XInitialization void SAL_CALL CMXImportFilter::initialize( const Sequence< Any >& aArguments ) throw (Exception, RuntimeException) { #ifdef DEBUG std::cerr << "CMXImportFilter::initialize" << std::endl; #endif Sequence < PropertyValue > aAnySeq; sal_Int32 nLength = aArguments.getLength(); if ( nLength && ( aArguments[0] >>= aAnySeq ) ) { const PropertyValue *pValue = aAnySeq.getConstArray(); nLength = aAnySeq.getLength(); for ( sal_Int32 i = 0 ; i < nLength; i++) { if ( pValue[i].Name == "Type" ) { pValue[i].Value >>= msFilterName; break; } } } } OUString CMXImportFilter_getImplementationName () throw (RuntimeException) { #ifdef DEBUG std::cerr << "CMXImportFilter_getImplementationName" << std::endl; #endif return OUString ( "com.sun.star.comp.Draw.CMXImportFilter" ); } #define SERVICE_NAME1 "com.sun.star.document.ImportFilter" #define SERVICE_NAME2 "com.sun.star.document.ExtendedTypeDetection" sal_Bool SAL_CALL CMXImportFilter_supportsService( const OUString &ServiceName ) throw (RuntimeException) { #ifdef DEBUG std::cerr << "CMXImportFilter_supportsService" << std::endl; #endif return ( ServiceName == SERVICE_NAME1 || ServiceName == SERVICE_NAME2 ); } Sequence< OUString > SAL_CALL CMXImportFilter_getSupportedServiceNames( ) throw (RuntimeException) { #ifdef DEBUG std::cerr << "CMXImportFilter_getSupportedServiceNames" << std::endl; #endif Sequence < OUString > aRet(2); OUString *pArray = aRet.getArray(); pArray[0] = OUString ( SERVICE_NAME1 ); pArray[1] = OUString ( SERVICE_NAME2 ); return aRet; } #undef SERVICE_NAME2 #undef SERVICE_NAME1 Reference< XInterface > SAL_CALL CMXImportFilter_createInstance( const Reference< XComponentContext > & rContext) throw( Exception ) { #ifdef DEBUG std::cerr << "CMXImportFilter_createInstance" << std::endl; #endif return (cppu::OWeakObject *) new CMXImportFilter( rContext ); } // XServiceInfo OUString SAL_CALL CMXImportFilter::getImplementationName( ) throw (RuntimeException) { #ifdef DEBUG std::cerr << "CMXImportFilter::getImplementationName" << std::endl; #endif return CMXImportFilter_getImplementationName(); } sal_Bool SAL_CALL CMXImportFilter::supportsService( const OUString &rServiceName ) throw (RuntimeException) { #ifdef DEBUG std::cerr << "CMXImportFilter::supportsService" << std::endl; #endif return CMXImportFilter_supportsService( rServiceName ); } Sequence< OUString > SAL_CALL CMXImportFilter::getSupportedServiceNames( ) throw (RuntimeException) { #ifdef DEBUG std::cerr << "CMXImportFilter::getSupportedServiceNames" << std::endl; #endif return CMXImportFilter_getSupportedServiceNames(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */