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