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 "dpcache.hxx"
21 :
22 : #include "document.hxx"
23 : #include "queryentry.hxx"
24 : #include "queryparam.hxx"
25 : #include "dpglobal.hxx"
26 : #include "dpobject.hxx"
27 : #include "globstr.hrc"
28 : #include "docoptio.hxx"
29 : #include "dpitemdata.hxx"
30 : #include "dputil.hxx"
31 : #include "dpnumgroupinfo.hxx"
32 :
33 : #include <rtl/math.hxx>
34 : #include <unotools/textsearch.hxx>
35 : #include <unotools/localedatawrapper.hxx>
36 : #include <svl/zforlist.hxx>
37 :
38 : #if DEBUG_PIVOT_TABLE
39 : #include <com/sun/star/sheet/DataPilotFieldGroupBy.hpp>
40 : #endif
41 :
42 : using namespace ::com::sun::star;
43 :
44 : using ::com::sun::star::uno::Exception;
45 : using ::com::sun::star::uno::Reference;
46 : using ::com::sun::star::uno::UNO_QUERY;
47 : using ::com::sun::star::uno::UNO_QUERY_THROW;
48 :
49 0 : ScDPCache::GroupItems::GroupItems() : mnGroupType(0) {}
50 :
51 0 : ScDPCache::GroupItems::GroupItems(const ScDPNumGroupInfo& rInfo, sal_Int32 nGroupType) :
52 0 : maInfo(rInfo), mnGroupType(nGroupType) {}
53 :
54 0 : ScDPCache::Field::Field() : mnNumFormat(0) {}
55 :
56 0 : ScDPCache::ScDPCache(ScDocument* pDoc) :
57 : mpDoc( pDoc ),
58 : mnColumnCount ( 0 ),
59 : maEmptyRows(0, MAXROW, true),
60 : mnDataSize(-1),
61 : mnRowCount(0),
62 0 : mbDisposing(false)
63 : {
64 0 : }
65 :
66 : namespace {
67 :
68 : struct ClearObjectSource : std::unary_function<ScDPObject*, void>
69 : {
70 0 : void operator() (ScDPObject* p) const
71 : {
72 0 : p->ClearTableData();
73 0 : }
74 : };
75 :
76 : }
77 :
78 0 : ScDPCache::~ScDPCache()
79 : {
80 : // Make sure no live ScDPObject instances hold reference to this cache any
81 : // more.
82 0 : mbDisposing = true;
83 0 : std::for_each(maRefObjects.begin(), maRefObjects.end(), ClearObjectSource());
84 0 : }
85 :
86 : namespace {
87 :
88 : /**
89 : * While the macro interpret level is incremented, the formula cells are
90 : * (semi-)guaranteed to be interpreted.
91 : */
92 : class MacroInterpretIncrementer
93 : {
94 : public:
95 0 : MacroInterpretIncrementer(ScDocument* pDoc) :
96 0 : mpDoc(pDoc)
97 : {
98 0 : mpDoc->IncMacroInterpretLevel();
99 0 : }
100 0 : ~MacroInterpretIncrementer()
101 : {
102 0 : mpDoc->DecMacroInterpretLevel();
103 0 : }
104 : private:
105 : ScDocument* mpDoc;
106 : };
107 :
108 0 : OUString createLabelString(ScDocument* pDoc, SCCOL nCol, SCROW nRow, SCTAB nTab)
109 : {
110 0 : OUString aDocStr = pDoc->GetString(nCol, nRow, nTab);
111 0 : if (aDocStr.isEmpty())
112 : {
113 : // Replace an empty label string with column name.
114 0 : OUStringBuffer aBuf;
115 0 : aBuf.append(ScGlobal::GetRscString(STR_COLUMN));
116 0 : aBuf.append(' ');
117 :
118 0 : ScAddress aColAddr(nCol, 0, 0);
119 0 : aBuf.append(aColAddr.Format(SCA_VALID_COL, NULL));
120 0 : aDocStr = aBuf.makeStringAndClear();
121 : }
122 0 : return aDocStr;
123 : }
124 :
125 0 : void initFromCell(
126 : ScDPCache& rCache, ScDocument* pDoc, SCCOL nCol, SCROW nRow, SCTAB nTab,
127 : ScDPItemData& rData, sal_uLong& rNumFormat)
128 : {
129 0 : OUString aDocStr = pDoc->GetString(nCol, nRow, nTab);
130 0 : rNumFormat = 0;
131 :
132 0 : ScAddress aPos(nCol, nRow, nTab);
133 :
134 0 : if (pDoc->GetErrCode(aPos))
135 : {
136 0 : rData.SetErrorString(rCache.InternString(aDocStr));
137 : }
138 0 : else if (pDoc->HasValueData(nCol, nRow, nTab))
139 : {
140 0 : double fVal = pDoc->GetValue(aPos);
141 0 : rNumFormat = pDoc->GetNumberFormat(aPos);
142 0 : rData.SetValue(fVal);
143 : }
144 0 : else if (pDoc->HasData(nCol, nRow, nTab))
145 : {
146 0 : rData.SetString(rCache.InternString(aDocStr));
147 : }
148 : else
149 0 : rData.SetEmpty();
150 0 : }
151 :
152 0 : struct Bucket
153 : {
154 : ScDPItemData maValue;
155 : SCROW mnOrderIndex;
156 : SCROW mnDataIndex;
157 : SCROW mnValueSortIndex;
158 0 : Bucket(const ScDPItemData& rValue, SCROW nOrder, SCROW nData) :
159 0 : maValue(rValue), mnOrderIndex(nOrder), mnDataIndex(nData), mnValueSortIndex(0) {}
160 : };
161 :
162 : #if DEBUG_PIVOT_TABLE
163 : #include <iostream>
164 : using std::cout;
165 : using std::endl;
166 :
167 : struct PrintBucket : std::unary_function<Bucket, void>
168 : {
169 : void operator() (const Bucket& v) const
170 : {
171 : cout << "value: " << v.maValue.GetValue() << " order index: " << v.mnOrderIndex << " data index: " << v.mnDataIndex << " value sort index: " << v.mnValueSortIndex << endl;
172 : }
173 : };
174 :
175 : #endif
176 :
177 : struct LessByValue : std::binary_function<Bucket, Bucket, bool>
178 : {
179 0 : bool operator() (const Bucket& left, const Bucket& right) const
180 : {
181 0 : return left.maValue < right.maValue;
182 : }
183 : };
184 :
185 : struct LessByValueSortIndex : std::binary_function<Bucket, Bucket, bool>
186 : {
187 0 : bool operator() (const Bucket& left, const Bucket& right) const
188 : {
189 0 : return left.mnValueSortIndex < right.mnValueSortIndex;
190 : }
191 : };
192 :
193 : struct LessByDataIndex : std::binary_function<Bucket, Bucket, bool>
194 : {
195 0 : bool operator() (const Bucket& left, const Bucket& right) const
196 : {
197 0 : return left.mnDataIndex < right.mnDataIndex;
198 : }
199 : };
200 :
201 : struct EqualByOrderIndex : std::binary_function<Bucket, Bucket, bool>
202 : {
203 0 : bool operator() (const Bucket& left, const Bucket& right) const
204 : {
205 0 : return left.mnOrderIndex == right.mnOrderIndex;
206 : }
207 : };
208 :
209 : class PushBackValue : std::unary_function<Bucket, void>
210 : {
211 : ScDPCache::ItemsType& mrItems;
212 : public:
213 0 : PushBackValue(ScDPCache::ItemsType& _items) : mrItems(_items) {}
214 0 : void operator() (const Bucket& v)
215 : {
216 0 : mrItems.push_back(v.maValue);
217 0 : }
218 : };
219 :
220 : class PushBackOrderIndex : std::unary_function<Bucket, void>
221 : {
222 : ScDPCache::IndexArrayType& mrData;
223 : public:
224 0 : PushBackOrderIndex(ScDPCache::IndexArrayType& _items) : mrData(_items) {}
225 0 : void operator() (const Bucket& v)
226 : {
227 0 : mrData.push_back(v.mnOrderIndex);
228 0 : }
229 : };
230 :
231 : class TagValueSortOrder : std::unary_function<Bucket, void>
232 : {
233 : SCROW mnCurIndex;
234 : public:
235 0 : TagValueSortOrder() : mnCurIndex(0) {}
236 0 : void operator() (Bucket& v)
237 : {
238 0 : v.mnValueSortIndex = mnCurIndex++;
239 0 : }
240 : };
241 :
242 0 : void processBuckets(std::vector<Bucket>& aBuckets, ScDPCache::Field& rField)
243 : {
244 0 : if (aBuckets.empty())
245 0 : return;
246 :
247 : // Sort by the value.
248 0 : std::sort(aBuckets.begin(), aBuckets.end(), LessByValue());
249 :
250 : // Remember this sort order.
251 0 : std::for_each(aBuckets.begin(), aBuckets.end(), TagValueSortOrder());
252 :
253 : {
254 : // Set order index such that unique values have identical index value.
255 0 : SCROW nCurIndex = 0;
256 0 : std::vector<Bucket>::iterator it = aBuckets.begin(), itEnd = aBuckets.end();
257 0 : ScDPItemData aPrev = it->maValue;
258 0 : it->mnOrderIndex = nCurIndex;
259 0 : for (++it; it != itEnd; ++it)
260 : {
261 0 : if (!aPrev.IsCaseInsEqual(it->maValue))
262 0 : ++nCurIndex;
263 :
264 0 : it->mnOrderIndex = nCurIndex;
265 0 : aPrev = it->maValue;
266 0 : }
267 : }
268 :
269 : // Re-sort the bucket this time by the data index.
270 0 : std::sort(aBuckets.begin(), aBuckets.end(), LessByDataIndex());
271 :
272 : // Copy the order index series into the field object.
273 0 : rField.maData.reserve(aBuckets.size());
274 0 : std::for_each(aBuckets.begin(), aBuckets.end(), PushBackOrderIndex(rField.maData));
275 :
276 : // Sort by the value again.
277 0 : std::sort(aBuckets.begin(), aBuckets.end(), LessByValueSortIndex());
278 :
279 : // Unique by value.
280 : std::vector<Bucket>::iterator itUniqueEnd =
281 0 : std::unique(aBuckets.begin(), aBuckets.end(), EqualByOrderIndex());
282 :
283 : // Copy the unique values into items.
284 0 : std::vector<Bucket>::iterator itBeg = aBuckets.begin();
285 0 : size_t nLen = distance(itBeg, itUniqueEnd);
286 0 : rField.maItems.reserve(nLen);
287 0 : std::for_each(itBeg, itUniqueEnd, PushBackValue(rField.maItems));
288 : }
289 :
290 : }
291 :
292 0 : bool ScDPCache::InitFromDoc(ScDocument* pDoc, const ScRange& rRange)
293 : {
294 0 : Clear();
295 :
296 : // Make sure the formula cells within the data range are interpreted
297 : // during this call, for this method may be called from the interpretation
298 : // of GETPIVOTDATA, which disables nested formula interpretation without
299 : // increasing the macro level.
300 0 : MacroInterpretIncrementer aMacroInc(pDoc);
301 :
302 0 : SCROW nStartRow = rRange.aStart.Row(); // start of data
303 0 : SCROW nEndRow = rRange.aEnd.Row();
304 :
305 : // Sanity check
306 0 : if (!ValidRow(nStartRow) || !ValidRow(nEndRow) || nEndRow <= nStartRow)
307 0 : return false;
308 :
309 0 : sal_uInt16 nStartCol = rRange.aStart.Col();
310 0 : sal_uInt16 nEndCol = rRange.aEnd.Col();
311 0 : sal_uInt16 nDocTab = rRange.aStart.Tab();
312 :
313 0 : mnColumnCount = nEndCol - nStartCol + 1;
314 :
315 : // this row count must include the trailing empty rows.
316 0 : mnRowCount = nEndRow - nStartRow; // skip the topmost label row.
317 :
318 : // Skip trailing empty rows if exists.
319 0 : SCCOL nCol1 = nStartCol, nCol2 = nEndCol;
320 0 : SCROW nRow1 = nStartRow, nRow2 = nEndRow;
321 0 : pDoc->ShrinkToDataArea(nDocTab, nCol1, nRow1, nCol2, nRow2);
322 0 : bool bTailEmptyRows = nEndRow > nRow2; // Trailing empty rows exist.
323 0 : nEndRow = nRow2;
324 :
325 0 : if (nEndRow <= nStartRow)
326 : {
327 : // Check this again since the end row position has changed. It's
328 : // possible that the new end row becomes lower than the start row
329 : // after the shrinkage.
330 0 : Clear();
331 0 : return false;
332 : }
333 :
334 0 : maFields.reserve(mnColumnCount);
335 0 : for (size_t i = 0; i < static_cast<size_t>(mnColumnCount); ++i)
336 0 : maFields.push_back(new Field);
337 :
338 0 : maLabelNames.reserve(mnColumnCount+1);
339 :
340 0 : ScDPItemData aData;
341 0 : for (sal_uInt16 nCol = nStartCol; nCol <= nEndCol; ++nCol)
342 : {
343 0 : AddLabel(createLabelString(pDoc, nCol, nStartRow, nDocTab));
344 0 : Field& rField = maFields[nCol-nStartCol];
345 0 : std::vector<Bucket> aBuckets;
346 0 : aBuckets.reserve(nEndRow-nStartRow); // skip the topmost label cell.
347 :
348 : // Push back all original values.
349 0 : SCROW nOffset = nStartRow + 1;
350 0 : for (SCROW i = 0, n = nEndRow-nStartRow; i < n; ++i)
351 : {
352 0 : SCROW nRow = i + nOffset;
353 0 : sal_uLong nNumFormat = 0;
354 0 : initFromCell(*this, pDoc, nCol, nRow, nDocTab, aData, nNumFormat);
355 0 : aBuckets.push_back(Bucket(aData, 0, i));
356 :
357 0 : if (!aData.IsEmpty())
358 : {
359 0 : maEmptyRows.insert_back(i, i+1, false);
360 0 : if (nNumFormat)
361 : // Only take non-default number format.
362 0 : rField.mnNumFormat = nNumFormat;
363 : }
364 : }
365 :
366 0 : processBuckets(aBuckets, rField);
367 :
368 0 : if (bTailEmptyRows)
369 : {
370 : // If the last item is not empty, append one. Note that the items
371 : // are sorted, and empty item should come last when sorted.
372 0 : if (rField.maItems.empty() || !rField.maItems.back().IsEmpty())
373 : {
374 0 : aData.SetEmpty();
375 0 : rField.maItems.push_back(aData);
376 : }
377 : }
378 0 : }
379 :
380 0 : PostInit();
381 0 : return true;
382 : }
383 :
384 0 : bool ScDPCache::InitFromDataBase(DBConnector& rDB)
385 : {
386 0 : Clear();
387 :
388 : try
389 : {
390 0 : mnColumnCount = rDB.getColumnCount();
391 0 : maFields.clear();
392 0 : maFields.reserve(mnColumnCount);
393 0 : for (size_t i = 0; i < static_cast<size_t>(mnColumnCount); ++i)
394 0 : maFields.push_back(new Field);
395 :
396 : // Get column titles and types.
397 0 : maLabelNames.clear();
398 0 : maLabelNames.reserve(mnColumnCount+1);
399 :
400 0 : for (sal_Int32 nCol = 0; nCol < mnColumnCount; ++nCol)
401 : {
402 0 : OUString aColTitle = rDB.getColumnLabel(nCol);
403 0 : AddLabel(aColTitle);
404 0 : }
405 :
406 0 : std::vector<Bucket> aBuckets;
407 0 : ScDPItemData aData;
408 0 : for (sal_Int32 nCol = 0; nCol < mnColumnCount; ++nCol)
409 : {
410 0 : if (!rDB.first())
411 0 : continue;
412 :
413 0 : aBuckets.clear();
414 0 : Field& rField = maFields[nCol];
415 0 : SCROW nRow = 0;
416 0 : do
417 : {
418 0 : short nFormatType = NUMBERFORMAT_UNDEFINED;
419 0 : aData.SetEmpty();
420 0 : rDB.getValue(nCol, aData, nFormatType);
421 0 : aBuckets.push_back(Bucket(aData, 0, nRow));
422 0 : if (!aData.IsEmpty())
423 : {
424 0 : maEmptyRows.insert_back(nRow, nRow+1, false);
425 0 : SvNumberFormatter* pFormatter = mpDoc->GetFormatTable();
426 0 : rField.mnNumFormat = pFormatter ? pFormatter->GetStandardFormat(nFormatType) : 0;
427 : }
428 :
429 0 : ++nRow;
430 : }
431 0 : while (rDB.next());
432 :
433 0 : processBuckets(aBuckets, rField);
434 : }
435 :
436 0 : rDB.finish();
437 :
438 0 : if (!maFields.empty())
439 0 : mnRowCount = maFields[0].maData.size();
440 :
441 0 : PostInit();
442 0 : return true;
443 : }
444 0 : catch (const Exception&)
445 : {
446 0 : return false;
447 : }
448 : }
449 :
450 0 : bool ScDPCache::ValidQuery( SCROW nRow, const ScQueryParam &rParam) const
451 : {
452 0 : if (!rParam.GetEntryCount())
453 0 : return true;
454 :
455 0 : if (!rParam.GetEntry(0).bDoQuery)
456 0 : return true;
457 :
458 0 : bool bMatchWholeCell = mpDoc->GetDocOptions().IsMatchWholeCell();
459 :
460 0 : SCSIZE nEntryCount = rParam.GetEntryCount();
461 0 : std::vector<bool> aPassed(nEntryCount, false);
462 :
463 0 : long nPos = -1;
464 : CollatorWrapper* pCollator = (rParam.bCaseSens ? ScGlobal::GetCaseCollator() :
465 0 : ScGlobal::GetCollator() );
466 : ::utl::TransliterationWrapper* pTransliteration = (rParam.bCaseSens ?
467 0 : ScGlobal::GetCaseTransliteration() : ScGlobal::GetpTransliteration());
468 :
469 0 : for (size_t i = 0; i < nEntryCount && rParam.GetEntry(i).bDoQuery; ++i)
470 : {
471 0 : const ScQueryEntry& rEntry = rParam.GetEntry(i);
472 0 : const ScQueryEntry::Item& rItem = rEntry.GetQueryItem();
473 : // we can only handle one single direct query
474 : // #i115431# nField in QueryParam is the sheet column, not the field within the source range
475 0 : SCCOL nQueryCol = (SCCOL)rEntry.nField;
476 0 : if ( nQueryCol < rParam.nCol1 )
477 0 : nQueryCol = rParam.nCol1;
478 0 : if ( nQueryCol > rParam.nCol2 )
479 0 : nQueryCol = rParam.nCol2;
480 0 : SCCOL nSourceField = nQueryCol - rParam.nCol1;
481 0 : SCROW nId = GetItemDataId( nSourceField, nRow, false );
482 0 : const ScDPItemData* pCellData = GetItemDataById( nSourceField, nId );
483 :
484 0 : bool bOk = false;
485 :
486 0 : if (rEntry.GetQueryItem().meType == ScQueryEntry::ByEmpty)
487 : {
488 0 : if (rEntry.IsQueryByEmpty())
489 0 : bOk = pCellData->IsEmpty();
490 : else
491 : {
492 : OSL_ASSERT(rEntry.IsQueryByNonEmpty());
493 0 : bOk = !pCellData->IsEmpty();
494 : }
495 : }
496 0 : else if (rEntry.GetQueryItem().meType != ScQueryEntry::ByString && pCellData->IsValue())
497 : { // by Value
498 0 : double nCellVal = pCellData->GetValue();
499 :
500 0 : switch (rEntry.eOp)
501 : {
502 : case SC_EQUAL :
503 0 : bOk = ::rtl::math::approxEqual(nCellVal, rItem.mfVal);
504 0 : break;
505 : case SC_LESS :
506 0 : bOk = (nCellVal < rItem.mfVal) && !::rtl::math::approxEqual(nCellVal, rItem.mfVal);
507 0 : break;
508 : case SC_GREATER :
509 0 : bOk = (nCellVal > rItem.mfVal) && !::rtl::math::approxEqual(nCellVal, rItem.mfVal);
510 0 : break;
511 : case SC_LESS_EQUAL :
512 0 : bOk = (nCellVal < rItem.mfVal) || ::rtl::math::approxEqual(nCellVal, rItem.mfVal);
513 0 : break;
514 : case SC_GREATER_EQUAL :
515 0 : bOk = (nCellVal > rItem.mfVal) || ::rtl::math::approxEqual(nCellVal, rItem.mfVal);
516 0 : break;
517 : case SC_NOT_EQUAL :
518 0 : bOk = !::rtl::math::approxEqual(nCellVal, rItem.mfVal);
519 0 : break;
520 : default:
521 0 : bOk= false;
522 0 : break;
523 : }
524 : }
525 0 : else if ((rEntry.eOp == SC_EQUAL || rEntry.eOp == SC_NOT_EQUAL)
526 0 : || (rEntry.GetQueryItem().meType == ScQueryEntry::ByString
527 0 : && pCellData->HasStringData() )
528 : )
529 : { // by String
530 0 : OUString aCellStr = pCellData->GetString();
531 :
532 0 : bool bRealRegExp = (rParam.bRegExp && ((rEntry.eOp == SC_EQUAL)
533 0 : || (rEntry.eOp == SC_NOT_EQUAL)));
534 0 : bool bTestRegExp = false;
535 0 : if (bRealRegExp || bTestRegExp)
536 : {
537 0 : sal_Int32 nStart = 0;
538 0 : sal_Int32 nEnd = aCellStr.getLength();
539 :
540 : bool bMatch = (bool) rEntry.GetSearchTextPtr( rParam.bCaseSens )
541 0 : ->SearchForward( aCellStr, &nStart, &nEnd );
542 : // from 614 on, nEnd is behind the found text
543 0 : if (bMatch && bMatchWholeCell
544 0 : && (nStart != 0 || nEnd != aCellStr.getLength()))
545 0 : bMatch = false; // RegExp must match entire cell string
546 0 : if (bRealRegExp)
547 0 : bOk = ((rEntry.eOp == SC_NOT_EQUAL) ? !bMatch : bMatch);
548 : }
549 0 : if (!bRealRegExp)
550 : {
551 0 : if (rEntry.eOp == SC_EQUAL || rEntry.eOp == SC_NOT_EQUAL)
552 : {
553 0 : if (bMatchWholeCell)
554 : {
555 : // TODO: Use shared string for fast equality check.
556 0 : OUString aStr = rEntry.GetQueryItem().maString.getString();
557 0 : bOk = pTransliteration->isEqual(aCellStr, aStr);
558 0 : bool bHasStar = false;
559 : sal_Int32 nIndex;
560 0 : if (( nIndex = aStr.indexOf('*') ) != -1)
561 0 : bHasStar = true;
562 0 : if (bHasStar && (nIndex>0))
563 : {
564 0 : for (sal_Int32 j=0;(j<nIndex) && (j< aCellStr.getLength()) ; j++)
565 : {
566 0 : if (aCellStr[j] == aStr[j])
567 : {
568 0 : bOk=true;
569 : }
570 : else
571 : {
572 0 : bOk=false;
573 0 : break;
574 : }
575 : }
576 0 : }
577 : }
578 : else
579 : {
580 0 : OUString aQueryStr = rEntry.GetQueryItem().maString.getString();
581 0 : ::com::sun::star::uno::Sequence< sal_Int32 > xOff;
582 : OUString aCell = pTransliteration->transliterate(
583 0 : aCellStr, ScGlobal::eLnge, 0, aCellStr.getLength(), &xOff);
584 : OUString aQuer = pTransliteration->transliterate(
585 0 : aQueryStr, ScGlobal::eLnge, 0, aQueryStr.getLength(), &xOff);
586 0 : bOk = (aCell.indexOf( aQuer ) != -1);
587 : }
588 0 : if (rEntry.eOp == SC_NOT_EQUAL)
589 0 : bOk = !bOk;
590 : }
591 : else
592 : { // use collator here because data was probably sorted
593 : sal_Int32 nCompare = pCollator->compareString(
594 0 : aCellStr, rEntry.GetQueryItem().maString.getString());
595 0 : switch (rEntry.eOp)
596 : {
597 : case SC_LESS :
598 0 : bOk = (nCompare < 0);
599 0 : break;
600 : case SC_GREATER :
601 0 : bOk = (nCompare > 0);
602 0 : break;
603 : case SC_LESS_EQUAL :
604 0 : bOk = (nCompare <= 0);
605 0 : break;
606 : case SC_GREATER_EQUAL :
607 0 : bOk = (nCompare >= 0);
608 0 : break;
609 : case SC_NOT_EQUAL:
610 : OSL_FAIL("SC_NOT_EQUAL");
611 0 : break;
612 : case SC_TOPVAL:
613 : case SC_BOTVAL:
614 : case SC_TOPPERC:
615 : case SC_BOTPERC:
616 : default:
617 0 : break;
618 : }
619 : }
620 0 : }
621 : }
622 :
623 0 : if (nPos == -1)
624 : {
625 0 : nPos++;
626 0 : aPassed[nPos] = bOk;
627 : }
628 : else
629 : {
630 0 : if (rEntry.eConnect == SC_AND)
631 : {
632 0 : aPassed[nPos] = aPassed[nPos] && bOk;
633 : }
634 : else
635 : {
636 0 : nPos++;
637 0 : aPassed[nPos] = bOk;
638 : }
639 : }
640 : }
641 :
642 0 : for (long j=1; j <= nPos; j++)
643 0 : aPassed[0] = aPassed[0] || aPassed[j];
644 :
645 0 : bool bRet = aPassed[0];
646 0 : return bRet;
647 : }
648 :
649 0 : bool ScDPCache::IsRowEmpty(SCROW nRow) const
650 : {
651 0 : bool bEmpty = true;
652 0 : maEmptyRows.search_tree(nRow, bEmpty);
653 0 : return bEmpty;
654 : }
655 :
656 0 : const ScDPCache::GroupItems* ScDPCache::GetGroupItems(long nDim) const
657 : {
658 0 : if (nDim < 0)
659 0 : return NULL;
660 :
661 0 : long nSourceCount = static_cast<long>(maFields.size());
662 0 : if (nDim < nSourceCount)
663 0 : return maFields[nDim].mpGroup.get();
664 :
665 0 : nDim -= nSourceCount;
666 0 : if (nDim < static_cast<long>(maGroupFields.size()))
667 0 : return &maGroupFields[nDim];
668 :
669 0 : return NULL;
670 : }
671 :
672 0 : OUString ScDPCache::GetDimensionName(LabelsType::size_type nDim) const
673 : {
674 : OSL_ENSURE(nDim < maLabelNames.size()-1 , "ScDPTableDataCache::GetDimensionName");
675 : OSL_ENSURE(maLabelNames.size() == static_cast <sal_uInt16> (mnColumnCount+1), "ScDPTableDataCache::GetDimensionName");
676 :
677 0 : if ( nDim+1 < maLabelNames.size() )
678 : {
679 0 : return maLabelNames[nDim+1];
680 : }
681 : else
682 0 : return OUString();
683 : }
684 :
685 : namespace {
686 :
687 : typedef boost::unordered_set<OUString, OUStringHash> LabelSet;
688 :
689 : class InsertLabel : public std::unary_function<OUString, void>
690 : {
691 : LabelSet& mrNames;
692 : public:
693 0 : InsertLabel(LabelSet& rNames) : mrNames(rNames) {}
694 0 : void operator() (const OUString& r)
695 : {
696 0 : mrNames.insert(r);
697 0 : }
698 : };
699 :
700 : }
701 :
702 0 : void ScDPCache::PostInit()
703 : {
704 : OSL_ENSURE(!maFields.empty(), "Cache not initialized!");
705 :
706 0 : maEmptyRows.build_tree();
707 : typedef mdds::flat_segment_tree<SCROW, bool>::const_reverse_iterator itr_type;
708 0 : itr_type it = maEmptyRows.rbegin();
709 : OSL_ENSURE(it != maEmptyRows.rend(), "corrupt flat_segment_tree instance!");
710 0 : mnDataSize = maFields[0].maData.size();
711 0 : ++it; // Skip the first position.
712 : OSL_ENSURE(it != maEmptyRows.rend(), "buggy version of flat_segment_tree is used.");
713 0 : if (it->second)
714 : {
715 0 : SCROW nLastNonEmpty = it->first - 1;
716 0 : if (nLastNonEmpty+1 < mnDataSize)
717 0 : mnDataSize = nLastNonEmpty+1;
718 : }
719 0 : }
720 :
721 0 : void ScDPCache::Clear()
722 : {
723 0 : mnColumnCount = 0;
724 0 : mnRowCount = 0;
725 0 : maFields.clear();
726 0 : maLabelNames.clear();
727 0 : maGroupFields.clear();
728 0 : maEmptyRows.clear();
729 0 : maStringPool.clear();
730 0 : }
731 :
732 0 : void ScDPCache::AddLabel(const OUString& rLabel)
733 : {
734 :
735 0 : if ( maLabelNames.empty() )
736 0 : maLabelNames.push_back(ScGlobal::GetRscString(STR_PIVOT_DATA));
737 :
738 : //reset name if needed
739 0 : LabelSet aExistingNames;
740 0 : std::for_each(maLabelNames.begin(), maLabelNames.end(), InsertLabel(aExistingNames));
741 0 : sal_Int32 nSuffix = 1;
742 0 : OUString aNewName = rLabel;
743 : while (true)
744 : {
745 0 : if (!aExistingNames.count(aNewName))
746 : {
747 : // unique name found!
748 0 : maLabelNames.push_back(aNewName);
749 0 : return;
750 : }
751 :
752 : // Name already exists.
753 0 : OUStringBuffer aBuf(rLabel);
754 0 : aBuf.append(++nSuffix);
755 0 : aNewName = aBuf.makeStringAndClear();
756 0 : }
757 : }
758 :
759 0 : SCROW ScDPCache::GetItemDataId(sal_uInt16 nDim, SCROW nRow, bool bRepeatIfEmpty) const
760 : {
761 : OSL_ENSURE(nDim < mnColumnCount, "ScDPTableDataCache::GetItemDataId ");
762 :
763 0 : const Field& rField = maFields[nDim];
764 0 : if (static_cast<size_t>(nRow) >= rField.maData.size())
765 : {
766 : // nRow is in the trailing empty rows area.
767 0 : if (bRepeatIfEmpty)
768 0 : nRow = rField.maData.size()-1; // Move to the last non-empty row.
769 : else
770 : // Return the last item, which should always be empty if the
771 : // initialization has skipped trailing empty rows.
772 0 : return rField.maItems.size()-1;
773 :
774 : }
775 0 : else if (bRepeatIfEmpty)
776 : {
777 0 : while (nRow > 0 && rField.maItems[rField.maData[nRow]].IsEmpty())
778 0 : --nRow;
779 : }
780 :
781 0 : return rField.maData[nRow];
782 : }
783 :
784 0 : const ScDPItemData* ScDPCache::GetItemDataById(long nDim, SCROW nId) const
785 : {
786 0 : if (nDim < 0 || nId < 0)
787 0 : return NULL;
788 :
789 0 : size_t nSourceCount = maFields.size();
790 0 : size_t nDimPos = static_cast<size_t>(nDim);
791 0 : size_t nItemId = static_cast<size_t>(nId);
792 0 : if (nDimPos < nSourceCount)
793 : {
794 : // source field.
795 0 : const Field& rField = maFields[nDimPos];
796 0 : if (nItemId < rField.maItems.size())
797 0 : return &rField.maItems[nItemId];
798 :
799 0 : if (!rField.mpGroup)
800 0 : return NULL;
801 :
802 0 : nItemId -= rField.maItems.size();
803 0 : const ItemsType& rGI = rField.mpGroup->maItems;
804 0 : if (nItemId >= rGI.size())
805 0 : return NULL;
806 :
807 0 : return &rGI[nItemId];
808 : }
809 :
810 : // Try group fields.
811 0 : nDimPos -= nSourceCount;
812 0 : if (nDimPos >= maGroupFields.size())
813 0 : return NULL;
814 :
815 0 : const ItemsType& rGI = maGroupFields[nDimPos].maItems;
816 0 : if (nItemId >= rGI.size())
817 0 : return NULL;
818 :
819 0 : return &rGI[nItemId];
820 : }
821 :
822 0 : size_t ScDPCache::GetFieldCount() const
823 : {
824 0 : return maFields.size();
825 : }
826 :
827 0 : size_t ScDPCache::GetGroupFieldCount() const
828 : {
829 0 : return maGroupFields.size();
830 : }
831 :
832 0 : SCROW ScDPCache::GetRowCount() const
833 : {
834 0 : return mnRowCount;
835 : }
836 :
837 0 : SCROW ScDPCache::GetDataSize() const
838 : {
839 : OSL_ENSURE(mnDataSize <= GetRowCount(), "Data size should never be larger than the row count.");
840 0 : return mnDataSize >= 0 ? mnDataSize : 0;
841 : }
842 :
843 0 : const ScDPCache::ItemsType& ScDPCache::GetDimMemberValues(SCCOL nDim) const
844 : {
845 : OSL_ENSURE( nDim>=0 && nDim < mnColumnCount ," nDim < mnColumnCount ");
846 0 : return maFields.at(nDim).maItems;
847 : }
848 :
849 0 : sal_uLong ScDPCache::GetNumberFormat( long nDim ) const
850 : {
851 0 : if ( nDim >= mnColumnCount )
852 0 : return 0;
853 :
854 : // TODO: Find a way to determine the dominant number format in presence of
855 : // multiple number formats in the same field.
856 0 : return maFields[nDim].mnNumFormat;
857 : }
858 :
859 0 : bool ScDPCache::IsDateDimension( long nDim ) const
860 : {
861 0 : if (nDim >= mnColumnCount)
862 0 : return false;
863 :
864 0 : SvNumberFormatter* pFormatter = mpDoc->GetFormatTable();
865 0 : if (!pFormatter)
866 0 : return false;
867 :
868 0 : short eType = pFormatter->GetType(maFields[nDim].mnNumFormat);
869 0 : return (eType == NUMBERFORMAT_DATE) || (eType == NUMBERFORMAT_DATETIME);
870 : }
871 :
872 0 : long ScDPCache::GetDimMemberCount(long nDim) const
873 : {
874 : OSL_ENSURE( nDim>=0 && nDim < mnColumnCount ," ScDPTableDataCache::GetDimMemberCount : out of bound ");
875 0 : return maFields[nDim].maItems.size();
876 : }
877 :
878 0 : SCCOL ScDPCache::GetDimensionIndex(const OUString& sName) const
879 : {
880 0 : for (size_t i = 1; i < maLabelNames.size(); ++i)
881 : {
882 0 : if (maLabelNames[i].equals(sName))
883 0 : return static_cast<SCCOL>(i-1);
884 : }
885 0 : return -1;
886 : }
887 :
888 0 : const OUString* ScDPCache::InternString(const OUString& rStr) const
889 : {
890 0 : StringSetType::iterator it = maStringPool.find(rStr);
891 0 : if (it != maStringPool.end())
892 : // In the pool.
893 0 : return &(*it);
894 :
895 0 : std::pair<StringSetType::iterator, bool> r = maStringPool.insert(rStr);
896 0 : return r.second ? &(*r.first) : NULL;
897 : }
898 :
899 0 : void ScDPCache::AddReference(ScDPObject* pObj) const
900 : {
901 0 : maRefObjects.insert(pObj);
902 0 : }
903 :
904 0 : void ScDPCache::RemoveReference(ScDPObject* pObj) const
905 : {
906 0 : if (mbDisposing)
907 : // Object being deleted.
908 0 : return;
909 :
910 0 : maRefObjects.erase(pObj);
911 0 : if (maRefObjects.empty())
912 0 : mpDoc->GetDPCollection()->RemoveCache(this);
913 : }
914 :
915 0 : const ScDPCache::ObjectSetType& ScDPCache::GetAllReferences() const
916 : {
917 0 : return maRefObjects;
918 : }
919 :
920 0 : SCROW ScDPCache::GetIdByItemData(long nDim, const ScDPItemData& rItem) const
921 : {
922 0 : if (nDim < 0)
923 0 : return -1;
924 :
925 0 : if (nDim < mnColumnCount)
926 : {
927 : // source field.
928 0 : const ItemsType& rItems = maFields[nDim].maItems;
929 0 : for (size_t i = 0, n = rItems.size(); i < n; ++i)
930 : {
931 0 : if (rItems[i] == rItem)
932 0 : return i;
933 : }
934 :
935 0 : if (!maFields[nDim].mpGroup)
936 0 : return -1;
937 :
938 : // grouped source field.
939 0 : const ItemsType& rGI = maFields[nDim].mpGroup->maItems;
940 0 : for (size_t i = 0, n = rGI.size(); i < n; ++i)
941 : {
942 0 : if (rGI[i] == rItem)
943 0 : return rItems.size() + i;
944 : }
945 0 : return -1;
946 : }
947 :
948 : // group field.
949 0 : nDim -= mnColumnCount;
950 0 : if (static_cast<size_t>(nDim) < maGroupFields.size())
951 : {
952 0 : const ItemsType& rGI = maGroupFields[nDim].maItems;
953 0 : for (size_t i = 0, n = rGI.size(); i < n; ++i)
954 : {
955 0 : if (rGI[i] == rItem)
956 0 : return i;
957 : }
958 : }
959 :
960 0 : return -1;
961 : }
962 :
963 0 : OUString ScDPCache::GetFormattedString(long nDim, const ScDPItemData& rItem) const
964 : {
965 0 : if (nDim < 0)
966 0 : return rItem.GetString();
967 :
968 0 : ScDPItemData::Type eType = rItem.GetType();
969 0 : if (eType == ScDPItemData::Value)
970 : {
971 : // Format value using the stored number format.
972 0 : sal_uLong nNumFormat = GetNumberFormat(nDim);
973 0 : SvNumberFormatter* pFormatter = mpDoc->GetFormatTable();
974 0 : if (pFormatter)
975 : {
976 0 : Color* pColor = NULL;
977 0 : OUString aStr;
978 0 : pFormatter->GetOutputString(rItem.GetValue(), nNumFormat, aStr, &pColor);
979 0 : return aStr;
980 : }
981 : }
982 :
983 0 : if (eType == ScDPItemData::GroupValue)
984 : {
985 0 : ScDPItemData::GroupValueAttr aAttr = rItem.GetGroupValue();
986 0 : double fStart = 0.0, fEnd = 0.0;
987 0 : const GroupItems* p = GetGroupItems(nDim);
988 0 : if (p)
989 : {
990 0 : fStart = p->maInfo.mfStart;
991 0 : fEnd = p->maInfo.mfEnd;
992 : }
993 : return ScDPUtil::getDateGroupName(
994 0 : aAttr.mnGroupType, aAttr.mnValue, mpDoc->GetFormatTable(), fStart, fEnd);
995 : }
996 :
997 0 : if (eType == ScDPItemData::RangeStart)
998 : {
999 0 : double fVal = rItem.GetValue();
1000 0 : const GroupItems* p = GetGroupItems(nDim);
1001 0 : if (!p)
1002 0 : return rItem.GetString();
1003 :
1004 0 : sal_Unicode cDecSep = ScGlobal::pLocaleData->getNumDecimalSep()[0];
1005 0 : return ScDPUtil::getNumGroupName(fVal, p->maInfo, cDecSep, mpDoc->GetFormatTable());
1006 : }
1007 :
1008 0 : return rItem.GetString();
1009 : }
1010 :
1011 0 : long ScDPCache::AppendGroupField()
1012 : {
1013 0 : maGroupFields.push_back(new GroupItems);
1014 0 : return static_cast<long>(maFields.size() + maGroupFields.size() - 1);
1015 : }
1016 :
1017 0 : void ScDPCache::ResetGroupItems(long nDim, const ScDPNumGroupInfo& rNumInfo, sal_Int32 nGroupType)
1018 : {
1019 0 : if (nDim < 0)
1020 0 : return;
1021 :
1022 0 : long nSourceCount = static_cast<long>(maFields.size());
1023 0 : if (nDim < nSourceCount)
1024 : {
1025 0 : maFields.at(nDim).mpGroup.reset(new GroupItems(rNumInfo, nGroupType));
1026 0 : return;
1027 : }
1028 :
1029 0 : nDim -= nSourceCount;
1030 0 : if (nDim < static_cast<long>(maGroupFields.size()))
1031 : {
1032 0 : GroupItems& rGI = maGroupFields[nDim];
1033 0 : rGI.maItems.clear();
1034 0 : rGI.maInfo = rNumInfo;
1035 0 : rGI.mnGroupType = nGroupType;
1036 : }
1037 : }
1038 :
1039 0 : SCROW ScDPCache::SetGroupItem(long nDim, const ScDPItemData& rData)
1040 : {
1041 0 : if (nDim < 0)
1042 0 : return -1;
1043 :
1044 0 : long nSourceCount = static_cast<long>(maFields.size());
1045 0 : if (nDim < nSourceCount)
1046 : {
1047 0 : GroupItems& rGI = *maFields.at(nDim).mpGroup;
1048 0 : rGI.maItems.push_back(rData);
1049 0 : SCROW nId = maFields[nDim].maItems.size() + rGI.maItems.size() - 1;
1050 0 : return nId;
1051 : }
1052 :
1053 0 : nDim -= nSourceCount;
1054 0 : if (nDim < static_cast<long>(maGroupFields.size()))
1055 : {
1056 0 : ItemsType& rItems = maGroupFields.at(nDim).maItems;
1057 0 : rItems.push_back(rData);
1058 0 : return rItems.size()-1;
1059 : }
1060 :
1061 0 : return -1;
1062 : }
1063 :
1064 0 : void ScDPCache::GetGroupDimMemberIds(long nDim, std::vector<SCROW>& rIds) const
1065 : {
1066 0 : if (nDim < 0)
1067 0 : return;
1068 :
1069 0 : long nSourceCount = static_cast<long>(maFields.size());
1070 0 : if (nDim < nSourceCount)
1071 : {
1072 0 : if (!maFields.at(nDim).mpGroup)
1073 0 : return;
1074 :
1075 0 : size_t nOffset = maFields[nDim].maItems.size();
1076 0 : const ItemsType& rGI = maFields[nDim].mpGroup->maItems;
1077 0 : for (size_t i = 0, n = rGI.size(); i < n; ++i)
1078 0 : rIds.push_back(static_cast<SCROW>(i + nOffset));
1079 :
1080 0 : return;
1081 : }
1082 :
1083 0 : nDim -= nSourceCount;
1084 0 : if (nDim < static_cast<long>(maGroupFields.size()))
1085 : {
1086 0 : const ItemsType& rGI = maGroupFields.at(nDim).maItems;
1087 0 : for (size_t i = 0, n = rGI.size(); i < n; ++i)
1088 0 : rIds.push_back(static_cast<SCROW>(i));
1089 : }
1090 : }
1091 :
1092 : namespace {
1093 :
1094 : struct ClearGroupItems : std::unary_function<ScDPCache::Field, void>
1095 : {
1096 0 : void operator() (ScDPCache::Field& r) const
1097 : {
1098 0 : r.mpGroup.reset();
1099 0 : }
1100 : };
1101 :
1102 : }
1103 :
1104 0 : void ScDPCache::ClearGroupFields()
1105 : {
1106 0 : maGroupFields.clear();
1107 0 : std::for_each(maFields.begin(), maFields.end(), ClearGroupItems());
1108 0 : }
1109 :
1110 0 : const ScDPNumGroupInfo* ScDPCache::GetNumGroupInfo(long nDim) const
1111 : {
1112 0 : if (nDim < 0)
1113 0 : return NULL;
1114 :
1115 0 : long nSourceCount = static_cast<long>(maFields.size());
1116 0 : if (nDim < nSourceCount)
1117 : {
1118 0 : if (!maFields.at(nDim).mpGroup)
1119 0 : return NULL;
1120 :
1121 0 : return &maFields[nDim].mpGroup->maInfo;
1122 : }
1123 :
1124 0 : nDim -= nSourceCount;
1125 0 : if (nDim < static_cast<long>(maGroupFields.size()))
1126 0 : return &maGroupFields.at(nDim).maInfo;
1127 :
1128 0 : return NULL;
1129 : }
1130 :
1131 0 : sal_Int32 ScDPCache::GetGroupType(long nDim) const
1132 : {
1133 0 : if (nDim < 0)
1134 0 : return 0;
1135 :
1136 0 : long nSourceCount = static_cast<long>(maFields.size());
1137 0 : if (nDim < nSourceCount)
1138 : {
1139 0 : if (!maFields.at(nDim).mpGroup)
1140 0 : return 0;
1141 :
1142 0 : return maFields[nDim].mpGroup->mnGroupType;
1143 : }
1144 :
1145 0 : nDim -= nSourceCount;
1146 0 : if (nDim < static_cast<long>(maGroupFields.size()))
1147 0 : return maGroupFields.at(nDim).mnGroupType;
1148 :
1149 0 : return 0;
1150 : }
1151 :
1152 0 : SCROW ScDPCache::GetOrder(long /*nDim*/, SCROW nIndex) const
1153 : {
1154 0 : return nIndex;
1155 : }
1156 :
1157 0 : ScDocument* ScDPCache::GetDoc() const
1158 : {
1159 0 : return mpDoc;
1160 : };
1161 :
1162 0 : long ScDPCache::GetColumnCount() const
1163 : {
1164 0 : return mnColumnCount;
1165 0 : }
1166 :
1167 : #if DEBUG_PIVOT_TABLE
1168 :
1169 : namespace {
1170 :
1171 : std::ostream& operator<< (::std::ostream& os, const OUString& str)
1172 : {
1173 : return os << OUStringToOString(str, RTL_TEXTENCODING_UTF8).getStr();
1174 : }
1175 :
1176 : void dumpItems(const ScDPCache& rCache, long nDim, const ScDPCache::ItemsType& rItems, size_t nOffset)
1177 : {
1178 : for (size_t i = 0; i < rItems.size(); ++i)
1179 : cout << " " << (i+nOffset) << ": " << rCache.GetFormattedString(nDim, rItems[i]) << endl;
1180 : }
1181 :
1182 : void dumpSourceData(const ScDPCache& rCache, long nDim, const ScDPCache::ItemsType& rItems, const ScDPCache::IndexArrayType& rArray)
1183 : {
1184 : ScDPCache::IndexArrayType::const_iterator it = rArray.begin(), itEnd = rArray.end();
1185 : for (; it != itEnd; ++it)
1186 : cout << " '" << rCache.GetFormattedString(nDim, rItems[*it]) << "'" << endl;
1187 : }
1188 :
1189 : const char* getGroupTypeName(sal_Int32 nType)
1190 : {
1191 : static const char* pNames[] = {
1192 : "", "years", "quarters", "months", "days", "hours", "minutes", "seconds"
1193 : };
1194 :
1195 : switch (nType)
1196 : {
1197 : case sheet::DataPilotFieldGroupBy::YEARS: return pNames[1];
1198 : case sheet::DataPilotFieldGroupBy::QUARTERS: return pNames[2];
1199 : case sheet::DataPilotFieldGroupBy::MONTHS: return pNames[3];
1200 : case sheet::DataPilotFieldGroupBy::DAYS: return pNames[4];
1201 : case sheet::DataPilotFieldGroupBy::HOURS: return pNames[5];
1202 : case sheet::DataPilotFieldGroupBy::MINUTES: return pNames[6];
1203 : case sheet::DataPilotFieldGroupBy::SECONDS: return pNames[7];
1204 : default:
1205 : ;
1206 : }
1207 :
1208 : return pNames[0];
1209 : }
1210 :
1211 : }
1212 :
1213 : void ScDPCache::Dump() const
1214 : {
1215 : // Change these flags to fit your debugging needs.
1216 : bool bDumpItems = false;
1217 : bool bDumpSourceData = false;
1218 :
1219 : cout << "--- pivot cache dump" << endl;
1220 : {
1221 : FieldsType::const_iterator it = maFields.begin(), itEnd = maFields.end();
1222 : for (size_t i = 0; it != itEnd; ++it, ++i)
1223 : {
1224 : const Field& fld = *it;
1225 : cout << "* source dimension: " << GetDimensionName(i) << " (ID = " << i << ")" << endl;
1226 : cout << " item count: " << fld.maItems.size() << endl;
1227 : if (bDumpItems)
1228 : dumpItems(*this, i, fld.maItems, 0);
1229 : if (fld.mpGroup)
1230 : {
1231 : cout << " group item count: " << fld.mpGroup->maItems.size() << endl;
1232 : cout << " group type: " << getGroupTypeName(fld.mpGroup->mnGroupType) << endl;
1233 : if (bDumpItems)
1234 : dumpItems(*this, i, fld.mpGroup->maItems, fld.maItems.size());
1235 : }
1236 :
1237 : if (bDumpSourceData)
1238 : {
1239 : cout << " source data (re-constructed):" << endl;
1240 : dumpSourceData(*this, i, fld.maItems, fld.maData);
1241 : }
1242 : }
1243 : }
1244 :
1245 : {
1246 : GroupFieldsType::const_iterator it = maGroupFields.begin(), itEnd = maGroupFields.end();
1247 : for (size_t i = maFields.size(); it != itEnd; ++it, ++i)
1248 : {
1249 : const GroupItems& gi = *it;
1250 : cout << "* group dimension: (unnamed) (ID = " << i << ")" << endl;
1251 : cout << " item count: " << gi.maItems.size() << endl;
1252 : cout << " group type: " << getGroupTypeName(gi.mnGroupType) << endl;
1253 : if (bDumpItems)
1254 : dumpItems(*this, i, gi.maItems, 0);
1255 : }
1256 : }
1257 :
1258 : {
1259 : struct { SCROW start; SCROW end; bool empty; } aRange;
1260 : cout << "* empty rows: " << endl;
1261 : mdds::flat_segment_tree<SCROW, bool>::const_iterator it = maEmptyRows.begin(), itEnd = maEmptyRows.end();
1262 : if (it != itEnd)
1263 : {
1264 : aRange.start = it->first;
1265 : aRange.empty = it->second;
1266 : ++it;
1267 : }
1268 :
1269 : for (; it != itEnd; ++it)
1270 : {
1271 : aRange.end = it->first-1;
1272 : cout << " rows " << aRange.start << "-" << aRange.end << ": " << (aRange.empty ? "empty" : "not-empty") << endl;
1273 : aRange.start = it->first;
1274 : aRange.empty = it->second;
1275 : }
1276 : }
1277 :
1278 : cout << "---" << endl;
1279 : }
1280 :
1281 : #endif
1282 :
1283 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|