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 "scitems.hxx"
21 : #include <svl/intitem.hxx>
22 : #include <svl/zforlist.hxx>
23 : #include <float.h>
24 :
25 : #include "chartarr.hxx"
26 : #include "document.hxx"
27 : #include "rechead.hxx"
28 : #include "globstr.hrc"
29 : #include "formulacell.hxx"
30 : #include "docoptio.hxx"
31 :
32 : #include <vector>
33 :
34 : using ::std::vector;
35 :
36 36 : ScMemChart::ScMemChart(SCCOL nCols, SCROW nRows)
37 : {
38 36 : nRowCnt = nRows;
39 36 : nColCnt = nCols;
40 36 : pData = new double[nColCnt * nRowCnt];
41 :
42 36 : if (pData)
43 : {
44 36 : double *pFill = pData;
45 :
46 108 : for (SCCOL i = 0; i < nColCnt; i++)
47 536 : for (SCROW j = 0; j < nRowCnt; j++)
48 464 : *(pFill ++) = 0.0;
49 : }
50 :
51 36 : pColText = new OUString[nColCnt];
52 36 : pRowText = new OUString[nRowCnt];
53 36 : }
54 :
55 36 : ScMemChart::~ScMemChart()
56 : {
57 36 : delete[] pRowText;
58 36 : delete[] pColText;
59 36 : delete[] pData;
60 36 : }
61 :
62 0 : ScChartArray::ScChartArray( ScDocument* pDoc, SCTAB nTab,
63 : SCCOL nStartColP, SCROW nStartRowP, SCCOL nEndColP, SCROW nEndRowP,
64 : const OUString& rChartName ) :
65 : aName( rChartName ),
66 : pDocument( pDoc ),
67 : aPositioner(pDoc, nTab, nStartColP, nStartRowP, nEndColP, nEndRowP),
68 0 : bValid( true )
69 : {
70 0 : }
71 :
72 52 : ScChartArray::ScChartArray(
73 : ScDocument* pDoc, const ScRangeListRef& rRangeList, const OUString& rChartName ) :
74 : aName( rChartName ),
75 : pDocument( pDoc ),
76 : aPositioner(pDoc, rRangeList),
77 52 : bValid( true ) {}
78 :
79 0 : ScChartArray::ScChartArray( const ScChartArray& rArr ) :
80 : aName(rArr.aName),
81 : pDocument(rArr.pDocument),
82 : aPositioner(rArr.aPositioner),
83 0 : bValid(rArr.bValid) {}
84 :
85 52 : ScChartArray::~ScChartArray() {}
86 :
87 0 : bool ScChartArray::operator==(const ScChartArray& rCmp) const
88 : {
89 0 : return aPositioner == rCmp.aPositioner
90 0 : && aName == rCmp.aName;
91 : }
92 :
93 36 : ScMemChart* ScChartArray::CreateMemChart()
94 : {
95 36 : ScRangeListRef aRangeListRef(GetRangeList());
96 36 : size_t nCount = aRangeListRef->size();
97 36 : if ( nCount > 1 )
98 20 : return CreateMemChartMulti();
99 16 : else if ( nCount == 1 )
100 : {
101 16 : ScRange* pR = aRangeListRef->front();
102 16 : if ( pR->aStart.Tab() != pR->aEnd.Tab() )
103 0 : return CreateMemChartMulti();
104 : else
105 16 : return CreateMemChartSingle();
106 : }
107 : else
108 0 : return CreateMemChartMulti(); // Can handle 0 range better than Single
109 : }
110 :
111 : namespace {
112 :
113 464 : double getCellValue( ScDocument& rDoc, const ScAddress& rPos, double fDefault, bool bCalcAsShown )
114 : {
115 464 : double fRet = fDefault;
116 :
117 464 : CellType eType = rDoc.GetCellType(rPos);
118 464 : switch (eType)
119 : {
120 : case CELLTYPE_VALUE:
121 : {
122 260 : fRet = rDoc.GetValue(rPos);
123 260 : if (bCalcAsShown && fRet != 0.0)
124 : {
125 0 : sal_uInt32 nFormat = rDoc.GetNumberFormat(rPos);
126 0 : fRet = rDoc.RoundValueAsShown(fRet, nFormat);
127 : }
128 : }
129 260 : break;
130 : case CELLTYPE_FORMULA:
131 : {
132 0 : ScFormulaCell* pFCell = rDoc.GetFormulaCell(rPos);
133 0 : if (pFCell && !pFCell->GetErrCode() && pFCell->IsValue())
134 0 : fRet = pFCell->GetValue();
135 : }
136 0 : break;
137 : default:
138 : ;
139 : }
140 464 : return fRet;
141 : }
142 :
143 : }
144 :
145 16 : ScMemChart* ScChartArray::CreateMemChartSingle()
146 : {
147 : SCSIZE nCol;
148 : SCSIZE nRow;
149 :
150 : // real size (without hidden rows/columns)
151 :
152 16 : SCCOL nColAdd = HasRowHeaders() ? 1 : 0;
153 16 : SCROW nRowAdd = HasColHeaders() ? 1 : 0;
154 :
155 : SCCOL nCol1;
156 : SCROW nRow1;
157 : SCTAB nTab1;
158 : SCCOL nCol2;
159 : SCROW nRow2;
160 : SCTAB nTab2;
161 16 : ScRangeListRef aRangeListRef(GetRangeList());
162 16 : aRangeListRef->front()->GetVars( nCol1, nRow1, nTab1, nCol2, nRow2, nTab2 );
163 :
164 16 : SCCOL nStrCol = nCol1; // remember for labeling
165 16 : SCROW nStrRow = nRow1;
166 : // Skip hidden columns.
167 : // TODO: make use of last column value once implemented.
168 16 : SCCOL nLastCol = -1;
169 32 : while (pDocument->ColHidden(nCol1, nTab1, NULL, &nLastCol))
170 0 : ++nCol1;
171 :
172 : // Skip hidden rows.
173 16 : SCROW nLastRow = -1;
174 16 : if (pDocument->RowHidden(nRow1, nTab1, NULL, &nLastRow))
175 0 : nRow1 = nLastRow + 1;
176 :
177 : // if everything is hidden then the label remains at the beginning
178 16 : if ( nCol1 <= nCol2 )
179 : {
180 16 : nStrCol = nCol1;
181 16 : nCol1 = sal::static_int_cast<SCCOL>( nCol1 + nColAdd );
182 : }
183 16 : if ( nRow1 <= nRow2 )
184 : {
185 16 : nStrRow = nRow1;
186 16 : nRow1 = sal::static_int_cast<SCROW>( nRow1 + nRowAdd );
187 : }
188 :
189 16 : SCSIZE nTotalCols = ( nCol1 <= nCol2 ? nCol2 - nCol1 + 1 : 0 );
190 32 : vector<SCCOL> aCols;
191 16 : aCols.reserve(nTotalCols);
192 64 : for (SCSIZE i=0; i<nTotalCols; i++)
193 : {
194 48 : SCCOL nThisCol = sal::static_int_cast<SCCOL>(nCol1+i);
195 48 : if (!pDocument->ColHidden(nThisCol, nTab1, NULL, &nLastCol))
196 48 : aCols.push_back(nThisCol);
197 : }
198 16 : SCSIZE nColCount = aCols.size();
199 :
200 16 : SCSIZE nTotalRows = ( nRow1 <= nRow2 ? nRow2 - nRow1 + 1 : 0 );
201 32 : vector<SCROW> aRows;
202 16 : aRows.reserve(nTotalRows);
203 16 : if (nRow1 <= nRow2)
204 : {
205 : // Get all visible rows between nRow1 and nRow2.
206 16 : SCROW nThisRow = nRow1;
207 96 : while (nThisRow <= nRow2)
208 : {
209 64 : if (pDocument->RowHidden(nThisRow, nTab1, NULL, &nLastRow))
210 0 : nThisRow = nLastRow;
211 : else
212 64 : aRows.push_back(nThisRow);
213 64 : ++nThisRow;
214 : }
215 : }
216 16 : SCSIZE nRowCount = aRows.size();
217 :
218 : // May happen at least with more than 32k rows.
219 16 : if (nColCount > SHRT_MAX || nRowCount > SHRT_MAX)
220 : {
221 0 : nColCount = 0;
222 0 : nRowCount = 0;
223 : }
224 :
225 16 : bool bValidData = true;
226 16 : if ( !nColCount )
227 : {
228 0 : bValidData = false;
229 0 : nColCount = 1;
230 0 : aCols.push_back(nStrCol);
231 : }
232 16 : if ( !nRowCount )
233 : {
234 0 : bValidData = false;
235 0 : nRowCount = 1;
236 0 : aRows.push_back(nStrRow);
237 : }
238 :
239 : // Data
240 16 : ScMemChart* pMemChart = new ScMemChart( nColCount, nRowCount );
241 16 : if (pMemChart)
242 : {
243 16 : if ( bValidData )
244 : {
245 16 : bool bCalcAsShown = pDocument->GetDocOptions().IsCalcAsShown();
246 64 : for (nCol=0; nCol<nColCount; nCol++)
247 : {
248 240 : for (nRow=0; nRow<nRowCount; nRow++)
249 : {
250 : // DBL_MIN is a Hack for Chart to recognize empty cells.
251 192 : ScAddress aPos(aCols[nCol], aRows[nRow], nTab1);
252 192 : double nVal = getCellValue(*pDocument, aPos, DBL_MIN, bCalcAsShown);
253 192 : pMemChart->SetData(nCol, nRow, nVal);
254 : }
255 : }
256 : }
257 : else
258 : {
259 : // Flag marking data as invalid?
260 0 : for (nCol=0; nCol<nColCount; nCol++)
261 0 : for (nRow=0; nRow<nRowCount; nRow++)
262 0 : pMemChart->SetData( nCol, nRow, DBL_MIN );
263 : }
264 :
265 : // Column Header
266 :
267 64 : for (nCol=0; nCol<nColCount; nCol++)
268 : {
269 48 : OUString aString;
270 48 : if (HasColHeaders())
271 48 : aString = pDocument->GetString(aCols[nCol], nStrRow, nTab1);
272 48 : if (aString.isEmpty())
273 : {
274 42 : OUStringBuffer aBuf;
275 42 : aBuf.append(ScGlobal::GetRscString(STR_COLUMN));
276 42 : aBuf.append(' ');
277 :
278 42 : ScAddress aPos( aCols[ nCol ], 0, 0 );
279 42 : aBuf.append(aPos.Format(SCA_VALID_COL, NULL));
280 :
281 42 : aString = aBuf.makeStringAndClear();
282 : }
283 48 : pMemChart->SetColText( nCol, aString);
284 48 : }
285 :
286 : // Row Header
287 :
288 80 : for (nRow=0; nRow<nRowCount; nRow++)
289 : {
290 64 : OUString aString;
291 64 : if (HasRowHeaders())
292 : {
293 64 : ScAddress aAddr( nStrCol, aRows[nRow], nTab1 );
294 64 : aString = pDocument->GetString(nStrCol, aRows[nRow], nTab1);
295 : }
296 64 : if (aString.isEmpty())
297 : {
298 40 : OUStringBuffer aBuf;
299 40 : aBuf.append(ScGlobal::GetRscString(STR_ROW));
300 40 : aBuf.append(' ');
301 40 : aBuf.append(static_cast<sal_Int32>(aRows[nRow]+1));
302 40 : aString = aBuf.makeStringAndClear();
303 : }
304 64 : pMemChart->SetRowText( nRow, aString);
305 64 : }
306 : }
307 :
308 32 : return pMemChart;
309 : }
310 :
311 20 : ScMemChart* ScChartArray::CreateMemChartMulti()
312 : {
313 20 : SCSIZE nColCount = GetPositionMap()->GetColCount();
314 20 : SCSIZE nRowCount = GetPositionMap()->GetRowCount();
315 :
316 : // May happen at least with more than 32k rows.
317 20 : if (nColCount > SHRT_MAX || nRowCount > SHRT_MAX)
318 : {
319 0 : nColCount = 0;
320 0 : nRowCount = 0;
321 : }
322 :
323 20 : bool bValidData = true;
324 20 : if ( !nColCount )
325 : {
326 0 : bValidData = false;
327 0 : nColCount = 1;
328 : }
329 20 : if ( !nRowCount )
330 : {
331 0 : bValidData = false;
332 0 : nRowCount = 1;
333 : }
334 :
335 : // Data
336 20 : ScMemChart* pMemChart = new ScMemChart( nColCount, nRowCount );
337 20 : if (pMemChart)
338 : {
339 20 : SCSIZE nCol = 0;
340 20 : SCSIZE nRow = 0;
341 20 : bool bCalcAsShown = pDocument->GetDocOptions().IsCalcAsShown();
342 20 : sal_uLong nIndex = 0;
343 20 : if (bValidData)
344 : {
345 44 : for ( nCol = 0; nCol < nColCount; nCol++ )
346 : {
347 296 : for ( nRow = 0; nRow < nRowCount; nRow++, nIndex++ )
348 : {
349 272 : double nVal = DBL_MIN; // Hack for Chart to recognize empty cells
350 272 : const ScAddress* pPos = GetPositionMap()->GetPosition( nIndex );
351 272 : if (pPos)
352 : // otherwise: Gap
353 272 : nVal = getCellValue(*pDocument, *pPos, DBL_MIN, bCalcAsShown);
354 :
355 272 : pMemChart->SetData(nCol, nRow, nVal);
356 : }
357 : }
358 : }
359 : else
360 : {
361 0 : for ( nRow = 0; nRow < nRowCount; nRow++, nIndex++ )
362 : {
363 0 : double nVal = DBL_MIN; // Hack for Chart to recognize empty cells
364 0 : const ScAddress* pPos = GetPositionMap()->GetPosition( nIndex );
365 0 : if (pPos)
366 : // otherwise: Gap
367 0 : nVal = getCellValue(*pDocument, *pPos, DBL_MIN, bCalcAsShown);
368 :
369 0 : pMemChart->SetData(nCol, nRow, nVal);
370 : }
371 : }
372 :
373 : //TODO: Label when gaps
374 :
375 : // Column header
376 :
377 20 : SCCOL nPosCol = 0;
378 44 : for ( nCol = 0; nCol < nColCount; nCol++ )
379 : {
380 24 : OUString aString;
381 24 : const ScAddress* pPos = GetPositionMap()->GetColHeaderPosition( static_cast<SCCOL>(nCol) );
382 24 : if ( HasColHeaders() && pPos )
383 16 : aString = pDocument->GetString(pPos->Col(), pPos->Row(), pPos->Tab());
384 :
385 24 : if (aString.isEmpty())
386 : {
387 8 : OUStringBuffer aBuf(ScGlobal::GetRscString(STR_COLUMN));
388 8 : aBuf.append(' ');
389 8 : if ( pPos )
390 8 : nPosCol = pPos->Col() + 1;
391 : else
392 0 : nPosCol++;
393 8 : ScAddress aPos( nPosCol - 1, 0, 0 );
394 8 : aBuf.append(aPos.Format(SCA_VALID_COL, NULL));
395 8 : aString = aBuf.makeStringAndClear();
396 : }
397 24 : pMemChart->SetColText( nCol, aString);
398 24 : }
399 :
400 : // Row header
401 :
402 20 : SCROW nPosRow = 0;
403 244 : for ( nRow = 0; nRow < nRowCount; nRow++ )
404 : {
405 224 : OUString aString;
406 224 : const ScAddress* pPos = GetPositionMap()->GetRowHeaderPosition( nRow );
407 224 : if ( HasRowHeaders() && pPos )
408 176 : aString = pDocument->GetString(pPos->Col(), pPos->Row(), pPos->Tab());
409 :
410 224 : if (aString.isEmpty())
411 : {
412 48 : OUStringBuffer aBuf(ScGlobal::GetRscString(STR_ROW));
413 48 : aBuf.append(' ');
414 48 : if ( pPos )
415 48 : nPosRow = pPos->Row() + 1;
416 : else
417 0 : nPosRow++;
418 48 : aBuf.append(static_cast<sal_Int32>(nPosRow));
419 48 : aString = aBuf.makeStringAndClear();
420 : }
421 224 : pMemChart->SetRowText( nRow, aString);
422 224 : }
423 : }
424 :
425 20 : return pMemChart;
426 : }
427 :
428 4242 : ScChartCollection::ScChartCollection() {}
429 0 : ScChartCollection::ScChartCollection(const ScChartCollection& r) :
430 0 : maData(r.maData) {}
431 :
432 0 : void ScChartCollection::push_back(ScChartArray* p)
433 : {
434 0 : maData.push_back(p);
435 0 : }
436 :
437 0 : void ScChartCollection::clear()
438 : {
439 0 : maData.clear();
440 0 : }
441 :
442 0 : size_t ScChartCollection::size() const
443 : {
444 0 : return maData.size();
445 : }
446 :
447 0 : bool ScChartCollection::empty() const
448 : {
449 0 : return maData.empty();
450 : }
451 :
452 0 : ScChartArray* ScChartCollection::operator[](size_t nIndex)
453 : {
454 0 : if (maData.size() <= nIndex)
455 0 : return NULL;
456 0 : return &maData[nIndex];
457 : }
458 :
459 0 : const ScChartArray* ScChartCollection::operator[](size_t nIndex) const
460 : {
461 0 : if (maData.size() <= nIndex)
462 0 : return NULL;
463 0 : return &maData[nIndex];
464 : }
465 :
466 0 : bool ScChartCollection::operator==(const ScChartCollection& rCmp) const
467 : {
468 0 : return maData == rCmp.maData;
469 228 : }
470 :
471 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|