2003-09-19 07:25:30 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 23:43:07 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2003-09-19 07:25:30 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2003-09-19 07:25:30 +00:00
|
|
|
*
|
2008-04-10 23:43:07 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2003-09-19 07:25:30 +00:00
|
|
|
*
|
2008-04-10 23:43:07 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2003-09-19 07:25:30 +00:00
|
|
|
*
|
2008-04-10 23:43:07 +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.
|
2003-09-19 07:25:30 +00:00
|
|
|
*
|
2008-04-10 23:43:07 +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).
|
2003-09-19 07:25:30 +00:00
|
|
|
*
|
2008-04-10 23:43:07 +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.
|
2003-09-19 07:25:30 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-07-21 13:45:01 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sc.hxx"
|
|
|
|
|
2003-09-19 07:25:30 +00:00
|
|
|
#include "scdetect.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/container/XNameAccess.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 19:21:15 +00:00
|
|
|
#include <com/sun/star/packages/zip/ZipIOException.hpp>
|
|
|
|
|
|
|
|
|
2003-09-19 07:25:30 +00:00
|
|
|
#include <framework/interaction.hxx>
|
|
|
|
|
|
|
|
#ifndef _TOOLKIT_UNOHLP_HXX
|
|
|
|
#include <toolkit/helper/vclunohelper.hxx>
|
|
|
|
#endif
|
|
|
|
#include <ucbhelper/simpleinteractionrequest.hxx>
|
|
|
|
|
|
|
|
#include <svtools/parhtml.hxx>
|
|
|
|
#include <rtl/ustring.h>
|
|
|
|
#include <rtl/logfile.hxx>
|
2009-10-16 00:05:16 +02:00
|
|
|
#include <svl/itemset.hxx>
|
2003-09-19 07:25:30 +00:00
|
|
|
#include <vcl/window.hxx>
|
2009-10-16 00:05:16 +02:00
|
|
|
#include <svl/eitem.hxx>
|
|
|
|
#include <svl/stritem.hxx>
|
2003-09-19 07:25:30 +00: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/sfxsids.hrc>
|
|
|
|
#include <sfx2/request.hxx>
|
|
|
|
#include <sfx2/docfile.hxx>
|
|
|
|
#include <sfx2/docfilt.hxx>
|
|
|
|
#include <sfx2/fcontnr.hxx>
|
|
|
|
#include <sfx2/app.hxx>
|
2004-10-04 19:21:15 +00:00
|
|
|
#include <sfx2/brokenpackageint.hxx>
|
|
|
|
#include <sot/storage.hxx>
|
2003-09-19 07:25:30 +00:00
|
|
|
|
2004-10-04 19:21:15 +00:00
|
|
|
using namespace ::com::sun::star;
|
2003-09-19 07:25:30 +00: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;
|
2008-03-12 12:19:40 +00:00
|
|
|
using ::rtl::OUString;
|
2003-09-19 07:25:30 +00:00
|
|
|
|
2007-02-27 12:46:52 +00:00
|
|
|
ScFilterDetect::ScFilterDetect( const REFERENCE < ::com::sun::star::lang::XMultiServiceFactory >& /* xFactory */ )
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ScFilterDetect::~ScFilterDetect()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static const sal_Char __FAR_DATA pFilterSc50[] = "StarCalc 5.0";
|
|
|
|
static const sal_Char __FAR_DATA pFilterSc50Temp[] = "StarCalc 5.0 Vorlage/Template";
|
|
|
|
static const sal_Char __FAR_DATA pFilterSc40[] = "StarCalc 4.0";
|
|
|
|
static const sal_Char __FAR_DATA pFilterSc40Temp[] = "StarCalc 4.0 Vorlage/Template";
|
|
|
|
static const sal_Char __FAR_DATA pFilterSc30[] = "StarCalc 3.0";
|
|
|
|
static const sal_Char __FAR_DATA pFilterSc30Temp[] = "StarCalc 3.0 Vorlage/Template";
|
|
|
|
static const sal_Char __FAR_DATA pFilterSc10[] = "StarCalc 1.0";
|
|
|
|
static const sal_Char __FAR_DATA pFilterXML[] = "StarOffice XML (Calc)";
|
|
|
|
static const sal_Char __FAR_DATA pFilterAscii[] = "Text - txt - csv (StarCalc)";
|
|
|
|
static const sal_Char __FAR_DATA pFilterLotus[] = "Lotus";
|
2006-01-27 14:52:11 +00:00
|
|
|
static const sal_Char __FAR_DATA pFilterQPro6[] = "Quattro Pro 6.0";
|
2003-09-19 07:25:30 +00:00
|
|
|
static const sal_Char __FAR_DATA pFilterExcel4[] = "MS Excel 4.0";
|
|
|
|
static const sal_Char __FAR_DATA pFilterEx4Temp[] = "MS Excel 4.0 Vorlage/Template";
|
|
|
|
static const sal_Char __FAR_DATA pFilterExcel5[] = "MS Excel 5.0/95";
|
|
|
|
static const sal_Char __FAR_DATA pFilterEx5Temp[] = "MS Excel 5.0/95 Vorlage/Template";
|
|
|
|
static const sal_Char __FAR_DATA pFilterExcel95[] = "MS Excel 95";
|
|
|
|
static const sal_Char __FAR_DATA pFilterEx95Temp[] = "MS Excel 95 Vorlage/Template";
|
|
|
|
static const sal_Char __FAR_DATA pFilterExcel97[] = "MS Excel 97";
|
|
|
|
static const sal_Char __FAR_DATA pFilterEx97Temp[] = "MS Excel 97 Vorlage/Template";
|
|
|
|
static const sal_Char __FAR_DATA pFilterDBase[] = "dBase";
|
|
|
|
static const sal_Char __FAR_DATA pFilterDif[] = "DIF";
|
|
|
|
static const sal_Char __FAR_DATA pFilterSylk[] = "SYLK";
|
|
|
|
static const sal_Char __FAR_DATA pFilterHtml[] = "HTML (StarCalc)";
|
|
|
|
static const sal_Char __FAR_DATA pFilterHtmlWeb[] = "calc_HTML_WebQuery";
|
|
|
|
static const sal_Char __FAR_DATA pFilterRtf[] = "Rich Text Format (StarCalc)";
|
|
|
|
|
|
|
|
|
2004-11-26 12:52:55 +00:00
|
|
|
static BOOL lcl_MayBeAscii( SvStream& rStream )
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
2005-10-21 11:09:17 +00:00
|
|
|
// ASCII/CSV is considered possible if there are no null bytes, or a Byte
|
|
|
|
// Order Mark is present, or if, for Unicode UCS2/UTF-16, all null bytes
|
|
|
|
// are on either even or uneven byte positions.
|
2003-09-19 07:25:30 +00:00
|
|
|
|
|
|
|
rStream.Seek(STREAM_SEEK_TO_BEGIN);
|
|
|
|
|
2005-10-21 11:09:17 +00:00
|
|
|
const size_t nBufSize = 2048;
|
|
|
|
sal_uInt16 aBuffer[ nBufSize ];
|
|
|
|
sal_uInt8* pByte = reinterpret_cast<sal_uInt8*>(aBuffer);
|
|
|
|
ULONG nBytesRead = rStream.Read( pByte, nBufSize*2);
|
2003-09-19 07:25:30 +00:00
|
|
|
|
2005-10-21 11:09:17 +00:00
|
|
|
if ( nBytesRead >= 2 && (aBuffer[0] == 0xfffe || aBuffer[0] == 0xfeff) )
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
2005-10-21 11:09:17 +00:00
|
|
|
// Unicode BOM file may contain null bytes.
|
2003-09-19 07:25:30 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2005-10-21 11:09:17 +00:00
|
|
|
const sal_uInt16* p = aBuffer;
|
|
|
|
sal_uInt16 nMask = 0xffff;
|
|
|
|
nBytesRead /= 2;
|
|
|
|
while( nBytesRead-- && nMask )
|
|
|
|
{
|
|
|
|
sal_uInt16 nVal = *p++ & nMask;
|
|
|
|
if (!(nVal & 0x00ff))
|
|
|
|
nMask &= 0xff00;
|
|
|
|
if (!(nVal & 0xff00))
|
|
|
|
nMask &= 0x00ff;
|
|
|
|
}
|
2003-09-19 07:25:30 +00:00
|
|
|
|
2005-10-21 11:09:17 +00:00
|
|
|
return nMask != 0;
|
2003-09-19 07:25:30 +00:00
|
|
|
}
|
|
|
|
|
2004-11-26 12:52:55 +00:00
|
|
|
static BOOL lcl_MayBeDBase( SvStream& rStream )
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
2008-07-08 06:24:41 +00:00
|
|
|
// Look for dbf marker, see connectivity/source/inc/dbase/DTable.hxx
|
|
|
|
// DBFType for values.
|
|
|
|
const BYTE nValidMarks[] = {
|
|
|
|
0x03, 0x04, 0x05, 0x30, 0x43, 0xB3, 0x83, 0x8b, 0x8e, 0xf5 };
|
|
|
|
BYTE nMark;
|
|
|
|
rStream.Seek(STREAM_SEEK_TO_BEGIN);
|
|
|
|
rStream >> nMark;
|
|
|
|
bool bValidMark = false;
|
|
|
|
for (size_t i=0; i < sizeof(nValidMarks)/sizeof(nValidMarks[0]) && !bValidMark; ++i)
|
|
|
|
{
|
|
|
|
if (nValidMarks[i] == nMark)
|
|
|
|
bValidMark = true;
|
|
|
|
}
|
|
|
|
if ( !bValidMark )
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
const size_t nHeaderBlockSize = 32;
|
|
|
|
// Empty dbf is >= 32*2+1 bytes in size.
|
|
|
|
const size_t nEmptyDbf = nHeaderBlockSize * 2 + 1;
|
2003-09-19 07:25:30 +00:00
|
|
|
|
|
|
|
rStream.Seek(STREAM_SEEK_TO_END);
|
|
|
|
ULONG nSize = rStream.Tell();
|
2008-07-08 06:24:41 +00:00
|
|
|
if ( nSize < nEmptyDbf )
|
|
|
|
return FALSE;
|
2003-09-19 07:25:30 +00:00
|
|
|
|
|
|
|
// length of header starts at 8
|
|
|
|
rStream.Seek(8);
|
|
|
|
USHORT nHeaderLen;
|
|
|
|
rStream >> nHeaderLen;
|
|
|
|
|
2008-07-08 06:24:41 +00:00
|
|
|
if ( nHeaderLen < nEmptyDbf || nSize < nHeaderLen )
|
2003-09-19 07:25:30 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2004-06-03 11:35:40 +00:00
|
|
|
// Last byte of header must be 0x0d, this is how it's specified.
|
|
|
|
// #i9581#,#i26407# but some applications don't follow the specification
|
2008-07-08 06:24:41 +00:00
|
|
|
// and pad the header with one byte 0x00 to reach an
|
|
|
|
// even boundary. Some (#i88577# ) even pad more or pad using a 0x1a ^Z
|
|
|
|
// control character (#i8857#). This results in:
|
|
|
|
// Last byte of header must be 0x0d on 32 bytes boundary.
|
|
|
|
USHORT nBlocks = (nHeaderLen - 1) / nHeaderBlockSize;
|
|
|
|
BYTE nEndFlag = 0;
|
|
|
|
while ( nBlocks > 1 && nEndFlag != 0x0d ) {
|
|
|
|
rStream.Seek( nBlocks-- * nHeaderBlockSize );
|
|
|
|
rStream >> nEndFlag;
|
|
|
|
}
|
2003-09-19 07:25:30 +00:00
|
|
|
|
2008-07-08 06:24:41 +00:00
|
|
|
return ( 0x0d == nEndFlag );
|
2003-09-19 07:25:30 +00:00
|
|
|
}
|
|
|
|
|
2007-02-27 12:46:52 +00:00
|
|
|
#if 0
|
2004-11-26 12:52:55 +00:00
|
|
|
static BOOL lcl_IsAnyXMLFilter( const SfxFilter* pFilter )
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
|
|
|
if ( !pFilter )
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
// TRUE for XML file or template
|
|
|
|
// (template filter has no internal name -> allow configuration key names)
|
|
|
|
|
2005-03-23 12:11:40 +00:00
|
|
|
String aName(pFilter->GetFilterName());
|
2003-09-19 07:25:30 +00:00
|
|
|
return aName.EqualsAscii(pFilterXML) ||
|
|
|
|
aName.EqualsAscii("calc_StarOffice_XML_Calc") ||
|
|
|
|
aName.EqualsAscii("calc_StarOffice_XML_Calc_Template");
|
|
|
|
}
|
2007-02-27 12:46:52 +00:00
|
|
|
#endif
|
2003-09-19 07:25:30 +00:00
|
|
|
|
|
|
|
::rtl::OUString SAL_CALL ScFilterDetect::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 19:21:15 +00:00
|
|
|
::rtl::OUString aDocumentTitle; // interesting only if set in this method
|
|
|
|
|
2003-09-19 07:25:30 +00: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 19:21:15 +00:00
|
|
|
sal_Bool bRepairPackage = sal_False;
|
|
|
|
sal_Bool bRepairAllowed = sal_False;
|
|
|
|
|
2003-09-19 07:25:30 +00: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 19:21:15 +00:00
|
|
|
sal_Int32 nIndexOfDocumentTitle = -1;
|
|
|
|
|
2003-09-19 07:25:30 +00: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 19:21:15 +00: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 07:25:30 +00: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;
|
|
|
|
|
|
|
|
SfxAllItemSet *pSet = new SfxAllItemSet( SFX_APP()->GetPool() );
|
|
|
|
TransformParameters( SID_OPENDOC, lDescriptor, *pSet );
|
|
|
|
SFX_ITEMSET_ARG( pSet, pItem, SfxBoolItem, SID_DOC_READONLY, FALSE );
|
|
|
|
|
|
|
|
bWasReadOnly = pItem && pItem->GetValue();
|
|
|
|
|
|
|
|
const SfxFilter* pFilter = 0;
|
|
|
|
String aPrefix = String::CreateFromAscii( "private:factory/" );
|
|
|
|
if( aURL.Match( aPrefix ) == aPrefix.Len() )
|
|
|
|
{
|
|
|
|
String aPattern( aPrefix );
|
|
|
|
aPattern += String::CreateFromAscii("scalc");
|
|
|
|
if ( aURL.Match( aPattern ) >= aPattern.Len() )
|
|
|
|
pFilter = SfxFilter::GetDefaultFilterFromFactory( aURL );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// container for Calc filters
|
|
|
|
SfxFilterMatcher aMatcher( String::CreateFromAscii("scalc") );
|
|
|
|
if ( aPreselectedFilterName.Len() )
|
|
|
|
pFilter = SfxFilter::GetFilterByName( aPreselectedFilterName );
|
|
|
|
else if( aTypeName.Len() )
|
|
|
|
pFilter = aMatcher.GetFilter4EA( aTypeName );
|
|
|
|
|
|
|
|
// 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
|
2005-03-23 12:11:40 +00:00
|
|
|
xStream.set(aMedium.GetInputStream());
|
|
|
|
xContent.set(aMedium.GetContent());
|
2003-09-19 07:25:30 +00:00
|
|
|
bReadOnly = aMedium.IsReadOnly();
|
|
|
|
|
|
|
|
// maybe that IsStorage() already created an error!
|
|
|
|
if ( bIsStorage )
|
|
|
|
{
|
2009-09-17 13:53:54 +00:00
|
|
|
uno::Reference < embed::XStorage > xStorage(aMedium.GetStorage( sal_False ));
|
2003-09-19 07:25:30 +00: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 16:15:54 +00:00
|
|
|
aMedium.SetError( aMedium.GetLastStorageCreationState(), ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( OSL_LOG_PREFIX ) ) );
|
2003-09-19 07:25:30 +00: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 & ) {};
|
|
|
|
}
|
|
|
|
}
|
2004-10-04 19:21:15 +00:00
|
|
|
else if ( xStorage.is() )
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
2004-10-04 19:21:15 +00:00
|
|
|
try
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
2004-10-04 19:21:15 +00:00
|
|
|
String aFilterName;
|
|
|
|
if ( pFilter )
|
|
|
|
aFilterName = pFilter->GetName();
|
2005-01-18 14:49:03 +00:00
|
|
|
aTypeName = SfxFilter::GetTypeFromStorage( xStorage, pFilter ? pFilter->IsOwnTemplateFormat() : FALSE, &aFilterName );
|
2003-09-19 07:25:30 +00:00
|
|
|
}
|
2004-10-04 19:21:15 +00:00
|
|
|
catch( lang::WrappedTargetException& aWrap )
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
2004-10-04 19:21:15 +00:00
|
|
|
packages::zip::ZipIOException aZipException;
|
2003-09-19 07:25:30 +00:00
|
|
|
|
2004-10-04 19:21:15 +00:00
|
|
|
// repairing is done only if this type is requested from outside
|
|
|
|
if ( ( aWrap.TargetException >>= aZipException ) && aTypeName.Len() )
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
2004-10-04 19:21:15 +00:00
|
|
|
if ( xInteraction.is() )
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
2004-10-04 19:21:15 +00:00
|
|
|
// 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 );
|
|
|
|
}
|
2003-09-19 07:25:30 +00:00
|
|
|
}
|
|
|
|
|
2004-10-04 19:21:15 +00:00
|
|
|
if ( !bRepairAllowed )
|
|
|
|
aTypeName.Erase();
|
2003-09-19 07:25:30 +00:00
|
|
|
}
|
|
|
|
}
|
2004-10-04 19:21:15 +00:00
|
|
|
catch( uno::RuntimeException& )
|
|
|
|
{
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
catch( uno::Exception& )
|
|
|
|
{
|
|
|
|
aTypeName.Erase();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( aTypeName.Len() )
|
|
|
|
pFilter = SfxFilterMatcher( String::CreateFromAscii("scalc") ).GetFilter4EA( aTypeName );
|
|
|
|
|
2003-09-19 07:25:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-10-04 19:21:15 +00:00
|
|
|
SvStream* pStream = aMedium.GetInStream();
|
2004-12-07 09:56:25 +00:00
|
|
|
const SfxFilter* pPreselectedFilter = pFilter;
|
|
|
|
pFilter = 0;
|
|
|
|
if ( pStream )
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
2004-10-04 19:21:15 +00:00
|
|
|
SotStorageRef aStorage = new SotStorage ( pStream, FALSE );
|
|
|
|
if ( !aStorage->GetError() )
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
2004-10-04 19:21:15 +00:00
|
|
|
// Excel-5: detect through contained streams
|
|
|
|
// there are some "excel" formats from 3rd party vendors that need to be distinguished
|
2005-03-23 12:11:40 +00:00
|
|
|
String aStreamName(RTL_CONSTASCII_STRINGPARAM("Workbook"));
|
2004-10-04 19:21:15 +00:00
|
|
|
BOOL bExcel97Stream = ( aStorage->IsStream( aStreamName ) );
|
|
|
|
|
2005-03-23 12:11:40 +00:00
|
|
|
aStreamName = String(RTL_CONSTASCII_STRINGPARAM("Book"));
|
2004-10-04 19:21:15 +00:00
|
|
|
BOOL bExcel5Stream = ( aStorage->IsStream( aStreamName ) );
|
|
|
|
if ( bExcel97Stream || bExcel5Stream )
|
|
|
|
{
|
|
|
|
if ( bExcel97Stream )
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
2004-10-04 19:21:15 +00:00
|
|
|
String aOldName;
|
|
|
|
BOOL bIsCalcFilter = TRUE;
|
2004-12-07 09:56:25 +00:00
|
|
|
if ( pPreselectedFilter )
|
2004-10-04 19:21:15 +00:00
|
|
|
{
|
|
|
|
// cross filter; now this should be a type detection only, not a filter detection
|
|
|
|
// we can simulate it by preserving the preselected filter if the type matches
|
|
|
|
// example: Excel filters for Writer
|
2004-12-07 09:56:25 +00:00
|
|
|
aOldName = pPreselectedFilter->GetFilterName();
|
|
|
|
bIsCalcFilter = pPreselectedFilter->GetServiceName().EqualsAscii("com.sun.star.sheet.SpreadsheetDocument");
|
2004-10-04 19:21:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( aOldName.EqualsAscii(pFilterEx97Temp) || !bIsCalcFilter )
|
|
|
|
{
|
|
|
|
// Excel 97 template selected -> keep selection
|
|
|
|
}
|
|
|
|
else if ( bExcel5Stream &&
|
|
|
|
( aOldName.EqualsAscii(pFilterExcel5) || aOldName.EqualsAscii(pFilterEx5Temp) ||
|
|
|
|
aOldName.EqualsAscii(pFilterExcel95) || aOldName.EqualsAscii(pFilterEx95Temp) ) )
|
|
|
|
{
|
|
|
|
// dual format file and Excel 5 selected -> keep selection
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// else use Excel 97 filter
|
|
|
|
pFilter = aMatcher.GetFilter4FilterName( String::CreateFromAscii(pFilterExcel97) );
|
|
|
|
}
|
2003-09-19 07:25:30 +00:00
|
|
|
}
|
2004-10-04 19:21:15 +00:00
|
|
|
else if ( bExcel5Stream )
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
2004-10-04 19:21:15 +00:00
|
|
|
String aOldName;
|
|
|
|
BOOL bIsCalcFilter = TRUE;
|
2004-12-07 09:56:25 +00:00
|
|
|
if ( pPreselectedFilter )
|
2004-10-04 19:21:15 +00:00
|
|
|
{
|
|
|
|
// cross filter; now this should be a type detection only, not a filter detection
|
|
|
|
// we can simulate it by preserving the preselected filter if the type matches
|
|
|
|
// example: Excel filters for Writer
|
2004-12-07 09:56:25 +00:00
|
|
|
aOldName = pPreselectedFilter->GetFilterName();
|
|
|
|
bIsCalcFilter = pPreselectedFilter->GetServiceName().EqualsAscii("com.sun.star.sheet.SpreadsheetDocument");
|
2004-10-04 19:21:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( aOldName.EqualsAscii(pFilterExcel95) || aOldName.EqualsAscii(pFilterEx95Temp) ||
|
|
|
|
aOldName.EqualsAscii(pFilterEx5Temp) || !bIsCalcFilter )
|
|
|
|
{
|
|
|
|
// Excel 95 oder Vorlage (5 oder 95) eingestellt -> auch gut
|
|
|
|
}
|
|
|
|
else if ( aOldName.EqualsAscii(pFilterEx97Temp) )
|
|
|
|
{
|
|
|
|
// #101923# auto detection has found template -> return Excel5 template
|
|
|
|
pFilter = aMatcher.GetFilter4FilterName( String::CreateFromAscii(pFilterEx5Temp) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// sonst wird als Excel 5-Datei erkannt
|
|
|
|
pFilter = aMatcher.GetFilter4FilterName( String::CreateFromAscii(pFilterExcel5) );
|
|
|
|
}
|
2003-09-19 07:25:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-10-04 19:21:15 +00:00
|
|
|
else
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
2004-10-04 19:21:15 +00:00
|
|
|
SvStream &rStr = *pStream;
|
|
|
|
|
|
|
|
// Tabelle mit Suchmustern
|
|
|
|
// Bedeutung der Sequenzen
|
|
|
|
// 0x00??: genau Byte 0x?? muss an dieser Stelle stehen
|
|
|
|
// 0x0100: ein Byte ueberlesen (don't care)
|
|
|
|
// 0x02nn: ein Byte aus 0xnn Alternativen folgt
|
|
|
|
// 0x8000: Erkennung abgeschlossen
|
|
|
|
//
|
|
|
|
|
|
|
|
#define M_DC 0x0100
|
2006-07-10 11:46:18 +00:00
|
|
|
#define M_ALT(ANZ) (0x0200+(ANZ))
|
2004-10-04 19:21:15 +00:00
|
|
|
#define M_ENDE 0x8000
|
|
|
|
|
2006-07-10 11:46:18 +00:00
|
|
|
static const UINT16 pLotus[] = // Lotus 1/1A/2
|
2004-10-04 19:21:15 +00:00
|
|
|
{ 0x0000, 0x0000, 0x0002, 0x0000,
|
|
|
|
M_ALT(2), 0x0004, 0x0006,
|
|
|
|
0x0004, M_ENDE };
|
|
|
|
|
2006-07-10 11:46:18 +00:00
|
|
|
static const UINT16 pLotusNew[] = // Lotus >= 9.7
|
2005-01-14 11:15:23 +00:00
|
|
|
{ 0x0000, 0x0000, M_DC, 0x0000, // Rec# + Len (0x1a)
|
|
|
|
M_ALT(3), 0x0003, 0x0004, 0x0005, // File Revision Code 97->ME
|
|
|
|
0x0010, 0x0004, 0x0000, 0x0000,
|
|
|
|
M_ENDE };
|
2004-11-26 12:52:55 +00:00
|
|
|
|
2006-07-10 11:46:18 +00:00
|
|
|
static const UINT16 pExcel1[] = // Excel BIFF2, BIFF3, BIFF4
|
|
|
|
{ 0x09, // lobyte of BOF rec ID (0x0009, 0x0209, 0x0409)
|
|
|
|
M_ALT(3), 0x00, 0x02, 0x04, // hibyte of BOF rec ID (0x0009, 0x0209, 0x0409)
|
|
|
|
M_ALT(3), 4, 6, 8, // lobyte of BOF rec size (4, 6, 8, 16)
|
|
|
|
0x00, // hibyte of BOF rec size (4, 6, 8, 16)
|
|
|
|
M_DC, M_DC, // any version
|
|
|
|
M_ALT(3), 0x10, 0x20, 0x40, // lobyte of data type (0x0010, 0x0020, 0x0040)
|
|
|
|
0x00, // hibyte of data type (0x0010, 0x0020, 0x0040)
|
|
|
|
M_ENDE };
|
2004-10-04 19:21:15 +00:00
|
|
|
|
2006-07-10 11:46:18 +00:00
|
|
|
static const UINT16 pExcel2[] = // Excel BIFF4 Workspace
|
|
|
|
{ 0x09, // lobyte of BOF rec ID (0x0409)
|
|
|
|
0x04, // hibyte of BOF rec ID (0x0409)
|
|
|
|
M_ALT(3), 4, 6, 8, // lobyte of BOF rec size (4, 6, 8, 16)
|
|
|
|
0x00, // hibyte of BOF rec size (4, 6, 8, 16)
|
|
|
|
M_DC, M_DC, // any version
|
|
|
|
0x00, // lobyte of data type (0x0100)
|
|
|
|
0x01, // hibyte of data type (0x0100)
|
|
|
|
M_ENDE };
|
2004-10-04 19:21:15 +00:00
|
|
|
|
2006-07-10 11:46:18 +00:00
|
|
|
static const UINT16 pExcel3[] = // #i23425# Excel BIFF5, BIFF7, BIFF8 (simple book stream)
|
2005-01-14 11:15:23 +00:00
|
|
|
{ 0x09, // lobyte of BOF rec ID (0x0809)
|
|
|
|
0x08, // hibyte of BOF rec ID (0x0809)
|
|
|
|
M_ALT(4), 4, 6, 8, 16, // lobyte of BOF rec size
|
|
|
|
0x00, // hibyte of BOF rec size
|
|
|
|
M_DC, M_DC, // any version
|
|
|
|
M_ALT(5), 0x05, 0x06, 0x10, 0x20, 0x40, // lobyte of data type
|
|
|
|
0x00, // hibyte of data type
|
|
|
|
M_ENDE };
|
|
|
|
|
2006-07-10 11:46:18 +00:00
|
|
|
static const UINT16 pSc10[] = // StarCalc 1.0 Dokumente
|
2004-10-04 19:21:15 +00:00
|
|
|
{ 'B', 'l', 'a', 'i', 's', 'e', '-', 'T', 'a', 'b', 'e', 'l', 'l',
|
|
|
|
'e', 0x000A, 0x000D, 0x0000, // Sc10CopyRight[16]
|
|
|
|
M_DC, M_DC, M_DC, M_DC, M_DC, M_DC, M_DC, M_DC, M_DC, M_DC, M_DC,
|
|
|
|
M_DC, M_DC, // Sc10CopyRight[29]
|
|
|
|
M_ALT(2), 0x0065, 0x0066, // Versionsnummer 101 oder 102
|
|
|
|
0x0000,
|
|
|
|
M_ENDE };
|
|
|
|
|
2006-07-10 11:46:18 +00:00
|
|
|
static const UINT16 pLotus2[] = // Lotus >3
|
2004-10-04 19:21:15 +00:00
|
|
|
{ 0x0000, 0x0000, 0x001A, 0x0000, // Rec# + Len (26)
|
|
|
|
M_ALT(2), 0x0000, 0x0002, // File Revision Code
|
|
|
|
0x0010,
|
|
|
|
0x0004, 0x0000, // File Revision Subcode
|
|
|
|
M_ENDE };
|
|
|
|
|
2006-07-10 11:46:18 +00:00
|
|
|
static const UINT16 pQPro[] =
|
2006-01-27 14:52:11 +00:00
|
|
|
{ 0x0000, 0x0000, 0x0002, 0x0000,
|
|
|
|
M_ALT(4), 0x0001, 0x0002, // WB1, WB2
|
|
|
|
0x0006, 0x0007, // QPro 6/7 (?)
|
|
|
|
0x0010,
|
|
|
|
M_ENDE };
|
|
|
|
|
2006-07-10 11:46:18 +00:00
|
|
|
static const UINT16 pDIF1[] = // DIF mit CR-LF
|
2004-10-04 19:21:15 +00:00
|
|
|
{
|
|
|
|
'T', 'A', 'B', 'L', 'E',
|
|
|
|
M_DC, M_DC,
|
|
|
|
'0', ',', '1',
|
|
|
|
M_DC, M_DC,
|
|
|
|
'\"',
|
|
|
|
M_ENDE };
|
|
|
|
|
2006-07-10 11:46:18 +00:00
|
|
|
static const UINT16 pDIF2[] = // DIF mit CR oder LF
|
2004-10-04 19:21:15 +00:00
|
|
|
{
|
|
|
|
'T', 'A', 'B', 'L', 'E',
|
|
|
|
M_DC,
|
|
|
|
'0', ',', '1',
|
|
|
|
M_DC,
|
|
|
|
'\"',
|
|
|
|
M_ENDE };
|
|
|
|
|
2006-07-10 11:46:18 +00:00
|
|
|
static const UINT16 pSylk[] = // Sylk
|
2004-10-04 19:21:15 +00:00
|
|
|
{
|
2006-08-04 10:34:48 +00:00
|
|
|
'I', 'D', ';',
|
|
|
|
M_ALT(3), 'P', 'N', 'E', // 'P' plus undocumented Excel extensions 'N' and 'E'
|
2004-10-04 19:21:15 +00:00
|
|
|
M_ENDE };
|
|
|
|
|
2006-07-10 11:46:18 +00:00
|
|
|
static const UINT16 *ppFilterPatterns[] = // Arrays mit Suchmustern
|
2004-10-04 19:21:15 +00:00
|
|
|
{
|
|
|
|
pLotus,
|
|
|
|
pExcel1,
|
|
|
|
pExcel2,
|
|
|
|
pExcel3,
|
|
|
|
pSc10,
|
|
|
|
pDIF1,
|
|
|
|
pDIF2,
|
|
|
|
pSylk,
|
2004-11-26 12:52:55 +00:00
|
|
|
pLotusNew,
|
2006-01-27 14:52:11 +00:00
|
|
|
pLotus2,
|
|
|
|
pQPro
|
2004-10-04 19:21:15 +00:00
|
|
|
};
|
2004-11-26 12:52:55 +00:00
|
|
|
const UINT16 nFilterCount = sizeof(ppFilterPatterns) / sizeof(ppFilterPatterns[0]);
|
2004-10-04 19:21:15 +00:00
|
|
|
|
2006-07-10 11:46:18 +00:00
|
|
|
static const sal_Char* const pFilterName[] = // zugehoerige Filter
|
2004-10-04 19:21:15 +00:00
|
|
|
{
|
|
|
|
pFilterLotus,
|
|
|
|
pFilterExcel4,
|
|
|
|
pFilterExcel4,
|
|
|
|
pFilterExcel4,
|
|
|
|
pFilterSc10,
|
|
|
|
pFilterDif,
|
|
|
|
pFilterDif,
|
|
|
|
pFilterSylk,
|
2004-11-26 12:52:55 +00:00
|
|
|
pFilterLotus,
|
2006-01-27 14:52:11 +00:00
|
|
|
pFilterLotus,
|
|
|
|
pFilterQPro6
|
2004-10-04 19:21:15 +00:00
|
|
|
};
|
|
|
|
|
2007-02-27 12:46:52 +00:00
|
|
|
// const UINT16 nByteMask = 0xFF;
|
2004-10-04 19:21:15 +00:00
|
|
|
|
|
|
|
// suchen Sie jetzt!
|
|
|
|
// ... realisiert ueber 'Mustererkennung'
|
|
|
|
|
|
|
|
BYTE nAkt;
|
|
|
|
BOOL bSync; // Datei und Muster stimmen ueberein
|
|
|
|
USHORT nFilter; // Zaehler ueber alle Filter
|
|
|
|
const UINT16 *pSearch; // aktuelles Musterwort
|
|
|
|
|
2004-11-26 12:52:55 +00:00
|
|
|
for ( nFilter = 0 ; nFilter < nFilterCount ; nFilter++ )
|
2004-10-04 19:21:15 +00:00
|
|
|
{
|
|
|
|
rStr.Seek( 0 ); // am Anfang war alles Uebel...
|
|
|
|
rStr >> nAkt;
|
2004-11-26 12:52:55 +00:00
|
|
|
pSearch = ppFilterPatterns[ nFilter ];
|
2004-10-04 19:21:15 +00:00
|
|
|
bSync = TRUE;
|
|
|
|
while( !rStr.IsEof() && bSync )
|
|
|
|
{
|
|
|
|
register UINT16 nMuster = *pSearch;
|
|
|
|
|
|
|
|
if( nMuster < 0x0100 )
|
|
|
|
{ // direkter Byte-Vergleich
|
|
|
|
if( ( BYTE ) nMuster != nAkt )
|
|
|
|
bSync = FALSE;
|
|
|
|
}
|
|
|
|
else if( nMuster & M_DC )
|
|
|
|
{ // don't care
|
|
|
|
}
|
|
|
|
else if( nMuster & M_ALT(0) )
|
|
|
|
{ // alternative Bytes
|
|
|
|
BYTE nAnzAlt = ( BYTE ) nMuster;
|
|
|
|
bSync = FALSE; // zunaechst unsynchron
|
|
|
|
while( nAnzAlt > 0 )
|
|
|
|
{
|
|
|
|
pSearch++;
|
|
|
|
if( ( BYTE ) *pSearch == nAkt )
|
|
|
|
bSync = TRUE; // jetzt erst Synchronisierung
|
|
|
|
nAnzAlt--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( nMuster & M_ENDE )
|
|
|
|
{ // Format detected
|
2004-12-07 09:56:25 +00:00
|
|
|
if ( pFilterName[nFilter] == pFilterExcel4 && pPreselectedFilter &&
|
|
|
|
( (pPreselectedFilter)->GetFilterName().EqualsAscii(pFilterEx4Temp) || pPreselectedFilter->GetTypeName().EqualsAscii("calc_MS_Excel_40") ) )
|
2004-10-04 19:21:15 +00:00
|
|
|
{
|
|
|
|
// Excel 4 erkannt, Excel 4 Vorlage eingestellt -> auch gut
|
|
|
|
// oder Excel 4 Filter anderer Applikation (simulated type detection!)
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // gefundenen Filter einstellen
|
|
|
|
pFilter = aMatcher.GetFilter4FilterName( String::CreateFromAscii(pFilterName[ nFilter ]) );
|
|
|
|
}
|
2005-03-29 12:48:54 +00:00
|
|
|
bSync = FALSE; // leave inner loop
|
|
|
|
nFilter = nFilterCount; // leave outer loop
|
2004-10-04 19:21:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // Tabellenfehler
|
|
|
|
DBG_ERROR( "-ScApplication::DetectFilter(): Fehler in Mustertabelle");
|
|
|
|
}
|
|
|
|
|
|
|
|
pSearch++;
|
|
|
|
rStr >> nAkt;
|
|
|
|
}
|
|
|
|
}
|
2003-09-19 07:25:30 +00:00
|
|
|
|
2005-01-31 07:37:40 +00:00
|
|
|
if ( pPreselectedFilter && !pFilter )
|
2003-09-19 07:25:30 +00:00
|
|
|
{
|
2005-01-31 07:37:40 +00:00
|
|
|
// further checks for filters only if they are preselected: ASCII, HTML, RTF, DBase
|
|
|
|
// without the preselection other filters (Writer) take precedence
|
|
|
|
// DBase can't be detected reliably, so it also needs preselection
|
|
|
|
if ( pPreselectedFilter->GetFilterName().EqualsAscii(pFilterAscii) && lcl_MayBeAscii( rStr ) )
|
2004-10-04 19:21:15 +00:00
|
|
|
{
|
2005-01-31 07:37:40 +00:00
|
|
|
// Text filter is accepted if preselected
|
|
|
|
pFilter = pPreselectedFilter;
|
2004-10-04 19:21:15 +00:00
|
|
|
}
|
2005-01-31 07:37:40 +00:00
|
|
|
else
|
2004-10-04 19:21:15 +00:00
|
|
|
{
|
2005-01-31 07:37:40 +00:00
|
|
|
// get file header
|
|
|
|
rStr.Seek( 0 );
|
|
|
|
const int nTrySize = 80;
|
|
|
|
ByteString aHeader;
|
|
|
|
for ( int j = 0; j < nTrySize && !rStr.IsEof(); j++ )
|
2004-10-04 19:21:15 +00:00
|
|
|
{
|
2005-01-31 07:37:40 +00:00
|
|
|
sal_Char c;
|
|
|
|
rStr >> c;
|
|
|
|
aHeader += c;
|
2004-10-04 19:21:15 +00:00
|
|
|
}
|
2005-01-31 07:37:40 +00:00
|
|
|
aHeader += '\0';
|
|
|
|
|
|
|
|
if ( HTMLParser::IsHTMLFormat( aHeader.GetBuffer() ) )
|
|
|
|
{
|
|
|
|
// test for HTML
|
|
|
|
if ( pPreselectedFilter->GetName().EqualsAscii(pFilterHtml) )
|
|
|
|
{
|
|
|
|
pFilter = pPreselectedFilter;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pFilter = aMatcher.GetFilter4FilterName( String::CreateFromAscii(pFilterHtmlWeb) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( aHeader.CompareTo( "{\\rtf", 5 ) == COMPARE_EQUAL )
|
2004-10-04 19:21:15 +00:00
|
|
|
{
|
2005-01-31 07:37:40 +00:00
|
|
|
// test for RTF
|
|
|
|
pFilter = aMatcher.GetFilter4FilterName( String::CreateFromAscii(pFilterRtf) );
|
2004-10-04 19:21:15 +00:00
|
|
|
}
|
2005-01-31 07:37:40 +00:00
|
|
|
else if ( pPreselectedFilter->GetName().EqualsAscii(pFilterDBase) && lcl_MayBeDBase( rStr ) )
|
|
|
|
pFilter = pPreselectedFilter;
|
2004-10-04 19:21:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-09-19 07:25:30 +00: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 19:21:15 +00: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 12:30:46 +00:00
|
|
|
if ( pFilter )
|
|
|
|
aTypeName = pFilter->GetTypeName();
|
|
|
|
else
|
|
|
|
aTypeName.Erase();
|
2003-09-19 07:25:30 +00:00
|
|
|
return aTypeName;
|
|
|
|
}
|
|
|
|
|
|
|
|
SFX_IMPL_SINGLEFACTORY( ScFilterDetect )
|
|
|
|
|
|
|
|
/* XServiceInfo */
|
|
|
|
UNOOUSTRING SAL_CALL ScFilterDetect::getImplementationName() throw( UNORUNTIMEEXCEPTION )
|
|
|
|
{
|
|
|
|
return impl_getStaticImplementationName();
|
|
|
|
}
|
|
|
|
\
|
|
|
|
/* XServiceInfo */
|
|
|
|
sal_Bool SAL_CALL ScFilterDetect::supportsService( const UNOOUSTRING& sServiceName ) throw( UNORUNTIMEEXCEPTION )
|
|
|
|
{
|
2005-03-23 12:11:40 +00:00
|
|
|
UNOSEQUENCE< UNOOUSTRING > seqServiceNames(getSupportedServiceNames());
|
2003-09-19 07:25:30 +00:00
|
|
|
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 ScFilterDetect::getSupportedServiceNames() throw( UNORUNTIMEEXCEPTION )
|
|
|
|
{
|
|
|
|
return impl_getStaticSupportedServiceNames();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Helper for XServiceInfo */
|
|
|
|
UNOSEQUENCE< UNOOUSTRING > ScFilterDetect::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 ScFilterDetect::impl_getStaticImplementationName()
|
|
|
|
{
|
|
|
|
return UNOOUSTRING::createFromAscii( "com.sun.star.comp.calc.FormatDetector" );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Helper for registry */
|
|
|
|
UNOREFERENCE< UNOXINTERFACE > SAL_CALL ScFilterDetect::impl_createInstance( const UNOREFERENCE< UNOXMULTISERVICEFACTORY >& xServiceManager ) throw( UNOEXCEPTION )
|
|
|
|
{
|
|
|
|
return UNOREFERENCE< UNOXINTERFACE >( *new ScFilterDetect( xServiceManager ) );
|
|
|
|
}
|
|
|
|
|