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 <svl/zforlist.hxx>
21 :
22 : #include "dpshttab.hxx"
23 : #include "dptabres.hxx"
24 : #include "document.hxx"
25 : #include "formulacell.hxx"
26 : #include "dpfilteredcache.hxx"
27 : #include "dpobject.hxx"
28 : #include "globstr.hrc"
29 : #include "rangenam.hxx"
30 : #include "queryentry.hxx"
31 :
32 : #include <com/sun/star/sheet/DataPilotFieldFilter.hpp>
33 :
34 : #include <vector>
35 : #include <set>
36 :
37 : using namespace ::com::sun::star;
38 : using ::com::sun::star::uno::Any;
39 : using ::com::sun::star::uno::Sequence;
40 : using ::std::vector;
41 :
42 186 : ScSheetDPData::ScSheetDPData(ScDocument* pD, const ScSheetSourceDesc& rDesc, const ScDPCache& rCache) :
43 : ScDPTableData(pD),
44 186 : aQuery ( rDesc.GetQueryParam() ),
45 : bIgnoreEmptyRows( false ),
46 : bRepeatIfEmpty(false),
47 372 : aCacheTable(rCache)
48 : {
49 186 : SCSIZE nEntryCount( aQuery.GetEntryCount());
50 1674 : for (SCSIZE j = 0; j < nEntryCount; ++j)
51 : {
52 1488 : ScQueryEntry& rEntry = aQuery.GetEntry(j);
53 1488 : if (rEntry.bDoQuery)
54 : {
55 22 : ScQueryEntry::Item& rItem = rEntry.GetQueryItem();
56 22 : if (rItem.meType == ScQueryEntry::ByString)
57 : {
58 0 : sal_uInt32 nIndex = 0;
59 : bool bNumber = pD->GetFormatTable()->IsNumberFormat(
60 0 : rItem.maString.getString(), nIndex, rItem.mfVal);
61 0 : rItem.meType = bNumber ? ScQueryEntry::ByValue : ScQueryEntry::ByString;
62 : }
63 : }
64 : }
65 186 : }
66 :
67 372 : ScSheetDPData::~ScSheetDPData()
68 : {
69 372 : }
70 :
71 18 : void ScSheetDPData::DisposeData()
72 : {
73 18 : aCacheTable.clear();
74 18 : }
75 :
76 46306 : long ScSheetDPData::GetColumnCount()
77 : {
78 46306 : CreateCacheTable();
79 46306 : return aCacheTable.getColSize();
80 : }
81 :
82 61352 : OUString ScSheetDPData::getDimensionName(long nColumn)
83 : {
84 61352 : CreateCacheTable();
85 61352 : if (getIsDataLayoutDimension(nColumn))
86 : {
87 : //! different internal and display names?
88 : //return "Data";
89 4358 : return ScGlobal::GetRscString(STR_PIVOT_DATA);
90 : }
91 56994 : else if (nColumn >= aCacheTable.getColSize())
92 : {
93 : OSL_FAIL("getDimensionName: invalid dimension");
94 0 : return OUString();
95 : }
96 : else
97 : {
98 56994 : return aCacheTable.getFieldName(static_cast<SCCOL>(nColumn));
99 : }
100 : }
101 :
102 4082 : bool ScSheetDPData::IsDateDimension(long nDim)
103 : {
104 4082 : CreateCacheTable();
105 4082 : long nColCount = aCacheTable.getColSize();
106 4082 : if (getIsDataLayoutDimension(nDim))
107 : {
108 588 : return false;
109 : }
110 3494 : else if (nDim >= nColCount)
111 : {
112 : OSL_FAIL("IsDateDimension: invalid dimension");
113 0 : return false;
114 : }
115 : else
116 : {
117 3494 : return GetCacheTable().getCache().IsDateDimension( nDim);
118 : }
119 : }
120 :
121 1204 : sal_uLong ScSheetDPData::GetNumberFormat(long nDim)
122 : {
123 1204 : CreateCacheTable();
124 1204 : if (getIsDataLayoutDimension(nDim))
125 : {
126 174 : return 0;
127 : }
128 1030 : else if (nDim >= GetCacheTable().getColSize())
129 : {
130 : OSL_FAIL("GetNumberFormat: invalid dimension");
131 0 : return 0;
132 : }
133 : else
134 : {
135 1030 : return GetCacheTable().getCache().GetNumberFormat( nDim );
136 : }
137 : }
138 12 : sal_uInt32 ScDPTableData::GetNumberFormatByIdx( NfIndexTableOffset eIdx )
139 : {
140 12 : if( !mpDoc )
141 0 : return 0;
142 :
143 12 : if ( SvNumberFormatter* pFormatter = mpDoc->GetFormatTable() )
144 12 : return pFormatter->GetFormatIndex( eIdx, LANGUAGE_SYSTEM );
145 :
146 0 : return 0;
147 : }
148 :
149 77064 : bool ScSheetDPData::getIsDataLayoutDimension(long nColumn)
150 : {
151 77064 : CreateCacheTable();
152 77064 : return (nColumn ==(long)( aCacheTable.getColSize()));
153 : }
154 :
155 1086 : void ScSheetDPData::SetEmptyFlags( bool bIgnoreEmptyRowsP, bool bRepeatIfEmptyP )
156 : {
157 1086 : bIgnoreEmptyRows = bIgnoreEmptyRowsP;
158 1086 : bRepeatIfEmpty = bRepeatIfEmptyP;
159 1086 : }
160 :
161 1908 : bool ScSheetDPData::IsRepeatIfEmpty()
162 : {
163 1908 : return bRepeatIfEmpty;
164 : }
165 :
166 190804 : void ScSheetDPData::CreateCacheTable()
167 : {
168 : // Scan and store the data from the source range.
169 190804 : if (!aCacheTable.empty())
170 : // already cached.
171 380908 : return;
172 :
173 700 : aCacheTable.fillTable(aQuery, bIgnoreEmptyRows, bRepeatIfEmpty);
174 : }
175 :
176 8 : void ScSheetDPData::FilterCacheTable(const vector<ScDPFilteredCache::Criterion>& rCriteria, const boost::unordered_set<sal_Int32>& rCatDims)
177 : {
178 8 : CreateCacheTable();
179 : aCacheTable.filterByPageDimension(
180 8 : rCriteria, (IsRepeatIfEmpty() ? rCatDims : boost::unordered_set<sal_Int32>()));
181 8 : }
182 :
183 266 : void ScSheetDPData::GetDrillDownData(const vector<ScDPFilteredCache::Criterion>& rCriteria, const boost::unordered_set<sal_Int32>& rCatDims, Sequence< Sequence<Any> >& rData)
184 : {
185 266 : CreateCacheTable();
186 266 : sal_Int32 nRowSize = aCacheTable.getRowSize();
187 266 : if (!nRowSize)
188 266 : return;
189 :
190 : aCacheTable.filterTable(
191 266 : rCriteria, rData, IsRepeatIfEmpty() ? rCatDims : boost::unordered_set<sal_Int32>());
192 : }
193 :
194 160 : void ScSheetDPData::CalcResults(CalcInfo& rInfo, bool bAutoShow)
195 : {
196 160 : CreateCacheTable();
197 160 : CalcResultsFromCacheTable(aCacheTable, rInfo, bAutoShow);
198 160 : }
199 :
200 45032 : const ScDPFilteredCache& ScSheetDPData::GetCacheTable() const
201 : {
202 45032 : return aCacheTable;
203 : }
204 :
205 340 : void ScSheetDPData::ReloadCacheTable()
206 : {
207 340 : aCacheTable.clear();
208 340 : CreateCacheTable();
209 340 : }
210 :
211 144 : ScSheetSourceDesc::ScSheetSourceDesc(ScDocument* pDoc) :
212 144 : mpDoc(pDoc) {}
213 :
214 226 : void ScSheetSourceDesc::SetSourceRange(const ScRange& rRange)
215 : {
216 226 : maSourceRange = rRange;
217 226 : maRangeName = OUString(); // overwrite existing range name if any.
218 226 : }
219 :
220 1112 : const ScRange& ScSheetSourceDesc::GetSourceRange() const
221 : {
222 1112 : if (!maRangeName.isEmpty())
223 : {
224 : // Obtain the source range from the range name first.
225 14 : maSourceRange = ScRange();
226 14 : ScRangeName* pRangeName = mpDoc->GetRangeName();
227 : do
228 : {
229 14 : if (!pRangeName)
230 0 : break;
231 :
232 14 : OUString aUpper = ScGlobal::pCharClass->uppercase(maRangeName);
233 14 : const ScRangeData* pData = pRangeName->findByUpperName(aUpper);
234 14 : if (!pData)
235 0 : break;
236 :
237 : // range name found. Fow now, we only use the first token and
238 : // ignore the rest.
239 14 : ScRange aRange;
240 14 : if (!pData->IsReference(aRange))
241 0 : break;
242 :
243 14 : maSourceRange = aRange;
244 : }
245 : while (false);
246 : }
247 1112 : return maSourceRange;
248 : }
249 :
250 4 : void ScSheetSourceDesc::SetRangeName(const OUString& rName)
251 : {
252 4 : maRangeName = rName;
253 4 : }
254 :
255 234 : bool ScSheetSourceDesc::HasRangeName() const
256 : {
257 234 : return !maRangeName.isEmpty();
258 : }
259 :
260 294 : void ScSheetSourceDesc::SetQueryParam(const ScQueryParam& rParam)
261 : {
262 294 : maQueryParam = rParam;
263 294 : }
264 :
265 50 : bool ScSheetSourceDesc::operator== (const ScSheetSourceDesc& rOther) const
266 : {
267 54 : return maSourceRange == rOther.maSourceRange &&
268 54 : maRangeName == rOther.maRangeName &&
269 54 : maQueryParam == rOther.maQueryParam;
270 : }
271 :
272 186 : const ScDPCache* ScSheetSourceDesc::CreateCache(const ScDPDimensionSaveData* pDimData) const
273 : {
274 186 : if (!mpDoc)
275 0 : return NULL;
276 :
277 186 : sal_uLong nErrId = CheckSourceRange();
278 186 : if (nErrId)
279 : {
280 : OSL_FAIL( "Error Create Cache\n" );
281 0 : return NULL;
282 : }
283 :
284 : // All cache instances are managed centrally by ScDPCollection.
285 186 : ScDPCollection* pDPs = mpDoc->GetDPCollection();
286 186 : if (HasRangeName())
287 : {
288 : // Name-based data source.
289 4 : ScDPCollection::NameCaches& rCaches = pDPs->GetNameCaches();
290 4 : return rCaches.getCache(GetRangeName(), GetSourceRange(), pDimData);
291 : }
292 :
293 182 : ScDPCollection::SheetCaches& rCaches = pDPs->GetSheetCaches();
294 182 : return rCaches.getCache(GetSourceRange(), pDimData);
295 : }
296 :
297 196 : sal_uLong ScSheetSourceDesc::CheckSourceRange() const
298 : {
299 196 : if (!mpDoc)
300 0 : return STR_ERR_DATAPILOTSOURCE;
301 :
302 : // Make sure the range is valid and sane.
303 196 : const ScRange& rSrcRange = GetSourceRange();
304 196 : if (!rSrcRange.IsValid())
305 0 : return STR_ERR_DATAPILOTSOURCE;
306 :
307 196 : if (rSrcRange.aStart.Col() > rSrcRange.aEnd.Col() || rSrcRange.aStart.Row() > rSrcRange.aEnd.Row())
308 0 : return STR_ERR_DATAPILOTSOURCE;
309 :
310 196 : return 0;
311 228 : }
312 :
313 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|