1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
|
/* -*- 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 <DocumentStatisticsManager.hxx>
#include <doc.hxx>
#include <editsh.hxx>
#include <fldbas.hxx>
#include <docsh.hxx>
#include <IDocumentFieldsAccess.hxx>
#include <IDocumentState.hxx>
#include <IDocumentLayoutAccess.hxx>
#include <view.hxx>
#include <ndtxt.hxx>
#include <calbck.hxx>
#include <fmtfld.hxx>
#include <rootfrm.hxx>
#include <docufld.hxx>
#include <docstat.hxx>
#include <vector>
#include <viewsh.hxx>
#include <com/sun/star/document/XDocumentPropertiesSupplier.hpp>
#include <wrtsh.hxx>
#include <viewopt.hxx>
using namespace ::com::sun::star;
namespace
{
class LockAllViews
{
std::vector<SwViewShell*> m_aViewWasUnLocked;
SwViewShell* m_pViewShell;
public:
explicit LockAllViews(SwViewShell *pViewShell)
: m_pViewShell(pViewShell)
{
if (!m_pViewShell)
return;
for (SwViewShell& rShell : m_pViewShell->GetRingContainer())
{
if (!rShell.IsViewLocked())
{
m_aViewWasUnLocked.push_back(&rShell);
rShell.LockView(true);
}
}
}
~LockAllViews()
{
for(SwViewShell* pShell : m_aViewWasUnLocked)
pShell->LockView(false);
}
};
}
namespace sw
{
DocumentStatisticsManager::DocumentStatisticsManager( SwDoc& i_rSwdoc ) : m_rDoc( i_rSwdoc ),
mpDocStat( new SwDocStat ),
mbInitialized( false ),
maStatsUpdateIdle( i_rSwdoc )
{
maStatsUpdateIdle.SetPriority( TaskPriority::LOWEST );
maStatsUpdateIdle.SetInvokeHandler( LINK( this, DocumentStatisticsManager, DoIdleStatsUpdate ) );
maStatsUpdateIdle.SetDebugName( "sw::DocumentStatisticsManager maStatsUpdateIdle" );
}
void DocumentStatisticsManager::DocInfoChgd(bool const isEnableSetModified)
{
m_rDoc.getIDocumentFieldsAccess().GetSysFieldType( SwFieldIds::DocInfo )->UpdateFields();
m_rDoc.getIDocumentFieldsAccess().GetSysFieldType( SwFieldIds::TemplateName )->UpdateFields();
if (isEnableSetModified)
{
m_rDoc.getIDocumentState().SetModified();
}
}
const SwDocStat& DocumentStatisticsManager::GetDocStat() const
{
return *mpDocStat;
}
void DocumentStatisticsManager::SetDocStatModified(bool bSet)
{
mpDocStat->bModified = bSet;
}
const SwDocStat& DocumentStatisticsManager::GetUpdatedDocStat( bool bCompleteAsync, bool bFields )
{
if( mpDocStat->bModified || !mbInitialized)
{
UpdateDocStat( bCompleteAsync, bFields );
}
return *mpDocStat;
}
void DocumentStatisticsManager::SetDocStat( const SwDocStat& rStat )
{
*mpDocStat = rStat;
mbInitialized = true;
}
void DocumentStatisticsManager::UpdateDocStat( bool bCompleteAsync, bool bFields )
{
if( mpDocStat->bModified || !mbInitialized)
{
if (!bCompleteAsync)
{
maStatsUpdateIdle.Stop();
while (IncrementalDocStatCalculate(
std::numeric_limits<long>::max(), bFields)) {}
}
else if (IncrementalDocStatCalculate(5000, bFields))
maStatsUpdateIdle.Start();
else
maStatsUpdateIdle.Stop();
}
}
// returns true while there is more to do
bool DocumentStatisticsManager::IncrementalDocStatCalculate(long nChars, bool bFields)
{
mbInitialized = true;
mpDocStat->Reset();
mpDocStat->nPara = 0; // default is 1!
// This is the inner loop - at least while the paras are dirty.
for( sal_uLong i = m_rDoc.GetNodes().Count(); i > 0 && nChars > 0; )
{
SwNode* pNd = m_rDoc.GetNodes()[ --i ];
switch( pNd->GetNodeType() )
{
case SwNodeType::Text:
{
long const nOldChars(mpDocStat->nChar);
SwTextNode *pText = static_cast< SwTextNode * >( pNd );
if (pText->CountWords(*mpDocStat, 0, pText->GetText().getLength()))
{
nChars -= (mpDocStat->nChar - nOldChars);
}
break;
}
case SwNodeType::Table: ++mpDocStat->nTable; break;
case SwNodeType::Grf: ++mpDocStat->nGrf; break;
case SwNodeType::Ole: ++mpDocStat->nOLE; break;
case SwNodeType::Section: break;
default: break;
}
}
// #i93174#: notes contain paragraphs that are not nodes
{
SwFieldType * const pPostits( m_rDoc.getIDocumentFieldsAccess().GetSysFieldType(SwFieldIds::Postit) );
SwIterator<SwFormatField,SwFieldType> aIter( *pPostits );
for( SwFormatField* pFormatField = aIter.First(); pFormatField; pFormatField = aIter.Next() )
{
if (pFormatField->IsFieldInDoc())
{
SwPostItField const * const pField(
static_cast<SwPostItField const*>(pFormatField->GetField()));
mpDocStat->nAllPara += pField->GetNumberOfParagraphs();
}
}
}
mpDocStat->nPage = m_rDoc.getIDocumentLayoutAccess().GetCurrentLayout() ? m_rDoc.getIDocumentLayoutAccess().GetCurrentLayout()->GetPageNum() : 0;
SetDocStatModified( false );
css::uno::Sequence < css::beans::NamedValue > aStat( mpDocStat->nPage ? 8 : 7);
sal_Int32 n=0;
aStat[n].Name = "TableCount";
aStat[n++].Value <<= static_cast<sal_Int32>(mpDocStat->nTable);
aStat[n].Name = "ImageCount";
aStat[n++].Value <<= static_cast<sal_Int32>(mpDocStat->nGrf);
aStat[n].Name = "ObjectCount";
aStat[n++].Value <<= static_cast<sal_Int32>(mpDocStat->nOLE);
if ( mpDocStat->nPage )
{
aStat[n].Name = "PageCount";
aStat[n++].Value <<= static_cast<sal_Int32>(mpDocStat->nPage);
}
aStat[n].Name = "ParagraphCount";
aStat[n++].Value <<= static_cast<sal_Int32>(mpDocStat->nPara);
aStat[n].Name = "WordCount";
aStat[n++].Value <<= static_cast<sal_Int32>(mpDocStat->nWord);
aStat[n].Name = "CharacterCount";
aStat[n++].Value <<= static_cast<sal_Int32>(mpDocStat->nChar);
aStat[n].Name = "NonWhitespaceCharacterCount";
aStat[n++].Value <<= static_cast<sal_Int32>(mpDocStat->nCharExcludingSpaces);
// For e.g. autotext documents there is no pSwgInfo (#i79945)
SwDocShell* pObjShell(m_rDoc.GetDocShell());
if (pObjShell)
{
const uno::Reference<document::XDocumentPropertiesSupplier> xDPS(
pObjShell->GetModel(), uno::UNO_QUERY_THROW);
const uno::Reference<document::XDocumentProperties> xDocProps(
xDPS->getDocumentProperties());
// #i96786#: do not set modified flag when updating statistics
const bool bDocWasModified( m_rDoc.getIDocumentState().IsModified() );
const ModifyBlocker_Impl b(pObjShell);
// rhbz#1081176: don't jump to cursor pos because of (temporary)
// activation of modified flag triggering move to input position
LockAllViews aViewGuard(pObjShell->GetEditShell());
xDocProps->setDocumentStatistics(aStat);
if (!bDocWasModified)
{
m_rDoc.getIDocumentState().ResetModified();
}
}
// optionally update stat. fields
if (bFields)
{
SwFieldType *pType = m_rDoc.getIDocumentFieldsAccess().GetSysFieldType(SwFieldIds::DocStat);
pType->UpdateFields();
}
return nChars < 0;
}
IMPL_LINK( DocumentStatisticsManager, DoIdleStatsUpdate, Timer *, pIdle, void )
{
if (IncrementalDocStatCalculate(32000))
pIdle->Start();
SwView* pView = m_rDoc.GetDocShell() ? m_rDoc.GetDocShell()->GetView() : nullptr;
if( pView )
pView->UpdateDocStats();
}
DocumentStatisticsManager::~DocumentStatisticsManager()
{
maStatsUpdateIdle.Stop();
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|