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 "doubleref.hxx"
21 : #include "cell.hxx"
22 : #include "global.hxx"
23 : #include "document.hxx"
24 : #include "queryparam.hxx"
25 : #include "queryentry.hxx"
26 : #include "globstr.hrc"
27 :
28 : #include <memory>
29 : #include <vector>
30 :
31 : using ::rtl::OUString;
32 : using ::std::auto_ptr;
33 : using ::std::vector;
34 :
35 : namespace {
36 :
37 72 : void lcl_uppercase(OUString& rStr)
38 : {
39 72 : rStr = ScGlobal::pCharClass->uppercase(rStr.trim());
40 72 : }
41 :
42 8 : bool lcl_createStarQuery(ScQueryParamBase* pParam, const ScDBRangeBase* pDBRef, const ScDBRangeBase* pQueryRef)
43 : {
44 : // A valid StarQuery must be at least 4 columns wide. To be precise it
45 : // should be exactly 4 columns ...
46 : // Additionally, if this wasn't checked, a formula pointing to a valid 1-3
47 : // column Excel style query range immediately left to itself would result
48 : // in a circular reference when the field name or operator or value (first
49 : // to third query range column) is obtained (#i58354#). Furthermore, if the
50 : // range wasn't sufficiently specified data changes wouldn't flag formula
51 : // cells for recalculation.
52 :
53 8 : if (pQueryRef->getColSize() < 4)
54 8 : return false;
55 :
56 : sal_Bool bValid;
57 0 : OUString aCellStr;
58 0 : SCSIZE nIndex = 0;
59 0 : SCROW nRow = 0;
60 0 : SCROW nRows = pDBRef->getRowSize();
61 0 : SCSIZE nNewEntries = static_cast<SCSIZE>(nRows);
62 0 : pParam->Resize(nNewEntries);
63 :
64 0 : do
65 : {
66 0 : ScQueryEntry& rEntry = pParam->GetEntry(nIndex);
67 :
68 0 : bValid = false;
69 :
70 0 : if (nIndex > 0)
71 : {
72 : // For all entries after the first one, check the and/or connector in the first column.
73 0 : aCellStr = pQueryRef->getString(0, nRow);
74 0 : lcl_uppercase(aCellStr);
75 0 : if ( aCellStr.equals(ScGlobal::GetRscString(STR_TABLE_UND)) )
76 : {
77 0 : rEntry.eConnect = SC_AND;
78 0 : bValid = sal_True;
79 : }
80 0 : else if ( aCellStr.equals(ScGlobal::GetRscString(STR_TABLE_ODER)) )
81 : {
82 0 : rEntry.eConnect = SC_OR;
83 0 : bValid = sal_True;
84 : }
85 : }
86 :
87 0 : if ((nIndex < 1) || bValid)
88 : {
89 : // field name in the 2nd column.
90 0 : aCellStr = pQueryRef->getString(1, nRow);
91 0 : SCCOL nField = pDBRef->findFieldColumn(aCellStr); // TODO: must be case insensitive comparison.
92 0 : if (ValidCol(nField))
93 : {
94 0 : rEntry.nField = nField;
95 0 : bValid = true;
96 : }
97 : else
98 0 : bValid = false;
99 : }
100 :
101 0 : if (bValid)
102 : {
103 : // equality, non-equality operator in the 3rd column.
104 0 : aCellStr = pQueryRef->getString(2, nRow);
105 0 : lcl_uppercase(aCellStr);
106 0 : const sal_Unicode* p = aCellStr.getStr();
107 0 : if (p[0] == sal_Unicode('<'))
108 : {
109 0 : if (p[1] == sal_Unicode('>'))
110 0 : rEntry.eOp = SC_NOT_EQUAL;
111 0 : else if (p[1] == sal_Unicode('='))
112 0 : rEntry.eOp = SC_LESS_EQUAL;
113 : else
114 0 : rEntry.eOp = SC_LESS;
115 : }
116 0 : else if (p[0] == sal_Unicode('>'))
117 : {
118 0 : if (p[1] == sal_Unicode('='))
119 0 : rEntry.eOp = SC_GREATER_EQUAL;
120 : else
121 0 : rEntry.eOp = SC_GREATER;
122 : }
123 0 : else if (p[0] == sal_Unicode('='))
124 0 : rEntry.eOp = SC_EQUAL;
125 :
126 : }
127 :
128 0 : if (bValid)
129 : {
130 : // Finally, the right-hand-side value in the 4th column.
131 0 : rEntry.GetQueryItem().maString = pQueryRef->getString(3, nRow);
132 0 : rEntry.bDoQuery = true;
133 : }
134 0 : nIndex++;
135 0 : nRow++;
136 : }
137 : while (bValid && (nRow < nRows) /* && (nIndex < MAXQUERY) */ );
138 0 : return bValid;
139 : }
140 :
141 8 : bool lcl_createExcelQuery(
142 : ScQueryParamBase* pParam, const ScDBRangeBase* pDBRef, const ScDBRangeBase* pQueryRef)
143 : {
144 8 : bool bValid = true;
145 8 : SCCOL nCols = pQueryRef->getColSize();
146 8 : SCROW nRows = pQueryRef->getRowSize();
147 8 : vector<SCCOL> aFields(nCols);
148 8 : SCCOL nCol = 0;
149 40 : while (bValid && (nCol < nCols))
150 : {
151 24 : OUString aQueryStr = pQueryRef->getString(nCol, 0);
152 24 : SCCOL nField = pDBRef->findFieldColumn(aQueryStr);
153 24 : if (ValidCol(nField))
154 24 : aFields[nCol] = nField;
155 : else
156 0 : bValid = false;
157 24 : ++nCol;
158 24 : }
159 :
160 8 : if (bValid)
161 : {
162 : // Count the number of visible cells (excluding the header row). Each
163 : // visible cell corresponds with a single query.
164 8 : SCSIZE nVisible = pQueryRef->getVisibleDataCellCount();
165 8 : if ( nVisible > SCSIZE_MAX / sizeof(void*) )
166 : {
167 : OSL_FAIL("zu viele Filterkritierien");
168 0 : nVisible = 0;
169 : }
170 :
171 8 : SCSIZE nNewEntries = nVisible;
172 8 : pParam->Resize( nNewEntries );
173 :
174 8 : SCSIZE nIndex = 0;
175 8 : SCROW nRow = 1;
176 8 : String aCellStr;
177 24 : while (nRow < nRows)
178 : {
179 8 : nCol = 0;
180 40 : while (nCol < nCols)
181 : {
182 24 : aCellStr = pQueryRef->getString(nCol, nRow);
183 24 : aCellStr = ScGlobal::pCharClass->uppercase( aCellStr );
184 24 : if (aCellStr.Len() > 0)
185 : {
186 12 : if (nIndex < nNewEntries)
187 : {
188 12 : pParam->GetEntry(nIndex).nField = aFields[nCol];
189 12 : pParam->FillInExcelSyntax(rtl::OUString(aCellStr), nIndex);
190 12 : nIndex++;
191 12 : if (nIndex < nNewEntries)
192 12 : pParam->GetEntry(nIndex).eConnect = SC_AND;
193 : }
194 : else
195 0 : bValid = false;
196 : }
197 24 : nCol++;
198 : }
199 8 : nRow++;
200 8 : if (nIndex < nNewEntries)
201 8 : pParam->GetEntry(nIndex).eConnect = SC_OR;
202 8 : }
203 : }
204 8 : return bValid;
205 : }
206 :
207 8 : bool lcl_fillQueryEntries(
208 : ScQueryParamBase* pParam, const ScDBRangeBase* pDBRef, const ScDBRangeBase* pQueryRef)
209 : {
210 8 : SCSIZE nCount = pParam->GetEntryCount();
211 72 : for (SCSIZE i = 0; i < nCount; ++i)
212 64 : pParam->GetEntry(i).Clear();
213 :
214 : // Standard QueryTabelle
215 8 : bool bValid = lcl_createStarQuery(pParam, pDBRef, pQueryRef);
216 : // Excel QueryTabelle
217 8 : if (!bValid)
218 8 : bValid = lcl_createExcelQuery(pParam, pDBRef, pQueryRef);
219 :
220 8 : nCount = pParam->GetEntryCount();
221 8 : if (bValid)
222 : {
223 : // bQueryByString muss gesetzt sein
224 72 : for (SCSIZE i = 0; i < nCount; ++i)
225 64 : pParam->GetEntry(i).GetQueryItem().meType = ScQueryEntry::ByString;
226 : }
227 : else
228 : {
229 : // nix
230 0 : for (SCSIZE i = 0; i < nCount; ++i)
231 0 : pParam->GetEntry(i).Clear();
232 : }
233 8 : return bValid;
234 : }
235 :
236 : }
237 :
238 : // ============================================================================
239 :
240 16 : ScDBRangeBase::ScDBRangeBase(ScDocument* pDoc, RefType eType) :
241 16 : mpDoc(pDoc), meType(eType)
242 : {
243 16 : }
244 :
245 16 : ScDBRangeBase::~ScDBRangeBase()
246 : {
247 16 : }
248 :
249 8 : bool ScDBRangeBase::fillQueryEntries(ScQueryParamBase* pParam, const ScDBRangeBase* pDBRef) const
250 : {
251 8 : if (!pDBRef)
252 0 : return false;
253 :
254 8 : return lcl_fillQueryEntries(pParam, pDBRef, this);
255 : }
256 :
257 8 : void ScDBRangeBase::fillQueryOptions(ScQueryParamBase* pParam)
258 : {
259 8 : pParam->bHasHeader = true;
260 8 : pParam->bByRow = true;
261 8 : pParam->bInplace = true;
262 8 : pParam->bCaseSens = false;
263 8 : pParam->bRegExp = false;
264 8 : pParam->bDuplicate = true;
265 8 : }
266 :
267 96 : ScDocument* ScDBRangeBase::getDoc() const
268 : {
269 96 : return mpDoc;
270 : }
271 :
272 : // ============================================================================
273 :
274 16 : ScDBInternalRange::ScDBInternalRange(ScDocument* pDoc, const ScRange& rRange) :
275 16 : ScDBRangeBase(pDoc, INTERNAL), maRange(rRange)
276 : {
277 16 : }
278 :
279 32 : ScDBInternalRange::~ScDBInternalRange()
280 : {
281 32 : }
282 :
283 12 : const ScRange& ScDBInternalRange::getRange() const
284 : {
285 12 : return maRange;
286 : }
287 :
288 24 : SCCOL ScDBInternalRange::getColSize() const
289 : {
290 24 : return maRange.aEnd.Col() - maRange.aStart.Col() + 1;
291 : }
292 :
293 16 : SCROW ScDBInternalRange::getRowSize() const
294 : {
295 16 : return maRange.aEnd.Row() - maRange.aStart.Row() + 1;
296 : }
297 :
298 8 : SCSIZE ScDBInternalRange::getVisibleDataCellCount() const
299 : {
300 8 : SCCOL nCols = getColSize();
301 8 : SCROW nRows = getRowSize();
302 8 : if (nRows <= 1)
303 0 : return 0;
304 :
305 8 : return (nRows-1)*nCols;
306 : }
307 :
308 48 : OUString ScDBInternalRange::getString(SCCOL nCol, SCROW nRow) const
309 : {
310 48 : OUString aStr;
311 48 : const ScAddress& s = maRange.aStart;
312 : // #i109200# this is used in formula calculation, use GetInputString, not GetString
313 : // (consistent with ScDBInternalRange::getCellString)
314 : // GetStringForFormula is not used here, to allow querying for date values.
315 48 : getDoc()->GetInputString(s.Col() + nCol, s.Row() + nRow, maRange.aStart.Tab(), aStr);
316 48 : return aStr;
317 : }
318 :
319 8 : SCCOL ScDBInternalRange::getFirstFieldColumn() const
320 : {
321 8 : return getRange().aStart.Col();
322 : }
323 :
324 4 : SCCOL ScDBInternalRange::findFieldColumn(SCCOL nIndex) const
325 : {
326 4 : const ScRange& rRange = getRange();
327 4 : const ScAddress& s = rRange.aStart;
328 :
329 4 : SCCOL nDBCol1 = s.Col();
330 :
331 : // Don't handle out-of-bound condition here. We'll do that later.
332 4 : return nIndex + nDBCol1 - 1;
333 : }
334 :
335 24 : SCCOL ScDBInternalRange::findFieldColumn(const OUString& rStr, sal_uInt16* pErr) const
336 : {
337 24 : const ScAddress& s = maRange.aStart;
338 24 : const ScAddress& e = maRange.aEnd;
339 24 : OUString aUpper = rStr;
340 24 : lcl_uppercase(aUpper);
341 :
342 24 : SCCOL nDBCol1 = s.Col();
343 24 : SCROW nDBRow1 = s.Row();
344 24 : SCTAB nDBTab1 = s.Tab();
345 24 : SCCOL nDBCol2 = e.Col();
346 :
347 24 : SCCOL nField = nDBCol1;
348 24 : sal_Bool bFound = sal_False;
349 :
350 24 : OUString aCellStr;
351 24 : ScAddress aLook( nDBCol1, nDBRow1, nDBTab1 );
352 96 : while (!bFound && (aLook.Col() <= nDBCol2))
353 : {
354 48 : sal_uInt16 nErr = getDoc()->GetStringForFormula( aLook, aCellStr );
355 48 : if (pErr)
356 0 : *pErr = nErr;
357 48 : lcl_uppercase(aCellStr);
358 48 : bFound = ScGlobal::GetpTransliteration()->isEqual(aCellStr, aUpper);
359 48 : if (!bFound)
360 24 : aLook.IncCol();
361 : }
362 24 : nField = aLook.Col();
363 :
364 24 : return bFound ? nField : -1;
365 : }
366 :
367 8 : ScDBQueryParamBase* ScDBInternalRange::createQueryParam(const ScDBRangeBase* pQueryRef) const
368 : {
369 8 : auto_ptr<ScDBQueryParamInternal> pParam(new ScDBQueryParamInternal);
370 :
371 : // Set the database range first.
372 8 : const ScAddress& s = maRange.aStart;
373 8 : const ScAddress& e = maRange.aEnd;
374 8 : pParam->nCol1 = s.Col();
375 8 : pParam->nRow1 = s.Row();
376 8 : pParam->nCol2 = e.Col();
377 8 : pParam->nRow2 = e.Row();
378 8 : pParam->nTab = s.Tab();
379 :
380 8 : fillQueryOptions(pParam.get());
381 :
382 : // Now construct the query entries from the query range.
383 8 : if (!pQueryRef->fillQueryEntries(pParam.get(), this))
384 0 : return NULL;
385 :
386 8 : return pParam.release();
387 : }
388 :
389 0 : bool ScDBInternalRange::isRangeEqual(const ScRange& rRange) const
390 : {
391 0 : return maRange == rRange;
392 : }
393 :
394 : // ============================================================================
395 :
396 0 : ScDBExternalRange::ScDBExternalRange(ScDocument* pDoc, const ScMatrixRef& pMat) :
397 0 : ScDBRangeBase(pDoc, EXTERNAL), mpMatrix(pMat)
398 : {
399 : SCSIZE nC, nR;
400 0 : mpMatrix->GetDimensions(nC, nR);
401 0 : mnCols = static_cast<SCCOL>(nC);
402 0 : mnRows = static_cast<SCROW>(nR);
403 0 : }
404 :
405 0 : ScDBExternalRange::~ScDBExternalRange()
406 : {
407 0 : }
408 :
409 0 : SCCOL ScDBExternalRange::getColSize() const
410 : {
411 0 : return mnCols;
412 : }
413 :
414 0 : SCROW ScDBExternalRange::getRowSize() const
415 : {
416 0 : return mnRows;
417 : }
418 :
419 0 : SCSIZE ScDBExternalRange::getVisibleDataCellCount() const
420 : {
421 0 : SCCOL nCols = getColSize();
422 0 : SCROW nRows = getRowSize();
423 0 : if (nRows <= 1)
424 0 : return 0;
425 :
426 0 : return (nRows-1)*nCols;
427 : }
428 :
429 0 : OUString ScDBExternalRange::getString(SCCOL nCol, SCROW nRow) const
430 : {
431 0 : if (nCol >= mnCols || nRow >= mnRows)
432 0 : return OUString();
433 :
434 0 : return mpMatrix->GetString(nCol, nRow);
435 : }
436 :
437 0 : SCCOL ScDBExternalRange::getFirstFieldColumn() const
438 : {
439 0 : return 0;
440 : }
441 :
442 0 : SCCOL ScDBExternalRange::findFieldColumn(SCCOL nIndex) const
443 : {
444 0 : return nIndex - 1;
445 : }
446 :
447 0 : SCCOL ScDBExternalRange::findFieldColumn(const OUString& rStr, sal_uInt16* pErr) const
448 : {
449 0 : if (pErr)
450 0 : pErr = 0;
451 :
452 0 : OUString aUpper = rStr;
453 0 : lcl_uppercase(aUpper);
454 0 : for (SCCOL i = 0; i < mnCols; ++i)
455 : {
456 0 : OUString aUpperVal = mpMatrix->GetString(i, 0);
457 0 : lcl_uppercase(aUpperVal);
458 0 : if (aUpper.equals(aUpperVal))
459 0 : return i;
460 0 : }
461 0 : return -1;
462 : }
463 :
464 0 : ScDBQueryParamBase* ScDBExternalRange::createQueryParam(const ScDBRangeBase* pQueryRef) const
465 : {
466 0 : auto_ptr<ScDBQueryParamMatrix> pParam(new ScDBQueryParamMatrix);
467 0 : pParam->mpMatrix = mpMatrix;
468 0 : fillQueryOptions(pParam.get());
469 :
470 : // Now construct the query entries from the query range.
471 0 : if (!pQueryRef->fillQueryEntries(pParam.get(), this))
472 0 : return NULL;
473 :
474 0 : return pParam.release();
475 : }
476 :
477 0 : bool ScDBExternalRange::isRangeEqual(const ScRange& /*rRange*/) const
478 : {
479 0 : return false;
480 : }
481 :
482 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|