RDKit
Open-source cheminformatics and machine learning.
XOrQuery.h
Go to the documentation of this file.
1 //
2 // Copyright (c) 2003-2020 Greg Landrum and Rational Discovery LLC
3 //
4 // @@ All Rights Reserved @@
5 // This file is part of the RDKit.
6 // The contents are covered by the terms of the BSD license
7 // which is included in the file license.txt, found at the root
8 // of the RDKit source tree.
9 //
10 #include <RDGeneral/export.h>
11 #ifndef RD_XORQUERY_H
12 #define RD_XORQUERY_H
13 
14 #include "Query.h"
15 
16 namespace Queries {
17 
18 //! a Query implementing XOR: requires exactly one child to be \c true
19 template <class MatchFuncArgType, class DataFuncArgType = MatchFuncArgType,
20  bool needsConversion = false>
22  : public Query<MatchFuncArgType, DataFuncArgType, needsConversion> {
23  public:
25  XOrQuery() { this->df_negate = false; }
26 
27  bool Match(const DataFuncArgType what) const override {
28  bool res = false;
29  typename BASE::CHILD_VECT_CI it1;
30  for (it1 = this->beginChildren(); it1 != this->endChildren(); ++it1) {
31  bool tmp = (*it1)->Match(what);
32  if (tmp) {
33  if (res) {
34  res = false;
35  break;
36  } else {
37  res = true;
38  }
39  }
40  }
41  if (this->getNegation()) res = !res;
42  return res;
43  }
44 
46  const override {
49 
50  typename BASE::CHILD_VECT_CI i;
51  for (i = this->beginChildren(); i != this->endChildren(); ++i) {
52  res->addChild(typename BASE::CHILD_TYPE(i->get()->copy()));
53  }
54  res->setNegation(this->getNegation());
55  res->d_description = this->d_description;
56  res->d_queryType = this->d_queryType;
57  return res;
58  }
59 };
60 } // namespace Queries
61 #endif
Base class for all queries.
Definition: Query.h:45
std::shared_ptr< Query< MatchFuncArgType, DataFuncArgType, needsConversion > > CHILD_TYPE
Definition: Query.h:48
void addChild(CHILD_TYPE child)
adds a child to our list of children
Definition: Query.h:102
std::string d_queryType
Definition: Query.h:150
void setNegation(bool what)
sets whether or not we are negated
Definition: Query.h:59
typename CHILD_VECT::const_iterator CHILD_VECT_CI
Definition: Query.h:51
std::string d_description
Definition: Query.h:149
a Query implementing XOR: requires exactly one child to be true
Definition: XOrQuery.h:22
Query< MatchFuncArgType, DataFuncArgType, needsConversion > * copy() const override
returns a copy of this Query
Definition: XOrQuery.h:45
Query< MatchFuncArgType, DataFuncArgType, needsConversion > BASE
Definition: XOrQuery.h:24
bool Match(const DataFuncArgType what) const override
Definition: XOrQuery.h:27
#define RDKIT_QUERY_EXPORT
Definition: export.h:549