CMS 3D CMS Logo

XORGroupDescription.cc
Go to the documentation of this file.
1 
5 
6 #include <ostream>
7 #include <iomanip>
8 
9 namespace edm {
10 
12  ParameterDescriptionNode const& node_right)
13  : node_left_(node_left.clone()), node_right_(node_right.clone()) {}
14 
15  XORGroupDescription::XORGroupDescription(std::unique_ptr<ParameterDescriptionNode> node_left,
16  ParameterDescriptionNode const& node_right)
17  : node_left_(std::move(node_left)), node_right_(node_right.clone()) {}
18 
20  std::unique_ptr<ParameterDescriptionNode> node_right)
21  : node_left_(node_left.clone()), node_right_(std::move(node_right)) {}
22 
23  XORGroupDescription::XORGroupDescription(std::unique_ptr<ParameterDescriptionNode> node_left,
24  std::unique_ptr<ParameterDescriptionNode> node_right)
25  : node_left_(std::move(node_left)), node_right_(std::move(node_right)) {}
26 
27  void XORGroupDescription::checkAndGetLabelsAndTypes_(std::set<std::string>& usedLabels,
28  std::set<ParameterTypes>& parameterTypes,
29  std::set<ParameterTypes>& wildcardTypes) const {
30  std::set<std::string> labelsLeft;
31  std::set<ParameterTypes> parameterTypesLeft;
32  std::set<ParameterTypes> wildcardTypesLeft;
33  node_left_->checkAndGetLabelsAndTypes(labelsLeft, parameterTypesLeft, wildcardTypesLeft);
34 
35  std::set<std::string> labelsRight;
36  std::set<ParameterTypes> parameterTypesRight;
37  std::set<ParameterTypes> wildcardTypesRight;
38  node_right_->checkAndGetLabelsAndTypes(labelsRight, parameterTypesRight, wildcardTypesRight);
39 
40  usedLabels.insert(labelsLeft.begin(), labelsLeft.end());
41  usedLabels.insert(labelsRight.begin(), labelsRight.end());
42 
43  parameterTypes.insert(parameterTypesRight.begin(), parameterTypesRight.end());
44  parameterTypes.insert(parameterTypesLeft.begin(), parameterTypesLeft.end());
45 
46  wildcardTypes.insert(wildcardTypesRight.begin(), wildcardTypesRight.end());
47  wildcardTypes.insert(wildcardTypesLeft.begin(), wildcardTypesLeft.end());
48  }
49 
50  void XORGroupDescription::validate_(ParameterSet& pset, std::set<std::string>& validatedLabels, bool optional) const {
51  int nExistLeft = node_left_->howManyXORSubNodesExist(pset);
52  int nExistRight = node_right_->howManyXORSubNodesExist(pset);
53  int nTotal = nExistLeft + nExistRight;
54 
55  if (nTotal == 0 && optional)
56  return;
57 
58  if (nTotal > 1) {
60  }
61 
62  if (nExistLeft == 1) {
63  node_left_->validate(pset, validatedLabels, false);
64  } else if (nExistRight == 1) {
65  node_right_->validate(pset, validatedLabels, false);
66  } else if (nTotal == 0) {
67  node_left_->validate(pset, validatedLabels, false);
68 
69  // When missing parameters get inserted, both nodes could
70  // be affected so we have to recheck both nodes.
71  nExistLeft = node_left_->howManyXORSubNodesExist(pset);
72  nExistRight = node_right_->howManyXORSubNodesExist(pset);
73  nTotal = nExistLeft + nExistRight;
74 
75  if (nTotal != 1) {
77  }
78  }
79  }
80 
82  std::ostream& os, bool optional, bool& startWithComma, int indentation, bool& wroteSomething) const {
83  node_left_->writeCfi(os, optional, startWithComma, indentation, wroteSomething);
84  }
85 
86  void XORGroupDescription::print_(std::ostream& os, bool optional, bool writeToCfi, DocFormatHelper& dfh) const {
87  if (dfh.parent() == DocFormatHelper::XOR) {
88  dfh.decrementCounter();
89  node_left_->print(os, false, true, dfh);
90  node_right_->print(os, false, true, dfh);
91  return;
92  }
93 
94  if (dfh.pass() == 1) {
95  dfh.indent(os);
96  os << "XOR group:";
97 
98  if (dfh.brief()) {
99  if (optional)
100  os << " optional";
101 
102  if (!writeToCfi)
103  os << " (do not write to cfi)";
104 
105  os << " see Section " << dfh.section() << "." << dfh.counter() << "\n";
106  }
107  // not brief
108  else {
109  os << "\n";
110  dfh.indent2(os);
111 
112  if (optional)
113  os << "optional";
114  if (!writeToCfi)
115  os << " (do not write to cfi)";
116  if (optional || !writeToCfi) {
117  os << "\n";
118  dfh.indent2(os);
119  }
120 
121  os << "see Section " << dfh.section() << "." << dfh.counter() << "\n";
122 
123  if (!comment().empty()) {
125  }
126  os << "\n";
127  }
128  }
129  }
130 
131  void XORGroupDescription::printNestedContent_(std::ostream& os, bool optional, DocFormatHelper& dfh) const {
132  if (dfh.parent() == DocFormatHelper::XOR) {
133  dfh.decrementCounter();
134  node_left_->printNestedContent(os, false, dfh);
135  node_right_->printNestedContent(os, false, dfh);
136  return;
137  }
138 
139  int indentation = dfh.indentation();
140  if (dfh.parent() != DocFormatHelper::TOP) {
142  }
143 
144  std::stringstream ss;
145  ss << dfh.section() << "." << dfh.counter();
146  std::string newSection = ss.str();
147 
149  os << "Section " << newSection << " XOR group description:\n";
151  if (optional) {
152  os << "This optional XOR group requires exactly one or none of the following to be in the PSet\n";
153  } else {
154  os << "This XOR group requires exactly one of the following to be in the PSet\n";
155  }
156  if (!dfh.brief())
157  os << "\n";
158 
159  DocFormatHelper new_dfh(dfh);
160  new_dfh.init();
161  new_dfh.setSection(newSection);
164 
165  node_left_->print(os, false, true, new_dfh);
166  node_right_->print(os, false, true, new_dfh);
167 
168  new_dfh.setPass(1);
169  new_dfh.setCounter(0);
170 
171  node_left_->print(os, false, true, new_dfh);
172  node_right_->print(os, false, true, new_dfh);
173 
174  new_dfh.setPass(2);
175  new_dfh.setCounter(0);
176 
177  node_left_->printNestedContent(os, false, new_dfh);
178  node_right_->printNestedContent(os, false, new_dfh);
179  }
180 
182  int nTotal = node_left_->howManyXORSubNodesExist(pset) + node_right_->howManyXORSubNodesExist(pset);
183  return nTotal == 1;
184  }
185 
187 
189  return node_left_->howManyXORSubNodesExist(pset) + node_right_->howManyXORSubNodesExist(pset);
190  }
191 
193  // Need to expand this error message to print more information
194  // I guess I need to print out the entire node structure of
195  // of the xor node and all the nodes it contains.
197  << "Exactly one parameter can exist in a ParameterSet from a list of\n"
198  << "parameters described by an \"xor\" operator in a ParameterSetDescription.\n"
199  << "This rule also applies in a more general sense to the other types\n"
200  << "of nodes that can appear within a ParameterSetDescription. Only one\n"
201  << "can pass validation as \"existing\".\n";
202  }
203 
205  // Need to expand this error message to print more information
206  // I guess I need to print out the entire node structure of
207  // of the xor node and all the nodes it contains.
209  << "Exactly one parameter can exist in a ParameterSet from a list of\n"
210  << "parameters described by an \"xor\" operator in a ParameterSetDescription.\n"
211  << "This rule also applies in a more general sense to the other types\n"
212  << "of nodes that can appear within a ParameterSetDescription. Only one\n"
213  << "can pass validation as \"existing\". This error has occurred after an\n"
214  << "attempt to insert missing parameters to fix the problem.\n";
215  }
216 } // namespace edm
int startColumn2() const
static void wrapAndPrintText(std::ostream &os, std::string const &text, size_t indent, size_t suggestedWidth)
bool exists_(ParameterSet const &pset) const override
int howManyXORSubNodesExist_(ParameterSet const &pset) const override
void print_(std::ostream &os, bool optional, bool writeToCfi, DocFormatHelper &dfh) const override
size_t commentWidth() const
void setCounter(int value)
void indent2(std::ostream &os) const
void validate_(ParameterSet &pset, std::set< std::string > &validatedLabels, bool optional) const override
void writeCfi_(std::ostream &os, bool optional, bool &startWithComma, int indentation, bool &wroteSomething) const override
void checkAndGetLabelsAndTypes_(std::set< std::string > &usedLabels, std::set< ParameterTypes > &parameterTypes, std::set< ParameterTypes > &wildcardTypes) const override
static int offsetSectionContent()
bool partiallyExists_(ParameterSet const &pset) const override
optional
Definition: Types.py:198
void setPass(int value)
std::string const & section() const
static void printSpaces(std::ostream &os, int n)
XORGroupDescription(ParameterDescriptionNode const &node_left, ParameterDescriptionNode const &node_right)
std::string const & comment() const
TEveGeoShape * clone(const TEveElement *element, TEveElement *parent)
Definition: eve_macros.cc:135
bool exists(ParameterSet const &pset) const
edm::value_ptr< ParameterDescriptionNode > node_left_
HLT enums.
void setSection(std::string const &value)
void indent(std::ostream &os) const
def move(src, dest)
Definition: eostools.py:511
void printNestedContent_(std::ostream &os, bool optional, DocFormatHelper &dfh) const override
void setParent(DescriptionParent value)
edm::value_ptr< ParameterDescriptionNode > node_right_
DescriptionParent parent() const
void setIndentation(int value)