/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * 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 file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace ::com::sun::star; /// Glue class to call RtfImport as an internal filter, needed by copy&paste support. class SwRTFReader : public Reader { ErrCode Read(SwDoc& rDoc, const OUString& rBaseURL, SwPaM& rPam, const OUString& rFileName) override; }; ErrCode SwRTFReader::Read(SwDoc& rDoc, const OUString& /*rBaseURL*/, SwPaM& rPam, const OUString& /*rFileName*/) { if (!m_pStream) return ERR_SWG_READ_ERROR; // We want to work in an empty paragraph. // Step 1: XTextRange will be updated when content is inserted, so we know // the end position. const uno::Reference xInsertPosition = SwXTextRange::CreateXTextRange(rDoc, *rPam.GetPoint(), nullptr); std::shared_ptr pSttNdIdx(new SwNodeIndex(rDoc.GetNodes())); const SwPosition* pPos = rPam.GetPoint(); // Step 2: Split once and remember the node that has been split. rDoc.getIDocumentContentOperations().SplitNode(*pPos, false); *pSttNdIdx = pPos->nNode.GetIndex() - 1; // Step 3: Split again. rDoc.getIDocumentContentOperations().SplitNode(*pPos, false); std::shared_ptr pSttNdIdx2(new SwNodeIndex(rDoc.GetNodes())); *pSttNdIdx2 = pPos->nNode.GetIndex(); // Step 4: Insert all content into the new node rPam.Move(fnMoveBackward); rDoc.SetTextFormatColl( rPam, rDoc.getIDocumentStylePoolAccess().GetTextCollFromPool(RES_POOLCOLL_STANDARD, false)); SwDocShell* pDocShell(rDoc.GetDocShell()); uno::Reference xMultiServiceFactory( comphelper::getProcessServiceFactory()); uno::Reference xInterface( xMultiServiceFactory->createInstance("com.sun.star.comp.Writer.RtfFilter"), uno::UNO_SET_THROW); uno::Reference xImporter(xInterface, uno::UNO_QUERY_THROW); uno::Reference xDstDoc(pDocShell->GetModel(), uno::UNO_QUERY_THROW); xImporter->setTargetDocument(xDstDoc); const uno::Reference xInsertTextRange = SwXTextRange::CreateXTextRange(rDoc, *rPam.GetPoint(), nullptr); uno::Reference xFilter(xInterface, uno::UNO_QUERY_THROW); uno::Sequence aDescriptor(comphelper::InitPropertySequence( { { "InputStream", uno::Any(uno::Reference(new utl::OStreamWrapper(*m_pStream))) }, { "InsertMode", uno::Any(true) }, { "TextInsertModeRange", uno::Any(xInsertTextRange) } })); auto ret = ERRCODE_NONE; try { xFilter->filter(aDescriptor); } catch (uno::Exception const&) { TOOLS_WARN_EXCEPTION("sw.rtf", "SwRTFReader::Read()"); ret = ERR_SWG_READ_ERROR; } // Clean up the fake paragraphs. SwUnoInternalPaM aPam(rDoc); ::sw::XTextRangeToSwPaM(aPam, xInsertPosition); if (pSttNdIdx->GetIndex()) { // If we are in insert mode, join the split node that is in front // of the new content with the first new node. Or in other words: // Revert the first split node. SwTextNode* pTextNode = pSttNdIdx->GetNode().GetTextNode(); SwNodeIndex aNxtIdx(*pSttNdIdx); if (pTextNode && pTextNode->CanJoinNext(&aNxtIdx) && pSttNdIdx->GetIndex() + 1 == aNxtIdx.GetIndex()) { // If the PaM points to the first new node, move the PaM to the // end of the previous node. if (aPam.GetPoint()->nNode == aNxtIdx) { aPam.GetPoint()->nNode = *pSttNdIdx; aPam.GetPoint()->nContent.Assign(pTextNode, pTextNode->GetText().getLength()); } // If the first new node isn't empty, convert the node's text // attributes into hints. Otherwise, set the new node's // paragraph style at the previous (empty) node. SwTextNode* pDelNd = aNxtIdx.GetNode().GetTextNode(); if (pTextNode->GetText().getLength()) pDelNd->FormatToTextAttr(pTextNode); else pTextNode->ChgFormatColl(pDelNd->GetTextColl()); pTextNode->JoinNext(); } } if (pSttNdIdx2->GetIndex()) { // If we are in insert mode, join the split node that is after // the new content with the last new node. Or in other words: // Revert the second split node. SwTextNode* pTextNode = pSttNdIdx2->GetNode().GetTextNode(); SwNodeIndex aPrevIdx(*pSttNdIdx2); if (pTextNode && pTextNode->CanJoinPrev(&aPrevIdx) && pSttNdIdx2->GetIndex() - 1 == aPrevIdx.GetIndex()) { // If the last new node isn't empty, convert the node's text // attributes into hints. Otherwise, set the new node's // paragraph style at the next (empty) node. SwTextNode* pDelNd = aPrevIdx.GetNode().GetTextNode(); if (pTextNode->GetText().getLength()) pDelNd->FormatToTextAttr(pTextNode); else pTextNode->ChgFormatColl(pDelNd->GetTextColl()); pTextNode->JoinPrev(); } } return ret; } extern "C" SAL_DLLPUBLIC_EXPORT Reader* ImportRTF() { return new SwRTFReader; } extern "C" SAL_DLLPUBLIC_EXPORT bool TestImportRTF(SvStream& rStream) { SwGlobals::ensure(); SfxObjectShellLock xDocSh(new SwDocShell(SfxObjectCreateMode::INTERNAL)); xDocSh->DoInitNew(); uno::Reference xMultiServiceFactory( comphelper::getProcessServiceFactory()); uno::Reference xInterface( xMultiServiceFactory->createInstance("com.sun.star.comp.Writer.RtfFilter"), uno::UNO_SET_THROW); uno::Reference xImporter(xInterface, uno::UNO_QUERY_THROW); uno::Reference xDstDoc(xDocSh->GetModel(), uno::UNO_QUERY_THROW); xImporter->setTargetDocument(xDstDoc); uno::Reference xFilter(xInterface, uno::UNO_QUERY_THROW); uno::Sequence aDescriptor(comphelper::InitPropertySequence( { { "InputStream", uno::Any(uno::Reference(new utl::OStreamWrapper(rStream))) } })); bool bRet = true; try { xFilter->filter(aDescriptor); } catch (...) { bRet = false; } return bRet; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */