LibreOffice Module sc (master) 1
segmenttree.hxx
Go to the documentation of this file.
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#pragma once
21
22#include "types.hxx"
23#include <rtl/string.hxx>
24
25#include <memory>
26
28
30{
31public:
32 struct RangeData
33 {
36 bool mbValue;
37 };
38
40 {
41 public:
43
44 [[nodiscard]] bool getValue(SCROW nPos, bool& rVal);
45 SCROW getLastPos() const { return mnLastPos; }
46
47 private:
49
53 };
54
56 {
57 public:
58 explicit RangeIterator(ScFlatBoolRowSegments const& rSegs);
59 bool getFirst(RangeData& rRange);
60 bool getNext(RangeData& rRange);
61
62 private:
64 };
65
69
70 bool setTrue(SCROW nRow1, SCROW nRow2);
71 bool setFalse(SCROW nRow1, SCROW nRow2);
72 bool getRangeData(SCROW nRow, RangeData& rData) const;
73 bool getRangeDataLeaf(SCROW nRow, RangeData& rData);
74 void removeSegment(SCROW nRow1, SCROW nRow2);
75 void insertSegment(SCROW nRow, SCROW nSize);
76
77 SCROW findLastTrue() const;
78
79 // Builds internal data (so that it doesn't build them while used in threads).
80 void makeReady();
81
82 OString dumpAsString();
83
84private:
85 ::std::unique_ptr<ScFlatBoolSegmentsImpl> mpImpl;
86};
87
89{
90public:
91 struct RangeData
92 {
95 bool mbValue;
96 };
100
101 bool setTrue(SCCOL nCol1, SCCOL nCol2);
102 bool setFalse(SCCOL nCol1, SCCOL nCol2);
103 bool getRangeData(SCCOL nCol, RangeData& rData);
104 void removeSegment(SCCOL nCol1, SCCOL nCol2);
105 void insertSegment(SCCOL nCol, SCCOL nSize);
106
107 // Builds internal data (so that it doesn't build them while used in threads).
108 void makeReady();
109
110 OString dumpAsString();
111
112private:
113 ::std::unique_ptr<ScFlatBoolSegmentsImpl> mpImpl;
114};
115
117
119{
120public:
122 {
125 sal_uInt16 mnValue;
126 };
127
129 {
130 public:
132
133 bool getValue(SCROW nPos, sal_uInt16& rVal);
134 SCROW getLastPos() const { return mnLastPos; }
135
136 private:
138
141 sal_uInt16 mnCurValue;
142 };
143
144 ScFlatUInt16RowSegments(SCROW nMaxRow, sal_uInt16 nDefault);
147
148 void setValue(SCROW nRow1, SCROW nRow2, sal_uInt16 nValue);
149 void setValueIf(SCROW nRow1, SCROW nRow2, sal_uInt16 nValue,
150 const std::function<bool(sal_uInt16)>& rPredicate);
151 sal_uInt16 getValue(SCROW nRow);
152 sal_uInt64 getSumValue(SCROW nRow1, SCROW nRow2);
153 bool getRangeData(SCROW nRow, RangeData& rData);
154 void removeSegment(SCROW nRow1, SCROW nRow2);
155 void insertSegment(SCROW nRow, SCROW nSize);
156
157 SCROW findLastTrue(sal_uInt16 nValue) const;
158
159 void enableTreeSearch(bool bEnable);
160
161 // Builds internal data (so that it doesn't build them while used in threads).
162 void makeReady();
163
164 OString dumpAsString();
165
166private:
167 ::std::unique_ptr<ScFlatUInt16SegmentsImpl> mpImpl;
168};
169
170/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
void removeSegment(SCCOL nCol1, SCCOL nCol2)
bool setFalse(SCCOL nCol1, SCCOL nCol2)
bool setTrue(SCCOL nCol1, SCCOL nCol2)
bool getRangeData(SCCOL nCol, RangeData &rData)
::std::unique_ptr< ScFlatBoolSegmentsImpl > mpImpl
void insertSegment(SCCOL nCol, SCCOL nSize)
ScFlatBoolColSegments(SCCOL nMaxCol)
ForwardIterator(ScFlatBoolRowSegments &rSegs)
bool getValue(SCROW nPos, bool &rVal)
RangeIterator(ScFlatBoolRowSegments const &rSegs)
ScFlatBoolRowSegments const & mrSegs
Definition: segmenttree.hxx:63
bool getFirst(RangeData &rRange)
bool getNext(RangeData &rRange)
void removeSegment(SCROW nRow1, SCROW nRow2)
void insertSegment(SCROW nRow, SCROW nSize)
bool setFalse(SCROW nRow1, SCROW nRow2)
ScFlatBoolRowSegments(SCROW nMaxRow)
bool setTrue(SCROW nRow1, SCROW nRow2)
bool getRangeDataLeaf(SCROW nRow, RangeData &rData)
SCROW findLastTrue() const
bool getRangeData(SCROW nRow, RangeData &rData) const
::std::unique_ptr< ScFlatBoolSegmentsImpl > mpImpl
Definition: segmenttree.hxx:85
ForwardIterator(ScFlatUInt16RowSegments &rSegs)
bool getValue(SCROW nPos, sal_uInt16 &rVal)
bool getRangeData(SCROW nRow, RangeData &rData)
void setValueIf(SCROW nRow1, SCROW nRow2, sal_uInt16 nValue, const std::function< bool(sal_uInt16)> &rPredicate)
void enableTreeSearch(bool bEnable)
sal_uInt16 getValue(SCROW nRow)
sal_uInt64 getSumValue(SCROW nRow1, SCROW nRow2)
::std::unique_ptr< ScFlatUInt16SegmentsImpl > mpImpl
void removeSegment(SCROW nRow1, SCROW nRow2)
void insertSegment(SCROW nRow, SCROW nSize)
SCROW findLastTrue(sal_uInt16 nValue) const
ScFlatUInt16RowSegments(SCROW nMaxRow, sal_uInt16 nDefault)
void setValue(SCROW nRow1, SCROW nRow2, sal_uInt16 nValue)
sal_uInt16 nPos
sal_Int16 SCCOL
Definition: types.hxx:21
sal_Int32 SCROW
Definition: types.hxx:17