2003-09-19 02:53:03 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 06:48:53 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2003-09-19 02:53:03 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2003-09-19 02:53:03 -05:00
|
|
|
*
|
2008-04-10 06:48:53 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2003-09-19 02:53:03 -05:00
|
|
|
*
|
2008-04-10 06:48:53 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2003-09-19 02:53:03 -05:00
|
|
|
*
|
2008-04-10 06:48:53 -05: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.
|
2003-09-19 02:53:03 -05:00
|
|
|
*
|
2008-04-10 06:48:53 -05: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).
|
2003-09-19 02:53:03 -05:00
|
|
|
*
|
2008-04-10 06:48:53 -05: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.
|
2003-09-19 02:53:03 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 01:54:54 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_starmath.hxx"
|
|
|
|
|
2003-09-19 02:53:03 -05:00
|
|
|
#include "smdetect.hxx"
|
|
|
|
|
|
|
|
#include <framework/interaction.hxx>
|
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
|
|
#include <com/sun/star/beans/PropertyValue.hpp>
|
|
|
|
#include <com/sun/star/frame/XFrame.hpp>
|
|
|
|
#include <com/sun/star/frame/XModel.hpp>
|
|
|
|
#include <com/sun/star/awt/XWindow.hpp>
|
|
|
|
#include <com/sun/star/lang/XUnoTunnel.hpp>
|
|
|
|
#ifndef _UNOTOOLS_PROCESSFACTORY_HXX
|
|
|
|
#include <comphelper/processfactory.hxx>
|
|
|
|
#endif
|
|
|
|
#include <com/sun/star/beans/PropertyValue.hpp>
|
|
|
|
#include <com/sun/star/io/XInputStream.hpp>
|
|
|
|
#include <com/sun/star/task/XInteractionHandler.hpp>
|
|
|
|
#include <com/sun/star/lang/WrappedTargetRuntimeException.hpp>
|
|
|
|
#include <com/sun/star/ucb/CommandAbortedException.hpp>
|
|
|
|
#include <com/sun/star/ucb/InteractiveAppException.hpp>
|
|
|
|
#include <com/sun/star/ucb/XContent.hpp>
|
2004-10-04 12:04:18 -05:00
|
|
|
#include <com/sun/star/packages/zip/ZipIOException.hpp>
|
2003-09-19 02:53:03 -05:00
|
|
|
#include <framework/interaction.hxx>
|
|
|
|
|
|
|
|
#ifndef _TOOLKIT_UNOHLP_HXX
|
|
|
|
#include <toolkit/helper/vclunohelper.hxx>
|
|
|
|
#endif
|
|
|
|
#include <ucbhelper/simpleinteractionrequest.hxx>
|
|
|
|
|
|
|
|
#include <rtl/ustring.h>
|
|
|
|
#include <rtl/logfile.hxx>
|
2009-10-15 17:05:16 -05:00
|
|
|
#include <svl/itemset.hxx>
|
2003-09-19 02:53:03 -05:00
|
|
|
#include <vcl/window.hxx>
|
2009-10-15 17:05:16 -05:00
|
|
|
#include <svl/eitem.hxx>
|
|
|
|
#include <svl/stritem.hxx>
|
2003-09-19 02:53:03 -05:00
|
|
|
#include <tools/urlobj.hxx>
|
|
|
|
#include <vos/mutex.hxx>
|
|
|
|
#include <svtools/sfxecode.hxx>
|
|
|
|
#include <svtools/ehdl.hxx>
|
|
|
|
#include <sot/storinfo.hxx>
|
|
|
|
#include <vcl/svapp.hxx>
|
|
|
|
#include <sfx2/app.hxx>
|
|
|
|
#include <sfx2/sfxsids.hrc>
|
|
|
|
#include <sfx2/request.hxx>
|
|
|
|
#include <sfx2/docfile.hxx>
|
|
|
|
#include <sfx2/docfilt.hxx>
|
2004-01-28 07:44:17 -06:00
|
|
|
#include <sfx2/fcontnr.hxx>
|
2004-10-04 12:04:18 -05:00
|
|
|
#include <sfx2/brokenpackageint.hxx>
|
2003-09-19 02:53:03 -05:00
|
|
|
|
|
|
|
#include "document.hxx"
|
2005-07-12 05:11:35 -05:00
|
|
|
#include "eqnolefilehdr.hxx"
|
|
|
|
|
2003-09-19 02:53:03 -05:00
|
|
|
|
2004-10-04 12:04:18 -05:00
|
|
|
using namespace ::com::sun::star;
|
2003-09-19 02:53:03 -05:00
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::io;
|
|
|
|
using namespace ::com::sun::star::frame;
|
|
|
|
using namespace ::com::sun::star::task;
|
|
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace ::com::sun::star::ucb;
|
|
|
|
using namespace ::rtl;
|
|
|
|
|
2007-05-25 06:15:01 -05:00
|
|
|
SmFilterDetect::SmFilterDetect( const REFERENCE < ::com::sun::star::lang::XMultiServiceFactory >& /*xFactory*/ )
|
2003-09-19 02:53:03 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SmFilterDetect::~SmFilterDetect()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
::rtl::OUString SAL_CALL SmFilterDetect::detect( ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& lDescriptor ) throw( ::com::sun::star::uno::RuntimeException )
|
|
|
|
{
|
|
|
|
REFERENCE< XInputStream > xStream;
|
|
|
|
REFERENCE< XContent > xContent;
|
|
|
|
REFERENCE< XInteractionHandler > xInteraction;
|
|
|
|
String aURL;
|
|
|
|
::rtl::OUString sTemp;
|
|
|
|
String aTypeName; // a name describing the type (from MediaDescriptor, usually from flat detection)
|
|
|
|
String aPreselectedFilterName; // a name describing the filter to use (from MediaDescriptor, usually from UI action)
|
|
|
|
|
2004-10-04 12:04:18 -05:00
|
|
|
::rtl::OUString aDocumentTitle; // interesting only if set in this method
|
|
|
|
|
2003-09-19 02:53:03 -05:00
|
|
|
// opening as template is done when a parameter tells to do so and a template filter can be detected
|
|
|
|
// (otherwise no valid filter would be found) or if the detected filter is a template filter and
|
|
|
|
// there is no parameter that forbids to open as template
|
|
|
|
sal_Bool bOpenAsTemplate = sal_False;
|
|
|
|
sal_Bool bWasReadOnly = sal_False, bReadOnly = sal_False;
|
|
|
|
|
2004-10-04 12:04:18 -05:00
|
|
|
sal_Bool bRepairPackage = sal_False;
|
|
|
|
sal_Bool bRepairAllowed = sal_False;
|
|
|
|
|
2003-09-19 02:53:03 -05:00
|
|
|
// now some parameters that can already be in the array, but may be overwritten or new inserted here
|
|
|
|
// remember their indices in the case new values must be added to the array
|
|
|
|
sal_Int32 nPropertyCount = lDescriptor.getLength();
|
|
|
|
sal_Int32 nIndexOfFilterName = -1;
|
|
|
|
sal_Int32 nIndexOfInputStream = -1;
|
|
|
|
sal_Int32 nIndexOfContent = -1;
|
|
|
|
sal_Int32 nIndexOfReadOnlyFlag = -1;
|
|
|
|
sal_Int32 nIndexOfTemplateFlag = -1;
|
2004-10-04 12:04:18 -05:00
|
|
|
sal_Int32 nIndexOfDocumentTitle = -1;
|
|
|
|
|
2003-09-19 02:53:03 -05:00
|
|
|
for( sal_Int32 nProperty=0; nProperty<nPropertyCount; ++nProperty )
|
|
|
|
{
|
|
|
|
// extract properties
|
|
|
|
if( lDescriptor[nProperty].Name == OUString(RTL_CONSTASCII_USTRINGPARAM("URL")) )
|
|
|
|
{
|
|
|
|
lDescriptor[nProperty].Value >>= sTemp;
|
|
|
|
aURL = sTemp;
|
|
|
|
}
|
|
|
|
else if( !aURL.Len() && lDescriptor[nProperty].Name == OUString(RTL_CONSTASCII_USTRINGPARAM("FileName")) )
|
|
|
|
{
|
|
|
|
lDescriptor[nProperty].Value >>= sTemp;
|
|
|
|
aURL = sTemp;
|
|
|
|
}
|
|
|
|
else if( lDescriptor[nProperty].Name == OUString(RTL_CONSTASCII_USTRINGPARAM("TypeName")) )
|
|
|
|
{
|
|
|
|
lDescriptor[nProperty].Value >>= sTemp;
|
|
|
|
aTypeName = sTemp;
|
|
|
|
}
|
|
|
|
else if( lDescriptor[nProperty].Name == OUString(RTL_CONSTASCII_USTRINGPARAM("FilterName")) )
|
|
|
|
{
|
|
|
|
lDescriptor[nProperty].Value >>= sTemp;
|
|
|
|
aPreselectedFilterName = sTemp;
|
|
|
|
|
|
|
|
// if the preselected filter name is not correct, it must be erased after detection
|
|
|
|
// remember index of property to get access to it later
|
|
|
|
nIndexOfFilterName = nProperty;
|
|
|
|
}
|
|
|
|
else if( lDescriptor[nProperty].Name == OUString(RTL_CONSTASCII_USTRINGPARAM("InputStream")) )
|
|
|
|
nIndexOfInputStream = nProperty;
|
|
|
|
else if( lDescriptor[nProperty].Name == OUString(RTL_CONSTASCII_USTRINGPARAM("ReadOnly")) )
|
|
|
|
nIndexOfReadOnlyFlag = nProperty;
|
|
|
|
else if( lDescriptor[nProperty].Name == OUString(RTL_CONSTASCII_USTRINGPARAM("UCBContent")) )
|
|
|
|
nIndexOfContent = nProperty;
|
|
|
|
else if( lDescriptor[nProperty].Name == OUString(RTL_CONSTASCII_USTRINGPARAM("AsTemplate")) )
|
|
|
|
{
|
|
|
|
lDescriptor[nProperty].Value >>= bOpenAsTemplate;
|
|
|
|
nIndexOfTemplateFlag = nProperty;
|
|
|
|
}
|
|
|
|
else if( lDescriptor[nProperty].Name == OUString(RTL_CONSTASCII_USTRINGPARAM("InteractionHandler")) )
|
|
|
|
lDescriptor[nProperty].Value >>= xInteraction;
|
2004-10-04 12:04:18 -05:00
|
|
|
else if( lDescriptor[nProperty].Name == OUString(RTL_CONSTASCII_USTRINGPARAM("RapairPackage")) )
|
|
|
|
lDescriptor[nProperty].Value >>= bRepairPackage;
|
|
|
|
else if( lDescriptor[nProperty].Name == OUString(RTL_CONSTASCII_USTRINGPARAM("DocumentTitle")) )
|
|
|
|
nIndexOfDocumentTitle = nProperty;
|
2003-09-19 02:53:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// can't check the type for external filters, so set the "dont" flag accordingly
|
|
|
|
::vos::OGuard aGuard( Application::GetSolarMutex() );
|
|
|
|
//SfxFilterFlags nMust = SFX_FILTER_IMPORT, nDont = SFX_FILTER_NOTINSTALLED;
|
|
|
|
|
|
|
|
SfxApplication* pApp = SFX_APP();
|
|
|
|
SfxAllItemSet *pSet = new SfxAllItemSet( pApp->GetPool() );
|
|
|
|
TransformParameters( SID_OPENDOC, lDescriptor, *pSet );
|
|
|
|
SFX_ITEMSET_ARG( pSet, pItem, SfxBoolItem, SID_DOC_READONLY, FALSE );
|
|
|
|
|
|
|
|
bWasReadOnly = pItem && pItem->GetValue();
|
|
|
|
|
|
|
|
String aFilterName;
|
|
|
|
String aPrefix = String::CreateFromAscii( "private:factory/" );
|
|
|
|
if( aURL.Match( aPrefix ) == aPrefix.Len() )
|
|
|
|
{
|
|
|
|
const SfxFilter* pFilter = 0;
|
|
|
|
String aPattern( aPrefix );
|
|
|
|
aPattern += String::CreateFromAscii("smath");
|
|
|
|
if ( aURL.Match( aPattern ) >= aPattern.Len() )
|
|
|
|
{
|
|
|
|
pFilter = SfxFilter::GetDefaultFilterFromFactory( aURL );
|
|
|
|
aTypeName = pFilter->GetTypeName();
|
|
|
|
aFilterName = pFilter->GetName();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// ctor of SfxMedium uses owner transition of ItemSet
|
|
|
|
SfxMedium aMedium( aURL, bWasReadOnly ? STREAM_STD_READ : STREAM_STD_READWRITE, FALSE, NULL, pSet );
|
|
|
|
aMedium.UseInteractionHandler( TRUE );
|
|
|
|
|
|
|
|
BOOL bIsStorage = aMedium.IsStorage();
|
|
|
|
if ( aMedium.GetErrorCode() == ERRCODE_NONE )
|
|
|
|
{
|
|
|
|
// remember input stream and content and put them into the descriptor later
|
|
|
|
// should be done here since later the medium can switch to a version
|
|
|
|
xStream = aMedium.GetInputStream();
|
|
|
|
xContent = aMedium.GetContent();
|
|
|
|
bReadOnly = aMedium.IsReadOnly();
|
|
|
|
|
|
|
|
if ( bIsStorage )
|
|
|
|
{
|
2004-10-04 12:04:18 -05:00
|
|
|
//TODO/LATER: factor this out!
|
2009-09-17 08:53:54 -05:00
|
|
|
uno::Reference < embed::XStorage > xStorage = aMedium.GetStorage( sal_False );
|
2003-09-19 02:53:03 -05:00
|
|
|
if ( aMedium.GetLastStorageCreationState() != ERRCODE_NONE )
|
|
|
|
{
|
|
|
|
// error during storage creation means _here_ that the medium
|
|
|
|
// is broken, but we can not handle it in medium since unpossibility
|
|
|
|
// to create a storage does not _always_ means that the medium is broken
|
CWS-TOOLING: integrate CWS fwk103
2009-05-26 12:44:25 +0200 mst r272292 : #i100727#
- svtools/inc/svtools/parhtml.hxx, svtools/source/svhtml/parhtml.cxx:
+ fix warning: rename method to prevent overloading
2009-05-19 13:42:31 +0200 mav r272075 : #i101356# add comment
2009-05-19 10:56:24 +0200 mav r272062 : #i101356# register the singleton correctly
2009-05-19 10:25:42 +0200 mav r272060 : #i101356# register the singleton correctly
2009-05-18 12:48:48 +0200 mav r272013 : #i91306# fix the typo
2009-05-14 08:50:06 +0200 mav r271871 : #i101356# reduce the amount of macros
2009-05-13 13:26:08 +0200 mav r271858 : #i101356# reduce the amount of macros
2009-05-13 11:29:16 +0200 mav r271849 : #i101356# reduce the amount of macros
2009-05-12 12:09:42 +0200 mav r271815 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 12:03:20 +0200 mav r271814 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:58:48 +0200 mav r271813 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:53:05 +0200 mav r271812 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:48:36 +0200 mav r271810 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:43:45 +0200 mav r271809 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:39:38 +0200 mav r271808 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:37:38 +0200 mav r271806 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:33:58 +0200 mav r271805 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:30:01 +0200 mav r271804 : #i101356# allow to generate a small log if a document can not be stored
2009-05-06 17:43:38 +0200 mst r271607 : #i100727#
- svtools/source/svhtml/parhtml.cxx:
+ adapt code to renaming of HTML constants (sb107)
2009-05-05 11:14:18 +0200 mav r271507 : #i101222# avoid warning
2009-05-05 10:27:23 +0200 mav r271505 : #i101426# send the modified() notification only when the document can be modified
2009-05-05 10:25:07 +0200 mav r271504 : #i101426# send the modified() notification only when the document is modified
2009-05-05 08:42:48 +0200 mav r271497 : CWS-TOOLING: rebase CWS fwk103 to trunk@271427 (milestone: DEV300:m47)
2009-04-30 13:32:11 +0200 mav r271412 : #i100518# check the template folders quietly
2009-04-29 20:04:25 +0200 mst r271393 : - sw/source/filter/html/swhtml.cxx:
+ fix wrong initialization order in constructor
2009-04-28 12:28:46 +0200 mav r271319 : #i99142# set the error correctly
2009-04-28 08:44:48 +0200 mav r271305 : #i99050# clear hidden flag if necessary
2009-04-28 08:40:10 +0200 mav r271304 : #i99050# avoid crash
2009-04-22 07:40:11 +0200 mav r271056 : #i101093# lets not affect the performance
2009-04-15 09:30:47 +0200 cd r270820 : #i99771# Fix warnings for gcc 4.4
2009-04-15 09:19:52 +0200 cd r270819 : #i99771# Fix warnings for gcc 4.4
2009-04-15 08:42:34 +0200 cd r270817 : #i99771# Fix warnings for gcc 4.4
2009-04-14 14:31:01 +0200 mav r270768 : #i99493# fix typo
2009-04-01 12:45:43 +0200 mst r270317 : fix #i100727#
- svtools/inc/svtools/svparser.hxx, svtools/source/svrtf/svparser.cxx,
sfx2/inc/sfx2/docfile.hxx, sfx2/source/doc/{objmisc.cxx,docfile.cxx}:
+ move SvKeyValue stuff from sfx2 to svtools
- svtools/inc/svtools/parhtml.hxx, svtools/source/svhtml/parhtml.cxx,
sfx2/inc/sfx2/sfxhtml.hxx, sfx2/source/bastyp/sfxhtml.cxx:
+ move ParseMetaOptions() and GetEncodingByMIME() from SfxHTMLParser (sfx2)
to HTMLParser (svtools)
+ make HTMLParser::ParseMetaOptions() a virtual function
+ HTMLParser::ParseMetaOptions() calls GetExtendedCompatibilityTextEncoding()
+ new template method HTMLParser::AddMetaUserDefined()
- svtools/source/svhtml/makefile.mk:
+ enable exceptions for parhtml.cxx
- dbaccess/source/ui/misc/HtmlReader.cxx,
sc/source/filter/html/htmlpars.cxx:
+ remove encoding related code duplication
- sw/source/filter/html/{swhtml{.hxx,.cxx},htmlfld.cxx}:
+ new SwHTMLParser::AddMetaUserDefined() for import of
DOCINFO field subtypes INFO[1-4]
+ do not use DocumentInfo for import of DOCINFO field subtypes INFO[1-4]
2009-03-31 17:01:35 +0200 mav r270288 : #i91214# fix typo
2009-03-31 15:19:41 +0200 mav r270285 : #i100123# allow to turn OOo locking mechanics off
2009-03-31 15:00:36 +0200 mav r270284 : #i100123# allow to turn OOo locking mechanics off
2009-03-31 12:19:13 +0200 mav r270270 : #i100123# taking the lock file over throws no exception
2009-03-30 13:57:21 +0200 mav r270227 : #i100351# fix the typo
2009-03-30 13:47:26 +0200 mav r270225 : #i99885# let OK be default button
2009-03-29 19:38:55 +0200 mav r270190 : CWS-TOOLING: rebase CWS fwk103 to trunk@270033 (milestone: DEV300:m45)
2009-03-16 16:39:48 +0100 mav r269558 : #i93558# convert the attributes as well
2009-03-13 15:35:55 +0100 mav r269488 : #i93558# improve manifest.xml parsing
2009-03-13 08:47:00 +0100 mav r269454 : #i96205# allow to remove password on SaveAs
2009-03-12 13:36:07 +0100 mav r269398 : #i91306# show special error in case of shared document
2009-03-12 13:33:35 +0100 mav r269397 : #i91306# introduce the new error-message
2009-03-12 11:40:42 +0100 mst r269378 : fix #i90877#
- svtools/source/uno/unoevent.cxx:
+ use proper operator delete[]
2009-02-26 15:23:10 +0100 mav r268526 : #i91214# do not use ATL
2009-02-26 14:19:06 +0100 mav r268516 : #i98909# integrate the patch
2009-02-10 17:29:52 +0100 cd r267568 : #i98649# Make sure that we catch the NoSuchElementException when a module is not installed.
2009-06-16 11:15:54 -05:00
|
|
|
aMedium.SetError( aMedium.GetLastStorageCreationState(), ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( OSL_LOG_PREFIX ) ) );
|
2003-09-19 02:53:03 -05:00
|
|
|
if ( xInteraction.is() )
|
|
|
|
{
|
|
|
|
OUString empty;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
InteractiveAppException xException( empty,
|
|
|
|
REFERENCE< XInterface >(),
|
|
|
|
InteractionClassification_ERROR,
|
|
|
|
aMedium.GetError() );
|
|
|
|
|
|
|
|
REFERENCE< XInteractionRequest > xRequest(
|
|
|
|
new ucbhelper::SimpleInteractionRequest( makeAny( xException ),
|
|
|
|
ucbhelper::CONTINUATION_APPROVE ) );
|
|
|
|
xInteraction->handle( xRequest );
|
|
|
|
}
|
|
|
|
catch ( Exception & ) {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-10-04 12:04:18 -05:00
|
|
|
aFilterName.Erase();
|
2004-01-28 07:44:17 -06:00
|
|
|
|
2004-10-04 12:04:18 -05:00
|
|
|
try
|
|
|
|
{
|
|
|
|
const SfxFilter* pFilter = aPreselectedFilterName.Len() ?
|
|
|
|
SfxFilterMatcher().GetFilter4FilterName( aPreselectedFilterName ) : aTypeName.Len() ?
|
|
|
|
SfxFilterMatcher(String::CreateFromAscii("smath")).GetFilter4EA( aTypeName ) : 0;
|
2007-05-25 06:15:01 -05:00
|
|
|
String aTmpFilterName;
|
2004-10-04 12:04:18 -05:00
|
|
|
if ( pFilter )
|
2007-05-25 06:15:01 -05:00
|
|
|
aTmpFilterName = pFilter->GetName();
|
|
|
|
aTypeName = SfxFilter::GetTypeFromStorage( xStorage, pFilter ? pFilter->IsAllowedAsTemplate() : FALSE, &aTmpFilterName );
|
2004-10-04 12:04:18 -05:00
|
|
|
}
|
|
|
|
catch( lang::WrappedTargetException& aWrap )
|
|
|
|
{
|
|
|
|
packages::zip::ZipIOException aZipException;
|
2004-01-28 07:44:17 -06:00
|
|
|
|
2004-10-04 12:04:18 -05:00
|
|
|
// repairing is done only if this type is requested from outside
|
|
|
|
if ( ( aWrap.TargetException >>= aZipException ) && aTypeName.Len() )
|
|
|
|
{
|
|
|
|
if ( xInteraction.is() )
|
|
|
|
{
|
|
|
|
// the package is broken one
|
|
|
|
aDocumentTitle = aMedium.GetURLObject().getName(
|
|
|
|
INetURLObject::LAST_SEGMENT,
|
|
|
|
true,
|
|
|
|
INetURLObject::DECODE_WITH_CHARSET );
|
|
|
|
|
|
|
|
if ( !bRepairPackage )
|
|
|
|
{
|
|
|
|
// ask the user whether he wants to try to repair
|
|
|
|
RequestPackageReparation* pRequest = new RequestPackageReparation( aDocumentTitle );
|
|
|
|
uno::Reference< task::XInteractionRequest > xRequest ( pRequest );
|
|
|
|
|
|
|
|
xInteraction->handle( xRequest );
|
|
|
|
|
|
|
|
bRepairAllowed = pRequest->isApproved();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !bRepairAllowed )
|
|
|
|
{
|
|
|
|
// repair either not allowed or not successful
|
|
|
|
NotifyBrokenPackage* pNotifyRequest = new NotifyBrokenPackage( aDocumentTitle );
|
|
|
|
uno::Reference< task::XInteractionRequest > xRequest ( pNotifyRequest );
|
|
|
|
xInteraction->handle( xRequest );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !bRepairAllowed )
|
|
|
|
aTypeName.Erase();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch( uno::RuntimeException& )
|
|
|
|
{
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
catch( uno::Exception& )
|
|
|
|
{
|
|
|
|
aTypeName.Erase();
|
|
|
|
}
|
2004-01-28 07:44:17 -06:00
|
|
|
|
2004-10-04 12:04:18 -05:00
|
|
|
if ( aTypeName.Len() )
|
2003-09-19 02:53:03 -05:00
|
|
|
{
|
2004-10-04 12:04:18 -05:00
|
|
|
const SfxFilter* pFilter =
|
|
|
|
SfxFilterMatcher( String::CreateFromAscii("smath") ).GetFilter4EA( aTypeName );
|
|
|
|
if ( pFilter )
|
|
|
|
aFilterName = pFilter->GetName();
|
2003-09-19 02:53:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//Test to see if this begins with xml and if so run it through
|
|
|
|
//the MathML filter. There are all sorts of things wrong with
|
|
|
|
//this approach, to be fixed at a better level than here
|
|
|
|
SvStream *pStrm = aMedium.GetInStream();
|
2004-10-04 12:04:18 -05:00
|
|
|
aTypeName.Erase();
|
2003-09-19 02:53:03 -05:00
|
|
|
if (pStrm && !pStrm->GetError())
|
|
|
|
{
|
2004-10-04 12:04:18 -05:00
|
|
|
SotStorageRef aStorage = new SotStorage ( pStrm, FALSE );
|
|
|
|
if ( !aStorage->GetError() )
|
2003-09-19 02:53:03 -05:00
|
|
|
{
|
2004-10-04 12:04:18 -05:00
|
|
|
if ( aStorage->IsStream( String::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( "Equation Native" ) ) ) )
|
2005-07-12 05:11:35 -05:00
|
|
|
{
|
|
|
|
sal_uInt8 nVersion;
|
|
|
|
if (GetMathTypeVersion( aStorage, nVersion ) && nVersion <=3)
|
|
|
|
aTypeName.AssignAscii( "math_MathType_3x" );
|
|
|
|
}
|
2004-10-04 12:04:18 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-05-25 06:15:01 -05:00
|
|
|
const USHORT nSize = 5;
|
2004-10-04 12:04:18 -05:00
|
|
|
sal_Char aBuffer[nSize+1];
|
|
|
|
aBuffer[nSize] = 0;
|
|
|
|
pStrm->Seek( STREAM_SEEK_TO_BEGIN );
|
2005-04-04 02:05:29 -05:00
|
|
|
ULONG nBytesRead = pStrm->Read( aBuffer, nSize );
|
2004-10-04 12:04:18 -05:00
|
|
|
if (nBytesRead == nSize)
|
2003-09-19 02:53:03 -05:00
|
|
|
{
|
2004-10-04 12:04:18 -05:00
|
|
|
if (0 == strncmp( "<?xml",aBuffer,nSize))
|
|
|
|
{
|
|
|
|
static const sal_Char sFltrNm_2[] = MATHML_XML;
|
|
|
|
static const sal_Char sTypeNm_2[] = "math_MathML_XML_Math";
|
|
|
|
aFilterName.AssignAscii( sFltrNm_2 );
|
|
|
|
aTypeName.AssignAscii( sTypeNm_2 );
|
|
|
|
}
|
2003-09-19 02:53:03 -05:00
|
|
|
}
|
|
|
|
}
|
2004-10-04 12:04:18 -05:00
|
|
|
|
|
|
|
if ( aTypeName.Len() )
|
|
|
|
{
|
|
|
|
const SfxFilter* pFilt = SfxFilterMatcher( String::CreateFromAscii("smath") ).GetFilter4EA( aTypeName );
|
|
|
|
if ( pFilt )
|
|
|
|
aFilterName = pFilt->GetName();
|
|
|
|
}
|
2003-09-19 02:53:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( nIndexOfInputStream == -1 && xStream.is() )
|
|
|
|
{
|
|
|
|
// if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opend twice
|
|
|
|
lDescriptor.realloc( nPropertyCount + 1 );
|
|
|
|
lDescriptor[nPropertyCount].Name = ::rtl::OUString::createFromAscii("InputStream");
|
|
|
|
lDescriptor[nPropertyCount].Value <<= xStream;
|
|
|
|
nPropertyCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( nIndexOfContent == -1 && xContent.is() )
|
|
|
|
{
|
|
|
|
// if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opend twice
|
|
|
|
lDescriptor.realloc( nPropertyCount + 1 );
|
|
|
|
lDescriptor[nPropertyCount].Name = ::rtl::OUString::createFromAscii("UCBContent");
|
|
|
|
lDescriptor[nPropertyCount].Value <<= xContent;
|
|
|
|
nPropertyCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( bReadOnly != bWasReadOnly )
|
|
|
|
{
|
|
|
|
if ( nIndexOfReadOnlyFlag == -1 )
|
|
|
|
{
|
|
|
|
lDescriptor.realloc( nPropertyCount + 1 );
|
|
|
|
lDescriptor[nPropertyCount].Name = ::rtl::OUString::createFromAscii("ReadOnly");
|
|
|
|
lDescriptor[nPropertyCount].Value <<= bReadOnly;
|
|
|
|
nPropertyCount++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
lDescriptor[nIndexOfReadOnlyFlag].Value <<= bReadOnly;
|
|
|
|
}
|
|
|
|
|
2004-10-04 12:04:18 -05:00
|
|
|
if ( !bRepairPackage && bRepairAllowed )
|
|
|
|
{
|
|
|
|
lDescriptor.realloc( nPropertyCount + 1 );
|
|
|
|
lDescriptor[nPropertyCount].Name = ::rtl::OUString::createFromAscii("RepairPackage");
|
|
|
|
lDescriptor[nPropertyCount].Value <<= bRepairAllowed;
|
|
|
|
nPropertyCount++;
|
|
|
|
|
|
|
|
bOpenAsTemplate = sal_True;
|
|
|
|
|
|
|
|
// TODO/LATER: set progress bar that should be used
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( bOpenAsTemplate )
|
|
|
|
{
|
|
|
|
if ( nIndexOfTemplateFlag == -1 )
|
|
|
|
{
|
|
|
|
lDescriptor.realloc( nPropertyCount + 1 );
|
|
|
|
lDescriptor[nPropertyCount].Name = ::rtl::OUString::createFromAscii("AsTemplate");
|
|
|
|
lDescriptor[nPropertyCount].Value <<= bOpenAsTemplate;
|
|
|
|
nPropertyCount++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
lDescriptor[nIndexOfTemplateFlag].Value <<= bOpenAsTemplate;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( aDocumentTitle.getLength() )
|
|
|
|
{
|
|
|
|
// the title was set here
|
|
|
|
if ( nIndexOfDocumentTitle == -1 )
|
|
|
|
{
|
|
|
|
lDescriptor.realloc( nPropertyCount + 1 );
|
|
|
|
lDescriptor[nPropertyCount].Name = ::rtl::OUString::createFromAscii("DocumentTitle");
|
|
|
|
lDescriptor[nPropertyCount].Value <<= aDocumentTitle;
|
|
|
|
nPropertyCount++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
lDescriptor[nIndexOfDocumentTitle].Value <<= aDocumentTitle;
|
|
|
|
}
|
|
|
|
|
2004-01-28 07:44:17 -06:00
|
|
|
if ( !aFilterName.Len() )
|
|
|
|
aTypeName.Erase();
|
|
|
|
|
2003-09-19 02:53:03 -05:00
|
|
|
return aTypeName;
|
|
|
|
}
|
|
|
|
|
|
|
|
SFX_IMPL_SINGLEFACTORY( SmFilterDetect )
|
|
|
|
|
|
|
|
/* XServiceInfo */
|
|
|
|
UNOOUSTRING SAL_CALL SmFilterDetect::getImplementationName() throw( UNORUNTIMEEXCEPTION )
|
|
|
|
{
|
|
|
|
return impl_getStaticImplementationName();
|
|
|
|
}
|
|
|
|
\
|
|
|
|
/* XServiceInfo */
|
|
|
|
sal_Bool SAL_CALL SmFilterDetect::supportsService( const UNOOUSTRING& sServiceName ) throw( UNORUNTIMEEXCEPTION )
|
|
|
|
{
|
|
|
|
UNOSEQUENCE< UNOOUSTRING > seqServiceNames = getSupportedServiceNames();
|
|
|
|
const UNOOUSTRING* pArray = seqServiceNames.getConstArray();
|
|
|
|
for ( sal_Int32 nCounter=0; nCounter<seqServiceNames.getLength(); nCounter++ )
|
|
|
|
{
|
|
|
|
if ( pArray[nCounter] == sServiceName )
|
|
|
|
{
|
|
|
|
return sal_True ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sal_False ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XServiceInfo */
|
|
|
|
UNOSEQUENCE< UNOOUSTRING > SAL_CALL SmFilterDetect::getSupportedServiceNames() throw( UNORUNTIMEEXCEPTION )
|
|
|
|
{
|
|
|
|
return impl_getStaticSupportedServiceNames();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Helper for XServiceInfo */
|
|
|
|
UNOSEQUENCE< UNOOUSTRING > SmFilterDetect::impl_getStaticSupportedServiceNames()
|
|
|
|
{
|
|
|
|
UNOMUTEXGUARD aGuard( UNOMUTEX::getGlobalMutex() );
|
|
|
|
UNOSEQUENCE< UNOOUSTRING > seqServiceNames( 1 );
|
|
|
|
seqServiceNames.getArray() [0] = UNOOUSTRING::createFromAscii( "com.sun.star.frame.ExtendedTypeDetection" );
|
|
|
|
return seqServiceNames ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Helper for XServiceInfo */
|
|
|
|
UNOOUSTRING SmFilterDetect::impl_getStaticImplementationName()
|
|
|
|
{
|
|
|
|
return UNOOUSTRING::createFromAscii( "com.sun.star.comp.math.FormatDetector" );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Helper for registry */
|
|
|
|
UNOREFERENCE< UNOXINTERFACE > SAL_CALL SmFilterDetect::impl_createInstance( const UNOREFERENCE< UNOXMULTISERVICEFACTORY >& xServiceManager ) throw( UNOEXCEPTION )
|
|
|
|
{
|
|
|
|
return UNOREFERENCE< UNOXINTERFACE >( *new SmFilterDetect( xServiceManager ) );
|
|
|
|
}
|
|
|
|
|