update credits
[LibreOffice.git] / sc / inc / dpfilteredcache.hxx
blobb601db0569a9a9d7fed4e4ffb516ce7a2ba6d9ec
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef SC_DPCACHETABLE_HXX
21 #define SC_DPCACHETABLE_HXX
23 #include "sal/types.h"
24 #include "osl/mutex.hxx"
25 #include "global.hxx"
26 #include "dpitemdata.hxx"
27 #include "dpmacros.hxx"
29 #include <vector>
30 #include <boost/unordered_set.hpp>
31 #include <boost/shared_ptr.hpp>
33 #include <mdds/flat_segment_tree.hpp>
35 class ScDPItemData;
36 class ScDPCache;
37 class ScDocument;
38 class ScRange;
39 struct ScDPValue;
40 struct ScQueryParam;
42 /**
43 * This class is only a wrapper to the actual cache, to provide filtering on
44 * the raw data based on the query filter and/or page field filters.
46 class SC_DLLPUBLIC ScDPFilteredCache
48 typedef mdds::flat_segment_tree<SCROW, bool> RowFlagType;
50 public:
51 /** interface class used for filtering of rows. */
52 class FilterBase
54 public:
55 virtual ~FilterBase() {}
56 /** returns true if the matching condition is met for a single cell
57 value, or false otherwise. */
58 virtual bool match( const ScDPItemData& rCellData ) const = 0;
60 virtual std::vector<ScDPItemData> getMatchValues() const = 0;
63 /** ordinary single-item filter. */
64 class SingleFilter : public FilterBase
66 public:
67 explicit SingleFilter(const ScDPItemData &rItem);
68 virtual ~SingleFilter() {}
70 virtual bool match(const ScDPItemData& rCellData) const;
71 virtual std::vector<ScDPItemData> getMatchValues() const;
72 const ScDPItemData& getMatchValue() const;
74 private:
75 explicit SingleFilter();
77 ScDPItemData maItem;
80 /** multi-item (group) filter. */
81 class GroupFilter : public FilterBase
83 public:
84 GroupFilter();
85 virtual ~GroupFilter() {}
86 virtual bool match(const ScDPItemData& rCellData) const;
87 virtual std::vector<ScDPItemData> getMatchValues() const;
88 void addMatchItem(const ScDPItemData& rItem);
89 size_t getMatchItemCount() const;
91 private:
92 ::std::vector<ScDPItemData> maItems;
95 /** single filtering criterion. */
96 struct Criterion
98 sal_Int32 mnFieldIndex;
99 ::boost::shared_ptr<FilterBase> mpFilter;
101 Criterion();
104 ScDPFilteredCache(const ScDPCache& rCache);
105 ~ScDPFilteredCache();
107 sal_Int32 getRowSize() const;
108 sal_Int32 getColSize() const;
110 const ScDPCache* getCache() const;
112 void fillTable(const ScQueryParam& rQuery, bool bIgnoreEmptyRows, bool bRepeatIfEmpty);
114 void fillTable();
116 /** Check whether a specified row is active or not. When a row is active,
117 it is used in calculation of the results data. A row becomes inactive
118 when it is filtered out by page field. */
119 bool isRowActive(sal_Int32 nRow, sal_Int32* pLastRow = NULL) const;
121 /** Set filter on/off flag to each row to control visibility. The caller
122 must ensure that the table is filled before calling this function. */
123 void filterByPageDimension(const ::std::vector<Criterion>& rCriteria, const ::boost::unordered_set<sal_Int32>& rRepeatIfEmptyDims);
125 /** Get the cell instance at specified location within the data grid. Note
126 that the data grid doesn't include the header row. Don't delete the
127 returned object! */
128 const ScDPItemData* getCell(SCCOL nCol, SCROW nRow, bool bRepeatIfEmpty) const;
129 void getValue( ScDPValue& rVal, SCCOL nCol, SCROW nRow, bool bRepeatIfEmpty) const;
130 OUString getFieldName(SCCOL nIndex) const;
132 /** Get the unique entries for a field specified by index. The caller must
133 make sure that the table is filled before calling function, or it will
134 get an empty collection. */
135 const ::std::vector<SCROW>& getFieldEntries( sal_Int32 nColumn ) const;
137 /** Filter the table based on the specified criteria, and copy the
138 result to rTabData. This method is used, for example, to generate
139 a drill-down data table. */
140 void filterTable(const ::std::vector<Criterion>& rCriteria,
141 ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > >& rTabData,
142 const ::boost::unordered_set<sal_Int32>& rRepeatIfEmptyDims);
144 SCROW getOrder(long nDim, SCROW nIndex) const;
145 void clear();
146 bool empty() const;
148 #if DEBUG_PIVOT_TABLE
149 void dumpRowFlag(const RowFlagType& rFlag) const;
150 void dump() const;
151 #endif
153 private:
154 ScDPFilteredCache();
155 ScDPFilteredCache(const ScDPFilteredCache&);
158 * Check if a given row meets all specified criteria.
160 * @param nRow index of row to be tested.
161 * @param rCriteria a list of criteria
163 bool isRowQualified(sal_Int32 nRow, const ::std::vector<Criterion>& rCriteria, const ::boost::unordered_set<sal_Int32>& rRepeatIfEmptyDims) const;
165 private:
167 /** unique field entires for each field (column). */
168 ::std::vector< ::std::vector<SCROW> > maFieldEntries;
170 /** Rows visible by standard filter query. */
171 RowFlagType maShowByFilter;
172 /** Rows visible by page dimension filtering. */
173 RowFlagType maShowByPage;
175 const ScDPCache& mrCache;
177 #endif
179 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */