Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / sc / source / filter / lotus / lotus.cxx
blob5b726043434332e01e004ba0effd8854123d6d8a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include "lotfilter.hxx"
21 #include <lotimpop.hxx>
23 #include <sfx2/docfile.hxx>
24 #include <tools/urlobj.hxx>
26 #include <scerrors.hxx>
27 #include <root.hxx>
28 #include <filtopt.hxx>
29 #include <ftools.hxx>
31 ErrCode ScFormatFilterPluginImpl::ScImportLotus123( SfxMedium& rMedium, ScDocument* pDocument, rtl_TextEncoding eSrc )
33 SvStream* pStream = rMedium.GetInStream();
34 if (!pStream)
35 return SCERR_IMPORT_OPEN;
37 pStream->Seek( 0 );
39 pStream->SetBufferSize( 32768 );
41 LotusContext aContext;
43 ImportLotus aLotusImport(aContext, *pStream, pDocument, eSrc);
45 ErrCode eRet;
46 if (ScFilterOptions().GetWK3Flag())
47 eRet = aLotusImport.Read();
48 else
49 eRet = ErrCode(0xFFFFFFFF); // force WK1 /WKS
51 // WARNING: QUICK-HACK for WK1 / WKS <-> WK3 / WK4
52 if( eRet == ErrCode(0xFFFFFFFF) )
54 pStream->Seek( 0 );
55 pStream->SetBufferSize( 32768 );
56 eRet = ScImportLotus123old(aContext, *pStream, pDocument, eSrc);
57 pStream->SetBufferSize( 0 );
58 return eRet;
61 if( eRet != ERRCODE_NONE )
62 return eRet;
64 if (aContext.pLotusRoot->eFirstType == Lotus123Typ::WK3)
66 // try to load *.FM3 file
67 INetURLObject aURL( rMedium.GetURLObject() );
68 aURL.setExtension( "FM3" );
69 SfxMedium aMedium( aURL.GetMainURL(INetURLObject::DecodeMechanism::NONE), StreamMode::STD_READ );
70 pStream = aMedium.GetInStream();
71 if ( pStream )
73 if( aLotusImport.Read( *pStream ) != ERRCODE_NONE )
74 eRet = SCWARN_IMPORT_WRONG_FM3;
76 else
77 eRet = SCWARN_IMPORT_OPEN_FM3;
80 return eRet;
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */