1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776
|
/* This file is part of the KDE project
Copyright 2007 Stefan Nikolaus <stefan.nikolaus@kdemail.net>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "Filter.h"
#include <QList>
#include <QRect>
#include <KoXmlNS.h>
#include <KoXmlWriter.h>
#include "CellStorage.h"
#include "Database.h"
#include "Map.h"
#include "Region.h"
#include "Sheet.h"
#include "Value.h"
#include "ValueConverter.h"
#include "odf/SheetsOdf.h"
using namespace Calligra::Sheets;
class Calligra::Sheets::AbstractCondition
{
public:
virtual ~AbstractCondition() {}
enum Type { And, Or, Condition };
virtual Type type() const = 0;
virtual bool loadOdf(const KoXmlElement& element) = 0;
virtual void saveOdf(KoXmlWriter& xmlWriter) = 0;
virtual bool evaluate(const Database& database, int index) const = 0;
virtual bool isEmpty() const = 0;
virtual QHash<QString, Filter::Comparison> conditions(int fieldNumber) const = 0;
virtual void removeConditions(int fieldNumber) = 0;
virtual QString dump() const = 0;
static bool listsAreEqual(const QList<AbstractCondition*>& a, const QList<AbstractCondition*>& b);
};
/**
* OpenDocument, 8.7.2 Filter And
*/
class Filter::And : public AbstractCondition
{
public:
And() {}
And(const And& other);
And& operator=(const And& other);
~And() override {
qDeleteAll(list);
}
Type type() const override {
return AbstractCondition::And;
}
bool loadOdf(const KoXmlElement& parent) override;
void saveOdf(KoXmlWriter& xmlWriter) override {
if (!list.count())
return;
xmlWriter.startElement("table:filter-and");
for (int i = 0; i < list.count(); ++i)
list[i]->saveOdf(xmlWriter);
xmlWriter.endElement();
}
bool evaluate(const Database& database, int index) const override {
for (int i = 0; i < list.count(); ++i) {
// lazy evaluation, stop on first false
if (!list[i]->evaluate(database, index))
return false;
}
return true;
}
bool isEmpty() const override {
return list.isEmpty();
}
QHash<QString, Filter::Comparison> conditions(int fieldNumber) const override {
QHash<QString, Filter::Comparison> result;
for (int i = 0; i < list.count(); ++i)
result.unite(list[i]->conditions(fieldNumber));
return result;
}
void removeConditions(int fieldNumber) override {
QList<AbstractCondition*> newList;
for (int i = 0; i < list.count(); ++i) {
list[i]->removeConditions(fieldNumber);
if (!list[i]->isEmpty())
newList.append(list[i]);
else
delete list[i];
}
list = newList;
}
bool operator!=(const And& other) const {
return !listsAreEqual(list, other.list);
}
QString dump() const override {
QString result = "\t";
for (int i = 0; i < list.count(); ++i) {
if (i)
result += "AND\t";
result += list[i]->dump();
}
return result;
}
public:
QList<AbstractCondition*> list; // allowed: Or or Condition
};
/**
* OpenDocument, 8.7.3 Filter Or
*/
class Filter::Or : public AbstractCondition
{
public:
Or() {}
Or(const Or& other);
Or& operator=(const Or& other);
~Or() override {
qDeleteAll(list);
}
Type type() const override {
return AbstractCondition::Or;
}
bool loadOdf(const KoXmlElement& element) override;
void saveOdf(KoXmlWriter& xmlWriter) override {
if (!list.count())
return;
xmlWriter.startElement("table:filter-or");
for (int i = 0; i < list.count(); ++i)
list[i]->saveOdf(xmlWriter);
xmlWriter.endElement();
}
bool evaluate(const Database& database, int index) const override {
for (int i = 0; i < list.count(); ++i) {
// lazy evaluation, stop on first true
if (list[i]->evaluate(database, index))
return true;
}
return false;
}
bool isEmpty() const override {
return list.isEmpty();
}
QHash<QString, Filter::Comparison> conditions(int fieldNumber) const override {
QHash<QString, Filter::Comparison> result;
for (int i = 0; i < list.count(); ++i)
result.unite(list[i]->conditions(fieldNumber));
return result;
}
void removeConditions(int fieldNumber) override {
QList<AbstractCondition*> newList;
for (int i = 0; i < list.count(); ++i) {
list[i]->removeConditions(fieldNumber);
if (!list[i]->isEmpty())
newList.append(list[i]);
else
delete list[i];
}
list = newList;
}
bool operator!=(const Or& other) const {
return !listsAreEqual(list, other.list);
}
QString dump() const override {
QString result = "\t";
for (int i = 0; i < list.count(); ++i) {
if (i)
result += "OR\t";
result += list[i]->dump();
}
return result;
}
public:
QList<AbstractCondition*> list; // allowed: And or Condition
};
/**
* OpenDocument, 8.7.4 Filter Condition
*/
class Filter::Condition : public AbstractCondition
{
public:
Condition()
: fieldNumber(-1)
, operation(Match)
, caseSensitivity(Qt::CaseInsensitive)
, dataType(Text) {
}
Condition(int _fieldNumber, Comparison _comparison, const QString& _value,
Qt::CaseSensitivity _caseSensitivity, Mode _mode)
: fieldNumber(_fieldNumber)
, value(_value)
, operation(_comparison)
, caseSensitivity(_caseSensitivity)
, dataType(_mode) {
}
Condition(const Condition& other)
: AbstractCondition()
, fieldNumber(other.fieldNumber)
, value(other.value)
, operation(other.operation)
, caseSensitivity(other.caseSensitivity)
, dataType(other.dataType) {
}
Condition& operator=(const Condition& other);
~Condition() override {}
Type type() const override {
return AbstractCondition::Condition;
}
bool loadOdf(const KoXmlElement& element) override {
if (element.hasAttributeNS(KoXmlNS::table, "field-number")) {
bool ok = false;
fieldNumber = element.attributeNS(KoXmlNS::table, "field-number", QString()).toInt(&ok);
if (!ok || fieldNumber < 0)
return false;
}
if (element.hasAttributeNS(KoXmlNS::table, "value"))
value = element.attributeNS(KoXmlNS::table, "value", QString());
if (element.hasAttributeNS(KoXmlNS::table, "operator")) {
const QString string = element.attributeNS(KoXmlNS::table, "operator", QString());
if (string == "match")
operation = Match;
else if (string == "!match")
operation = NotMatch;
else if (string == "=")
operation = Equal;
else if (string == "!=")
operation = NotEqual;
else if (string == "<")
operation = Less;
else if (string == ">")
operation = Greater;
else if (string == "<=")
operation = LessOrEqual;
else if (string == ">=")
operation = GreaterOrEqual;
else if (string == "empty")
operation = Empty;
else if (string == "!empty")
operation = NotEmpty;
else if (string == "top values")
operation = TopValues;
else if (string == "bottom values")
operation = BottomValues;
else if (string == "top percent")
operation = TopPercent;
else if (string == "bottom percent")
operation = BottomPercent;
else {
debugSheets << "table:operator: unknown value";
return false;
}
}
if (element.hasAttributeNS(KoXmlNS::table, "case-sensitive")) {
if (element.attributeNS(KoXmlNS::table, "case-sensitive", "false") == "true")
caseSensitivity = Qt::CaseSensitive;
else
caseSensitivity = Qt::CaseInsensitive;
}
if (element.hasAttributeNS(KoXmlNS::table, "data-type")) {
if (element.attributeNS(KoXmlNS::table, "data-type", "text") == "number")
dataType = Number;
else
dataType = Text;
}
return true;
}
void saveOdf(KoXmlWriter& xmlWriter) override {
if (fieldNumber < 0)
return;
xmlWriter.startElement("table:filter-condition");
xmlWriter.addAttribute("table:field-number", fieldNumber);
xmlWriter.addAttribute("table:value", value);
switch (operation) {
case Match:
xmlWriter.addAttribute("table:operator", "match");
break;
case NotMatch:
xmlWriter.addAttribute("table:operator", "!match");
break;
case Equal:
xmlWriter.addAttribute("table:operator", "=");
break;
case NotEqual:
xmlWriter.addAttribute("table:operator", "!=");
break;
case Less:
xmlWriter.addAttribute("table:operator", "<");
break;
case Greater:
xmlWriter.addAttribute("table:operator", ">");
break;
case LessOrEqual:
xmlWriter.addAttribute("table:operator", "<=");
break;
case GreaterOrEqual:
xmlWriter.addAttribute("table:operator", ">=");
break;
case Empty:
xmlWriter.addAttribute("table:operator", "empty");
break;
case NotEmpty:
xmlWriter.addAttribute("table:operator", "!empty");
break;
case TopValues:
xmlWriter.addAttribute("table:operator", "top values");
break;
case BottomValues:
xmlWriter.addAttribute("table:operator", "bottom values");
break;
case TopPercent:
xmlWriter.addAttribute("table:operator", "top percent");
break;
case BottomPercent:
xmlWriter.addAttribute("table:operator", "bottom percent");
break;
}
if (caseSensitivity == Qt::CaseSensitive)
xmlWriter.addAttribute("table:case-sensitive", true);
if (dataType == Number)
xmlWriter.addAttribute("table:data-type", "number");
xmlWriter.endElement();
}
bool evaluate(const Database& database, int index) const override {
const Sheet* sheet = database.range().lastSheet();
const QRect range = database.range().lastRange();
const int start = database.orientation() == Qt::Vertical ? range.left() : range.top();
// debugSheets <<"index:" << index <<" start:" << start <<" fieldNumber:" << fieldNumber;
const Value value = database.orientation() == Qt::Vertical
? sheet->cellStorage()->value(start + fieldNumber, index)
: sheet->cellStorage()->value(index, start + fieldNumber);
const QString testString = sheet->map()->converter()->asString(value).asString();
switch (operation) {
case Match: {
const bool result = QString::compare(this->value, testString, caseSensitivity) == 0;
// debugSheets <<"Match" << this->value <<"?" << testString <<"" << result;
if (result)
return true;
break;
}
case NotMatch: {
const bool result = QString::compare(this->value, testString, caseSensitivity) != 0;
// debugSheets <<"Not Match" << this->value <<"?" << testString <<"" << result;
if (result)
return true;
break;
}
default:
break;
}
return false;
}
bool isEmpty() const override {
return fieldNumber == -1;
}
QHash<QString, Filter::Comparison> conditions(int fieldNumber) const override {
QHash<QString, Filter::Comparison> result;
if (this->fieldNumber == fieldNumber)
result.insert(value, operation);
return result;
}
void removeConditions(int fieldNumber) override {
if (this->fieldNumber == fieldNumber) {
// debugSheets <<"removing condition for fieldNumber" << fieldNumber;
this->fieldNumber = -1;
}
}
bool operator==(const Condition& other) const {
if (fieldNumber != other.fieldNumber)
return false;
if (value != other.value)
return false;
if (operation != other.operation)
return false;
if (caseSensitivity != other.caseSensitivity)
return false;
if (dataType != other.dataType)
return false;
return true;
}
bool operator!=(const Condition& other) const {
return !operator==(other);
}
QString dump() const override {
QString result = QString("fieldNumber: %1 ").arg(fieldNumber);
switch (operation) {
case Match: result += "Match"; break;
case NotMatch: result += "Not Match"; break;
default: break;
}
return result + " value: " + value + '\n';
}
public:
int fieldNumber;
QString value; // Value?
Comparison operation;
Qt::CaseSensitivity caseSensitivity;
Mode dataType;
};
Filter::And::And(const And& other)
: AbstractCondition()
{
for (int i = 0; i < other.list.count(); ++i) {
if (!other.list[i])
continue;
else if (other.list[i]->type() == AbstractCondition::And)
list.append(new Filter::And(*static_cast<Filter::And*>(other.list[i])));
else if (other.list[i]->type() == AbstractCondition::Or)
list.append(new Filter::Or(*static_cast<Filter::Or*>(other.list[i])));
else
list.append(new Filter::Condition(*static_cast<Filter::Condition*>(other.list[i])));
}
}
bool Filter::And::loadOdf(const KoXmlElement& parent)
{
KoXmlElement element;
AbstractCondition* condition;
forEachElement(element, parent) {
if (element.namespaceURI() != KoXmlNS::table)
continue;
if (element.localName() == "filter-or")
condition = new Filter::Or();
else if (element.localName() == "filter-condition")
condition = new Filter::Condition();
else
continue;
if (condition->loadOdf(element))
list.append(condition);
else
delete condition;
}
return !list.isEmpty();
}
Filter::Or::Or(const Or& other)
: AbstractCondition()
{
for (int i = 0; i < other.list.count(); ++i) {
if (!other.list[i])
continue;
else if (other.list[i]->type() == AbstractCondition::And)
list.append(new Filter::And(*static_cast<Filter::And*>(other.list[i])));
else if (other.list[i]->type() == AbstractCondition::Or)
list.append(new Filter::Or(*static_cast<Filter::Or*>(other.list[i])));
else
list.append(new Filter::Condition(*static_cast<Filter::Condition*>(other.list[i])));
}
}
bool Filter::Or::loadOdf(const KoXmlElement& parent)
{
KoXmlElement element;
AbstractCondition* condition;
forEachElement(element, parent) {
if (element.namespaceURI() != KoXmlNS::table)
continue;
if (element.localName() == "filter-and")
condition = new Filter::And();
else if (element.localName() == "filter-condition")
condition = new Filter::Condition();
else
continue;
if (condition->loadOdf(element))
list.append(condition);
else
delete condition;
}
return !list.isEmpty();
}
class Q_DECL_HIDDEN Filter::Private
{
public:
Private()
: condition(0)
, conditionSource(Self)
, displayDuplicates(true) {
}
AbstractCondition* condition;
Region targetRangeAddress;
enum { Self, CellRange } conditionSource;
Region conditionSourceRangeAddress;
bool displayDuplicates;
};
Filter::Filter()
: d(new Private)
{
}
Filter::Filter(const Filter& other)
: d(new Private)
{
if (!other.d->condition)
d->condition = 0;
else if (other.d->condition->type() == AbstractCondition::And)
d->condition = new And(*static_cast<And*>(other.d->condition));
else if (other.d->condition->type() == AbstractCondition::Or)
d->condition = new Or(*static_cast<Or*>(other.d->condition));
else
d->condition = new Condition(*static_cast<Condition*>(other.d->condition));
d->targetRangeAddress = other.d->targetRangeAddress;
d->conditionSource = other.d->conditionSource;
d->conditionSourceRangeAddress = other.d->conditionSourceRangeAddress;
d->displayDuplicates = other.d->displayDuplicates;
}
Filter::~Filter()
{
delete d->condition;
delete d;
}
void Filter::addCondition(Composition composition,
int fieldNumber, Comparison comparison, const QString& value,
Qt::CaseSensitivity caseSensitivity, Mode mode)
{
Condition* condition = new Condition(fieldNumber, comparison, value, caseSensitivity, mode);
if (!d->condition) {
d->condition = condition;
} else if (composition == AndComposition) {
if (d->condition->type() == AbstractCondition::And) {
static_cast<And*>(d->condition)->list.append(condition);
} else {
And* andComposition = new And();
andComposition->list.append(d->condition);
andComposition->list.append(condition);
d->condition = andComposition;
}
} else { // composition == OrComposition
if (d->condition->type() == AbstractCondition::Or) {
static_cast<Or*>(d->condition)->list.append(condition);
} else {
Or* orComposition = new Or();
orComposition->list.append(d->condition);
orComposition->list.append(condition);
d->condition = orComposition;
}
}
}
QList<AbstractCondition*> Filter::copyList(const QList<AbstractCondition*>& list)
{
QList<AbstractCondition*> out;
foreach (AbstractCondition* c, list) {
if (!c) {
continue;
} else if (c->type() == AbstractCondition::And) {
out.append(new Filter::And(*static_cast<Filter::And*>(c)));
} else if (c->type() == AbstractCondition::Or) {
out.append(new Filter::Or(*static_cast<Filter::Or*>(c)));
} else {
out.append(new Filter::Condition(*static_cast<Filter::Condition*>(c)));
}
}
return out;
}
void Filter::addSubFilter(Composition composition, const Filter& filter)
{
if (!d->condition) {
if (!filter.d->condition)
d->condition = 0;
else if (filter.d->condition->type() == AbstractCondition::And)
d->condition = new And(*static_cast<And*>(filter.d->condition));
else if (filter.d->condition->type() == AbstractCondition::Or)
d->condition = new Or(*static_cast<Or*>(filter.d->condition));
else // if (filter.d->condition->type() == AbstractCondition::Condition)
d->condition = new Condition(*static_cast<Condition*>(filter.d->condition));
} else if (composition == AndComposition) {
if (filter.d->condition && d->condition->type() == AbstractCondition::And) {
if (filter.d->condition->type() == AbstractCondition::And)
static_cast<And*>(d->condition)->list += copyList(static_cast<And*>(filter.d->condition)->list);
else if (filter.d->condition->type() == AbstractCondition::Or)
static_cast<And*>(d->condition)->list.append(new Or(*static_cast<Or*>(filter.d->condition)));
else // if (filter.d->condition->type() == AbstractCondition::Condition)
static_cast<And*>(d->condition)->list.append(new Condition(*static_cast<Condition*>(filter.d->condition)));
} else if (filter.d->condition) {
And* andComposition = new And();
andComposition->list.append(d->condition);
if (filter.d->condition->type() == AbstractCondition::And)
andComposition->list += copyList(static_cast<And*>(filter.d->condition)->list);
else if (filter.d->condition->type() == AbstractCondition::Or)
andComposition->list.append(new Or(*static_cast<Or*>(filter.d->condition)));
else // if (filter.d->condition->type() == AbstractCondition::Condition)
andComposition->list.append(new Condition(*static_cast<Condition*>(filter.d->condition)));
d->condition = andComposition;
}
} else { // composition == OrComposition
if (filter.d->condition && d->condition->type() == AbstractCondition::Or) {
if (filter.d->condition->type() == AbstractCondition::And)
static_cast<Or*>(d->condition)->list.append(new And(*static_cast<And*>(filter.d->condition)));
else if (filter.d->condition->type() == AbstractCondition::Or)
static_cast<Or*>(d->condition)->list += copyList(static_cast<Or*>(filter.d->condition)->list);
else // if (filter.d->condition->type() == AbstractCondition::Condition)
static_cast<Or*>(d->condition)->list.append(new Condition(*static_cast<Condition*>(filter.d->condition)));
} else if (filter.d->condition) {
Or* orComposition = new Or();
orComposition->list.append(d->condition);
if (filter.d->condition->type() == AbstractCondition::And)
orComposition->list.append(new And(*static_cast<And*>(filter.d->condition)));
else if (filter.d->condition->type() == AbstractCondition::Or)
orComposition->list += copyList(static_cast<Or*>(filter.d->condition)->list);
else // if (filter.d->condition->type() == AbstractCondition::Condition)
orComposition->list.append(new Condition(*static_cast<Condition*>(filter.d->condition)));
d->condition = orComposition;
}
}
}
QHash<QString, Filter::Comparison> Filter::conditions(int fieldNumber) const
{
return d->condition ? d->condition->conditions(fieldNumber) : QHash<QString, Comparison>();
}
void Filter::removeConditions(int fieldNumber)
{
if (fieldNumber == -1) {
// debugSheets <<"removing all conditions";
delete d->condition;
d->condition = 0;
return;
}
if (!d->condition)
return;
d->condition->removeConditions(fieldNumber);
if (d->condition->isEmpty()) {
delete d->condition;
d->condition = 0;
}
}
bool Filter::isEmpty() const
{
return d->condition ? d->condition->isEmpty() : true;
}
bool Filter::evaluate(const Database& database, int index) const
{
return d->condition ? d->condition->evaluate(database, index) : true;
}
bool Filter::loadOdf(const KoXmlElement& element, const Map* map)
{
if (element.hasAttributeNS(KoXmlNS::table, "target-range-address")) {
const QString address = element.attributeNS(KoXmlNS::table, "target-range-address", QString());
// only absolute addresses allowed; no fallback sheet needed
d->targetRangeAddress = Region(Odf::loadRegion(address), map);
if (!d->targetRangeAddress.isValid())
return false;
}
if (element.hasAttributeNS(KoXmlNS::table, "condition-source")) {
if (element.attributeNS(KoXmlNS::table, "condition-source", "self") == "cell-range")
d->conditionSource = Private::CellRange;
else
d->conditionSource = Private::Self;
}
if (element.hasAttributeNS(KoXmlNS::table, "condition-source-range-address")) {
const QString address = element.attributeNS(KoXmlNS::table, "condition-source-range-address", QString());
// only absolute addresses allowed; no fallback sheet needed
d->conditionSourceRangeAddress = Region(Odf::loadRegion(address), map);
}
if (element.hasAttributeNS(KoXmlNS::table, "display-duplicates")) {
if (element.attributeNS(KoXmlNS::table, "display-duplicates", "true") == "false")
d->displayDuplicates = false;
else
d->displayDuplicates = true;
}
KoXmlElement conditionElement;
forEachElement(conditionElement, element) {
if (conditionElement.localName() == "filter-and") {
d->condition = new And();
break;
} else if (conditionElement.localName() == "filter-or") {
d->condition = new Or();
break;
} else if (conditionElement.localName() == "filter-condition") {
d->condition = new Condition();
break;
}
}
if (!d->condition)
return false;
if (!d->condition->loadOdf(conditionElement.toElement())) {
delete d->condition;
d->condition = 0;
return false;
}
return true;
}
void Filter::saveOdf(KoXmlWriter& xmlWriter) const
{
if (!d->condition)
return;
xmlWriter.startElement("table:filter");
if (!d->targetRangeAddress.isEmpty())
xmlWriter.addAttribute("table:target-range-address", Odf::saveRegion(d->targetRangeAddress.name()));
if (d->conditionSource != Private::Self)
xmlWriter.addAttribute("table:condition-source", "cell-range");
if (!d->conditionSourceRangeAddress.isEmpty())
xmlWriter.addAttribute("table:condition-source-range-address", Odf::saveRegion(d->conditionSourceRangeAddress.name()));
if (!d->displayDuplicates)
xmlWriter.addAttribute("table:display-duplicates", "false");
d->condition->saveOdf(xmlWriter);
xmlWriter.endElement();
}
bool Filter::conditionsEquals(AbstractCondition* a, AbstractCondition* b)
{
if (!a || !b)
return a == b;
if (a->type() != b->type())
return false;
if (a->type() == AbstractCondition::And && *static_cast<And*>(a) != *static_cast<And*>(b))
return false;
if (a->type() == AbstractCondition::Or && *static_cast<Or*>(a) != *static_cast<Or*>(b))
return false;
if (a->type() == AbstractCondition::Condition && *static_cast<Condition*>(a) != *static_cast<Condition*>(b))
return false;
return true;
}
bool Filter::operator==(const Filter& other) const
{
if (d->targetRangeAddress != other.d->targetRangeAddress)
return false;
if (d->conditionSource != other.d->conditionSource)
return false;
if (d->conditionSourceRangeAddress != other.d->conditionSourceRangeAddress)
return false;
if (d->displayDuplicates != other.d->displayDuplicates)
return false;
return conditionsEquals(d->condition, other.d->condition);
}
void Filter::dump() const
{
if (d->condition)
debugSheets << "Condition:" + d->condition->dump();
else
debugSheets << "Condition: 0";
}
bool AbstractCondition::listsAreEqual(const QList<AbstractCondition *> &a, const QList<AbstractCondition *> &b)
{
if (a.size() != b.size()) return false;
for (int i = 0; i < a.size(); i++) {
if (!Filter::conditionsEquals(a[i], b[i]))
return false;
}
return true;
}
|