MM account next record fields for progress dialog

When calculating the maximum document count, we were not accounting
"next record" fields in the document, like in labels etc.

Also any selection of records was ignored.

Fixes accounting part of tdf#101841.

Change-Id: I703d2186d44d2e5426c4af0d4b2d89e0fe820039
This commit is contained in:
Jan-Marek Glogowski 2016-09-01 20:37:51 +02:00
parent 178a23a827
commit 260cd3aeea
4 changed files with 65 additions and 10 deletions

View file

@ -130,6 +130,8 @@ namespace com { namespace sun { namespace star { namespace uno { class Any; } }
virtual void InsDelFieldInFieldLst(bool bIns, const SwTextField& rField) = 0;
virtual sal_Int32 GetRecordsPerDocument() const = 0;
protected:
virtual ~IDocumentFieldsAccess() {};
};

View file

@ -911,7 +911,6 @@ void DocumentFieldsManager::UpdateExpFields( SwTextField* pUpdateField, bool bUp
SwSection* pSect = const_cast<SwSection*>((*it)->GetSection());
if( pSect )
{
SwSbxValue aValue = aCalc.Calculate(
pSect->GetCondition() );
if(!aValue.IsVoidValue())
@ -1184,6 +1183,38 @@ void DocumentFieldsManager::UpdateUsrFields()
}
}
sal_Int32 DocumentFieldsManager::GetRecordsPerDocument() const
{
sal_Int32 nRecords = 1;
mpUpdateFields->MakeFieldList( m_rDoc, true, GETFLD_ALL );
if( mpUpdateFields->GetSortLst()->empty() )
return nRecords;
for( SetGetExpFields::const_iterator it = mpUpdateFields->GetSortLst()->begin();
it != mpUpdateFields->GetSortLst()->end(); ++it )
{
const SwTextField *pTextField = (*it)->GetTextField();
if( !pTextField )
continue;
const SwFormatField &pFormatField = pTextField->GetFormatField();
const SwField* pField = pFormatField.GetField();
switch( pField->GetTyp()->Which() )
{
case RES_DBNEXTSETFLD:
case RES_DBNUMSETFLD:
nRecords++;
break;
default:
break;
}
}
return nRecords;
}
void DocumentFieldsManager::UpdatePageFields( SfxPoolItem* pMsgHint )
{
for( SwFieldTypes::size_type i = 0; i < INIT_FLDTYPES; ++i )

View file

@ -60,6 +60,7 @@ public:
virtual bool IsNewFieldLst() const override;
virtual void SetNewFieldLst( bool bFlag) override;
virtual void InsDelFieldInFieldLst(bool bIns, const SwTextField& rField) override;
virtual sal_Int32 GetRecordsPerDocument() const override;
//Non Interface methods

View file

@ -178,10 +178,14 @@ static SfxObjectShell* lcl_CreateWorkingDocument(
SwDBManager** const pDBManager,
SwView** const pView, SwWrtShell** const pWrtShell, SwDoc** const pDoc );
static bool lcl_getCountFromResultSet( sal_Int32& rCount, const uno::Reference<sdbc::XResultSet>& xResultSet )
static bool lcl_getCountFromResultSet( sal_Int32& rCount, const SwDSParam* pParam )
{
uno::Reference<beans::XPropertySet> xPrSet(xResultSet, uno::UNO_QUERY);
if(xPrSet.is())
rCount = pParam->aSelection.getLength();
if ( rCount > 0 )
return true;
uno::Reference<beans::XPropertySet> xPrSet(pParam->xResultSet, uno::UNO_QUERY);
if ( xPrSet.is() )
{
try
{
@ -190,8 +194,8 @@ static bool lcl_getCountFromResultSet( sal_Int32& rCount, const uno::Reference<s
aFinal >>= bFinal;
if(!bFinal)
{
xResultSet->last();
xResultSet->first();
pParam->xResultSet->last();
pParam->xResultSet->first();
}
uno::Any aCount = xPrSet->getPropertyValue("RowCount");
if( aCount >>= rCount )
@ -1264,16 +1268,33 @@ bool SwDBManager::MergeMailFiles(SwWrtShell* pSourceShell,
}
sal_Int32 nDocNo = 1;
sal_Int32 nDocCount = 0;
// For single file mode, the number of pages in the target document so far, which is used
// by AppendDoc() to adjust position of page-bound objects. Getting this information directly
// from the target doc would require repeated layouts of the doc, which is expensive, but
// it can be manually computed from the source documents (for which we do layouts, so the page
// count is known, and there is a blank page between each of them in the target document).
int targetDocPageCount = 0;
if( !bIsMergeSilent && !bMT_PRINTER &&
lcl_getCountFromResultSet( nDocCount, pImpl->pMergeData->xResultSet ) )
static_cast<CreateMonitor*>( pProgressDlg.get() )->SetTotalCount( nDocCount );
if( !bIsMergeSilent && !bMT_PRINTER )
{
sal_Int32 nRecordCount = 1;
lcl_getCountFromResultSet( nRecordCount, pImpl->pMergeData );
// syncronized docs don't auto-advance the record set, but there is a
// "security" check, which will always advance the record set, if there
// is no "next record" field in a synchronized doc => nRecordPerDoc > 0
sal_Int32 nRecordPerDoc = pSourceShell->GetDoc()
->getIDocumentFieldsAccess().GetRecordsPerDocument();
if ( bSynchronizedDoc && (nRecordPerDoc > 1) )
--nRecordPerDoc;
assert( nRecordPerDoc > 0 );
sal_Int32 nMaxDocs = nRecordCount / nRecordPerDoc;
if ( 0 != nRecordCount % nRecordPerDoc )
nMaxDocs += 1;
static_cast<CreateMonitor*>( pProgressDlg.get() )->SetTotalCount( nMaxDocs );
}
long nStartRow, nEndRow;
bool bFreezedLayouts = false;