Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include <hintids.hxx>
21 : #include <unotools/tempfile.hxx>
22 : #include <svl/urihelper.hxx>
23 : #include <svl/stritem.hxx>
24 : #include <svl/eitem.hxx>
25 : #include <sfx2/app.hxx>
26 : #include <sfx2/docfile.hxx>
27 : #include <sfx2/docfilt.hxx>
28 : #include <sfx2/fcontnr.hxx>
29 : #include <sfx2/bindings.hxx>
30 : #include <sfx2/request.hxx>
31 : #include <fmtinfmt.hxx>
32 : #include <fmtanchr.hxx>
33 : #include <doc.hxx>
34 : #include <IDocumentUndoRedo.hxx>
35 : #include <IDocumentRedlineAccess.hxx>
36 : #include <DocumentSettingManager.hxx>
37 : #include <DocumentContentOperationsManager.hxx>
38 : #include <IDocumentLayoutAccess.hxx>
39 : #include <docary.hxx>
40 : #include <pam.hxx>
41 : #include <ndtxt.hxx>
42 : #include <docsh.hxx>
43 : #include <globdoc.hxx>
44 : #include <shellio.hxx>
45 : #include <swundo.hxx>
46 : #include <section.hxx>
47 : #include <doctxm.hxx>
48 : #include <poolfmt.hxx>
49 : #include <calbck.hxx>
50 : #include <boost/scoped_ptr.hpp>
51 : #include <com/sun/star/uno/Reference.h>
52 : #include <com/sun/star/document/XDocumentPropertiesSupplier.hpp>
53 : #include <com/sun/star/document/XDocumentProperties.hpp>
54 :
55 : using namespace ::com::sun::star;
56 :
57 : enum SwSplitDocType
58 : {
59 : SPLITDOC_TO_GLOBALDOC,
60 : SPLITDOC_TO_HTML
61 : };
62 :
63 0 : bool SwDoc::GenerateGlobalDoc( const OUString& rPath,
64 : const SwTextFormatColl* pSplitColl )
65 : {
66 0 : return SplitDoc( SPLITDOC_TO_GLOBALDOC, rPath, false, pSplitColl, 0 );
67 : }
68 :
69 0 : bool SwDoc::GenerateGlobalDoc( const OUString& rPath, int nOutlineLevel )
70 : {
71 0 : return SplitDoc( SPLITDOC_TO_GLOBALDOC, rPath, true, 0, nOutlineLevel );
72 : }
73 :
74 0 : bool SwDoc::GenerateHTMLDoc( const OUString& rPath, int nOutlineLevel )
75 : {
76 0 : return SplitDoc( SPLITDOC_TO_HTML, rPath, true, 0, nOutlineLevel );
77 : }
78 :
79 0 : bool SwDoc::GenerateHTMLDoc( const OUString& rPath,
80 : const SwTextFormatColl* pSplitColl )
81 : {
82 0 : return SplitDoc( SPLITDOC_TO_HTML, rPath, false, pSplitColl, 0 );
83 : }
84 :
85 : // two helpers for outline mode
86 0 : SwNodePtr GetStartNode( SwOutlineNodes* pOutlNds, int nOutlineLevel, sal_uInt16* nOutl )
87 : {
88 : SwNodePtr pNd;
89 :
90 0 : for( ; *nOutl < pOutlNds->size(); ++(*nOutl) )
91 0 : if( ( pNd = (*pOutlNds)[ *nOutl ])->GetTextNode()->GetAttrOutlineLevel() == nOutlineLevel && !pNd->FindTableNode() )
92 : {
93 0 : return pNd;
94 : }
95 :
96 0 : return 0;
97 : }
98 :
99 0 : SwNodePtr GetEndNode( SwOutlineNodes* pOutlNds, int nOutlineLevel, sal_uInt16* nOutl )
100 : {
101 : SwNodePtr pNd;
102 :
103 0 : for( ++(*nOutl); (*nOutl) < pOutlNds->size(); ++(*nOutl) )
104 : {
105 0 : pNd = (*pOutlNds)[ *nOutl ];
106 :
107 0 : const int nLevel = pNd->GetTextNode()->GetAttrOutlineLevel();
108 :
109 0 : if( ( 0 < nLevel && nLevel <= nOutlineLevel ) &&
110 0 : !pNd->FindTableNode() )
111 : {
112 0 : return pNd;
113 : }
114 : }
115 0 : return 0;
116 : }
117 :
118 : // two helpers for collection mode
119 0 : SwNodePtr GetStartNode( const SwOutlineNodes* pOutlNds, const SwTextFormatColl* pSplitColl, sal_uInt16* nOutl )
120 : {
121 : SwNodePtr pNd;
122 0 : for( ; *nOutl < pOutlNds->size(); ++(*nOutl) )
123 0 : if( ( pNd = (*pOutlNds)[ *nOutl ])->GetTextNode()->
124 0 : GetTextColl() == pSplitColl &&
125 0 : !pNd->FindTableNode() )
126 : {
127 0 : return pNd;
128 : }
129 0 : return 0;
130 : }
131 :
132 0 : SwNodePtr GetEndNode( const SwOutlineNodes* pOutlNds, const SwTextFormatColl* pSplitColl, sal_uInt16* nOutl )
133 : {
134 : SwNodePtr pNd;
135 :
136 0 : for( ++(*nOutl); *nOutl < pOutlNds->size(); ++(*nOutl) )
137 : {
138 0 : pNd = (*pOutlNds)[ *nOutl ];
139 0 : SwTextFormatColl* pTColl = pNd->GetTextNode()->GetTextColl();
140 :
141 0 : if( ( pTColl == pSplitColl ||
142 0 : ( pSplitColl->GetAttrOutlineLevel() > 0 &&
143 0 : pTColl->GetAttrOutlineLevel() > 0 &&
144 0 : pTColl->GetAttrOutlineLevel() <
145 0 : pSplitColl->GetAttrOutlineLevel() )) &&
146 0 : !pNd->FindTableNode() )
147 : {
148 0 : return pNd;
149 : }
150 : }
151 0 : return 0;
152 : }
153 :
154 0 : bool SwDoc::SplitDoc( sal_uInt16 eDocType, const OUString& rPath, bool bOutline, const SwTextFormatColl* pSplitColl, int nOutlineLevel )
155 : {
156 : // Iterate over all the template's Nodes, creating an own
157 : // document for every single one and replace linked sections (GlobalDoc) for links (HTML).
158 : // Finally, we save this document as a GlobalDoc/HTMLDoc.
159 0 : if( !mpDocShell || !mpDocShell->GetMedium() ||
160 0 : ( SPLITDOC_TO_GLOBALDOC == eDocType && GetDocumentSettingManager().get(DocumentSettingId::GLOBAL_DOCUMENT) ) )
161 0 : return false;
162 :
163 0 : sal_uInt16 nOutl = 0;
164 0 : SwOutlineNodes* pOutlNds = const_cast<SwOutlineNodes*>(&GetNodes().GetOutLineNds());
165 0 : boost::scoped_ptr<SwOutlineNodes> xTmpOutlNds;
166 : SwNodePtr pStartNd;
167 :
168 0 : if ( !bOutline) {
169 0 : if( pSplitColl )
170 : {
171 : // If it isn't a OutlineNumbering, then use an own array and collect the Nodes.
172 0 : if( pSplitColl->GetAttrOutlineLevel() == 0 )
173 : {
174 0 : xTmpOutlNds.reset(new SwOutlineNodes);
175 0 : pOutlNds = xTmpOutlNds.get();
176 0 : SwIterator<SwTextNode,SwFormatColl> aIter( *pSplitColl );
177 0 : for( SwTextNode* pTNd = aIter.First(); pTNd; pTNd = aIter.Next() )
178 0 : if( pTNd->GetNodes().IsDocNodes() )
179 0 : pOutlNds->insert( pTNd );
180 :
181 0 : if( pOutlNds->empty() )
182 0 : return false;
183 : }
184 : }
185 : else
186 : {
187 : // Look for the 1st level OutlineTemplate
188 0 : const SwTextFormatColls& rFormatColls =*GetTextFormatColls();
189 0 : for( SwTextFormatColls::size_type n = rFormatColls.size(); n; )
190 0 : if ( rFormatColls[ --n ]->GetAttrOutlineLevel() == 1 )
191 : {
192 0 : pSplitColl = rFormatColls[ n ];
193 0 : break;
194 : }
195 :
196 0 : if( !pSplitColl )
197 0 : return false;
198 : }
199 : }
200 :
201 : const SfxFilter* pFilter;
202 0 : switch( eDocType )
203 : {
204 : case SPLITDOC_TO_HTML:
205 0 : pFilter = SwIoSystem::GetFilterOfFormat(OUString("HTML"));
206 0 : break;
207 :
208 : default:
209 0 : pFilter = SwIoSystem::GetFilterOfFormat(OUString(FILTER_XML));
210 0 : eDocType = SPLITDOC_TO_GLOBALDOC;
211 0 : break;
212 : }
213 :
214 0 : if( !pFilter )
215 0 : return false;
216 :
217 : // Deactivate Undo/Redline in any case
218 0 : GetIDocumentUndoRedo().DoUndo(false);
219 0 : getIDocumentRedlineAccess().SetRedlineMode_intern( (RedlineMode_t)(getIDocumentRedlineAccess().GetRedlineMode() & ~nsRedlineMode_t::REDLINE_ON));
220 :
221 0 : OUString sExt = pFilter->GetSuffixes().getToken(0, ',');
222 0 : if( sExt.isEmpty() )
223 : {
224 0 : sExt = ".sxw";
225 : }
226 : else
227 : {
228 0 : if( '.' != sExt[ 0 ] )
229 : {
230 0 : sExt = "." + sExt;
231 : }
232 : }
233 :
234 0 : INetURLObject aEntry(rPath);
235 0 : OUString sLeading(aEntry.GetBase());
236 0 : aEntry.removeSegment();
237 0 : OUString sPath = aEntry.GetMainURL( INetURLObject::NO_DECODE );
238 0 : utl::TempFile aTemp(sLeading, true, &sExt, &sPath);
239 0 : aTemp.EnableKillingFile();
240 :
241 0 : DateTime aTmplDate( DateTime::SYSTEM );
242 : {
243 0 : tools::Time a2Min( 0 ); a2Min.SetMin( 2 );
244 0 : aTmplDate += a2Min;
245 : }
246 :
247 : // Skip all invalid ones
248 0 : while( nOutl < pOutlNds->size() &&
249 0 : (*pOutlNds)[ nOutl ]->GetIndex() < GetNodes().GetEndOfExtras().GetIndex() )
250 0 : ++nOutl;
251 :
252 0 : do {
253 0 : if( bOutline )
254 0 : pStartNd = GetStartNode( pOutlNds, nOutlineLevel, &nOutl );
255 : else
256 0 : pStartNd = GetStartNode( pOutlNds, pSplitColl, &nOutl );
257 :
258 0 : if( pStartNd )
259 : {
260 : SwNodePtr pEndNd;
261 0 : if( bOutline )
262 0 : pEndNd = GetEndNode( pOutlNds, nOutlineLevel, &nOutl );
263 : else
264 0 : pEndNd = GetEndNode( pOutlNds, pSplitColl, &nOutl );
265 : SwNodeIndex aEndIdx( pEndNd ? *pEndNd
266 0 : : GetNodes().GetEndOfContent() );
267 :
268 : // Write out the Nodes completely
269 0 : OUString sFileName;
270 0 : if( pStartNd->GetIndex() + 1 < aEndIdx.GetIndex() )
271 : {
272 0 : SfxObjectShellLock xDocSh( new SwDocShell( SfxObjectCreateMode::INTERNAL ));
273 0 : if( xDocSh->DoInitNew( 0 ) )
274 : {
275 0 : SwDoc* pDoc = static_cast<SwDocShell*>(&xDocSh)->GetDoc();
276 :
277 : uno::Reference<document::XDocumentPropertiesSupplier> xDPS(
278 0 : static_cast<SwDocShell*>(&xDocSh)->GetModel(),
279 0 : uno::UNO_QUERY_THROW);
280 : uno::Reference<document::XDocumentProperties> xDocProps(
281 0 : xDPS->getDocumentProperties());
282 : OSL_ENSURE(xDocProps.is(), "Doc has no DocumentProperties");
283 : // the GlobalDoc is the template
284 0 : xDocProps->setTemplateName(OUString());
285 0 : ::util::DateTime uDT = aTmplDate.GetUNODateTime();
286 0 : xDocProps->setTemplateDate(uDT);
287 0 : xDocProps->setTemplateURL(rPath);
288 : // Set the new doc's title to the text of the "split para".
289 : // If the current doc has a title, insert it at the begin.
290 0 : OUString sTitle( xDocProps->getTitle() );
291 0 : if (!sTitle.isEmpty())
292 0 : sTitle += ": ";
293 0 : sTitle += pStartNd->GetTextNode()->GetExpandText();
294 0 : xDocProps->setTitle( sTitle );
295 :
296 : // Replace template
297 0 : pDoc->ReplaceStyles( *this );
298 :
299 : // Take over chapter numbering
300 0 : if( mpOutlineRule )
301 0 : pDoc->SetOutlineNumRule( *mpOutlineRule );
302 :
303 0 : SwNodeRange aRg( *pStartNd, 0, aEndIdx.GetNode() );
304 0 : SwNodeIndex aTmpIdx( pDoc->GetNodes().GetEndOfContent() );
305 0 : GetNodes()._Copy( aRg, aTmpIdx, false );
306 :
307 : // Delete the initial TextNode
308 0 : SwNodeIndex aIdx( pDoc->GetNodes().GetEndOfExtras(), 2 );
309 0 : if( aIdx.GetIndex() + 1 !=
310 0 : pDoc->GetNodes().GetEndOfContent().GetIndex() )
311 0 : pDoc->GetNodes().Delete( aIdx, 1 );
312 :
313 : // All Flys in the section
314 0 : GetDocumentContentOperationsManager().CopyFlyInFlyImpl( aRg, 0, aIdx );
315 :
316 : // And what's with all the Bookmarks?
317 : // ?????
318 :
319 0 : utl::TempFile aTempFile2(sLeading, true, &sExt, &sPath);
320 0 : sFileName = aTempFile2.GetURL();
321 : SfxMedium* pTmpMed = new SfxMedium( sFileName,
322 0 : STREAM_STD_READWRITE );
323 0 : pTmpMed->SetFilter( pFilter );
324 :
325 : // We need to have a Layout for the HTMLFilter, so that
326 : // TextFrames/Controls/OLE objects can be exported correctly as graphics.
327 0 : if( SPLITDOC_TO_HTML == eDocType &&
328 0 : !pDoc->GetSpzFrameFormats()->empty() )
329 : {
330 0 : SfxViewFrame::LoadHiddenDocument( *xDocSh, 0 );
331 : }
332 0 : xDocSh->DoSaveAs( *pTmpMed );
333 0 : xDocSh->DoSaveCompleted( pTmpMed );
334 :
335 : // do not insert a FileLinkSection in case of error
336 0 : if( xDocSh->GetError() )
337 0 : sFileName.clear();
338 : }
339 0 : xDocSh->DoClose();
340 : }
341 :
342 : // We can now insert the section
343 0 : if( !sFileName.isEmpty() )
344 : {
345 0 : switch( eDocType )
346 : {
347 : case SPLITDOC_TO_HTML:
348 : {
349 : // Delete all nodes in the section and, in the "start node",
350 : // set the Link to the saved document.
351 0 : sal_uLong nNodeDiff = aEndIdx.GetIndex() -
352 0 : pStartNd->GetIndex() - 1;
353 0 : if( nNodeDiff )
354 : {
355 0 : SwPaM aTmp( *pStartNd, aEndIdx.GetNode(), 1, -1 );
356 0 : aTmp.GetPoint()->nContent.Assign( 0, 0 );
357 0 : aTmp.GetMark()->nContent.Assign( 0, 0 );
358 0 : SwNodeIndex aSIdx( aTmp.GetMark()->nNode );
359 0 : SwNodeIndex aEIdx( aTmp.GetPoint()->nNode );
360 :
361 : // Try to move past the end
362 0 : if( !aTmp.Move( fnMoveForward, fnGoNode ) )
363 : {
364 : // well then, back to the beginning
365 0 : aTmp.Exchange();
366 0 : if( !aTmp.Move( fnMoveBackward, fnGoNode ))
367 : {
368 : OSL_FAIL( "no more Nodes!" );
369 : }
370 : }
371 : // Move Bookmarks and so forth
372 0 : CorrAbs( aSIdx, aEIdx, *aTmp.GetPoint(), true);
373 :
374 : // If FlyFrames are still around, delete these too
375 0 : for( SwFrameFormats::size_type n = 0; n < GetSpzFrameFormats()->size(); ++n )
376 : {
377 0 : SwFrameFormat* pFly = (*GetSpzFrameFormats())[n];
378 0 : const SwFormatAnchor* pAnchor = &pFly->GetAnchor();
379 : SwPosition const*const pAPos =
380 0 : pAnchor->GetContentAnchor();
381 0 : if (pAPos &&
382 0 : ((FLY_AT_PARA == pAnchor->GetAnchorId()) ||
383 0 : (FLY_AT_CHAR == pAnchor->GetAnchorId())) &&
384 0 : aSIdx <= pAPos->nNode &&
385 0 : pAPos->nNode < aEIdx )
386 : {
387 0 : getIDocumentLayoutAccess().DelLayoutFormat( pFly );
388 0 : --n;
389 : }
390 : }
391 :
392 0 : GetNodes().Delete( aSIdx, nNodeDiff );
393 : }
394 :
395 : // set the link in the StartNode
396 0 : SwFormatINetFormat aINet( sFileName , OUString() );
397 0 : SwTextNode* pTNd = pStartNd->GetTextNode();
398 0 : pTNd->InsertItem(aINet, 0, pTNd->GetText().getLength());
399 :
400 : // If the link cannot be found anymore,
401 : // it has to be a bug!
402 0 : if( !pOutlNds->Seek_Entry( pStartNd, &nOutl ))
403 0 : pStartNd = 0;
404 0 : ++nOutl;
405 : }
406 0 : break;
407 :
408 : default:
409 : {
410 0 : const OUString sNm( INetURLObject( sFileName ).GetName() );
411 : SwSectionData aSectData( FILE_LINK_SECTION,
412 0 : GetUniqueSectionName( &sNm ));
413 0 : SwSectionFormat* pFormat = MakeSectionFormat( 0 );
414 0 : aSectData.SetLinkFileName(sFileName);
415 0 : aSectData.SetProtectFlag(true);
416 :
417 0 : --aEndIdx; // in the InsertSection the end is inclusive
418 0 : while( aEndIdx.GetNode().IsStartNode() )
419 0 : --aEndIdx;
420 :
421 : // If any Section ends or starts in the new sectionrange,
422 : // they must end or start before or after the range!
423 0 : SwSectionNode* pSectNd = pStartNd->FindSectionNode();
424 0 : while( pSectNd && pSectNd->EndOfSectionIndex()
425 0 : <= aEndIdx.GetIndex() )
426 : {
427 0 : const SwNode* pSectEnd = pSectNd->EndOfSectionNode();
428 0 : if( pSectNd->GetIndex() + 1 ==
429 0 : pStartNd->GetIndex() )
430 : {
431 0 : bool bMvIdx = aEndIdx == *pSectEnd;
432 0 : DelSectionFormat( pSectNd->GetSection().GetFormat() );
433 0 : if( bMvIdx )
434 0 : --aEndIdx;
435 : }
436 : else
437 : {
438 0 : SwNodeRange aRg( *pStartNd, *pSectEnd );
439 0 : SwNodeIndex aIdx( *pSectEnd, 1 );
440 0 : GetNodes()._MoveNodes( aRg, GetNodes(), aIdx );
441 : }
442 0 : pSectNd = pStartNd->FindSectionNode();
443 : }
444 :
445 0 : pSectNd = aEndIdx.GetNode().FindSectionNode();
446 0 : while( pSectNd && pSectNd->GetIndex() >
447 0 : pStartNd->GetIndex() )
448 : {
449 : // #i15712# don't attempt to split sections if
450 : // they are fully enclosed in [pSectNd,aEndIdx].
451 0 : if( aEndIdx < pSectNd->EndOfSectionIndex() )
452 : {
453 0 : SwNodeRange aRg( *pSectNd, 1, aEndIdx, 1 );
454 0 : SwNodeIndex aIdx( *pSectNd );
455 0 : GetNodes()._MoveNodes( aRg, GetNodes(), aIdx );
456 : }
457 :
458 0 : pSectNd = pStartNd->FindSectionNode();
459 : }
460 :
461 : // -> #i26762#
462 : // Ensure order of start and end of section is sane.
463 0 : SwNodeIndex aStartIdx(*pStartNd);
464 :
465 0 : if (aEndIdx >= aStartIdx)
466 : {
467 0 : pSectNd = GetNodes().InsertTextSection(aStartIdx,
468 0 : *pFormat, aSectData, 0, &aEndIdx, false);
469 : }
470 : else
471 : {
472 0 : pSectNd = GetNodes().InsertTextSection(aEndIdx,
473 0 : *pFormat, aSectData, 0, &aStartIdx, false);
474 : }
475 : // <- #i26762#
476 :
477 0 : pSectNd->GetSection().CreateLink( CREATE_CONNECT );
478 : }
479 0 : break;
480 : }
481 0 : }
482 : }
483 : } while( pStartNd );
484 :
485 0 : xTmpOutlNds.reset();
486 :
487 0 : switch( eDocType )
488 : {
489 : case SPLITDOC_TO_HTML:
490 0 : if( GetDocumentSettingManager().get(DocumentSettingId::GLOBAL_DOCUMENT) )
491 : {
492 : // save all remaining sections
493 0 : while( !GetSections().empty() )
494 0 : DelSectionFormat( GetSections().front() );
495 :
496 0 : SfxFilterContainer* pFCntnr = mpDocShell->GetFactory().GetFilterContainer();
497 0 : pFilter = pFCntnr->GetFilter4EA( pFilter->GetTypeName(), SfxFilterFlags::EXPORT );
498 : }
499 0 : break;
500 :
501 : default:
502 : // save the Globaldoc
503 0 : GetDocumentSettingManager().set(DocumentSettingId::GLOBAL_DOCUMENT, true);
504 0 : GetDocumentSettingManager().set(DocumentSettingId::GLOBAL_DOCUMENT_SAVE_LINKS, false);
505 : }
506 :
507 : // The medium isn't locked after reopening the document.
508 0 : SfxRequest aReq( SID_SAVEASDOC, SfxCallMode::SYNCHRON, GetAttrPool() );
509 0 : aReq.AppendItem( SfxStringItem( SID_FILE_NAME, rPath ) );
510 0 : aReq.AppendItem( SfxBoolItem( SID_SAVETO, true ) );
511 0 : if(pFilter)
512 0 : aReq.AppendItem( SfxStringItem( SID_FILTER_NAME, pFilter->GetName() ) );
513 0 : const SfxBoolItem *pRet = static_cast<const SfxBoolItem*>(mpDocShell->ExecuteSlot( aReq ));
514 :
515 0 : return pRet && pRet->GetValue();
516 177 : }
517 :
518 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|