CMS 3D CMS Logo

ORGroupDescription.cc
Go to the documentation of this file.
1 
5 
6 #include <algorithm>
7 #include <sstream>
8 #include <ostream>
9 #include <iomanip>
10 
11 namespace edm {
12 
14  ParameterDescriptionNode const& node_right)
15  : node_left_(node_left.clone()), node_right_(node_right.clone()) {}
16 
17  ORGroupDescription::ORGroupDescription(std::unique_ptr<ParameterDescriptionNode> node_left,
18  ParameterDescriptionNode const& node_right)
19  : node_left_(std::move(node_left)), node_right_(node_right.clone()) {}
20 
22  std::unique_ptr<ParameterDescriptionNode> node_right)
23  : node_left_(node_left.clone()), node_right_(std::move(node_right)) {}
24 
25  ORGroupDescription::ORGroupDescription(std::unique_ptr<ParameterDescriptionNode> node_left,
26  std::unique_ptr<ParameterDescriptionNode> node_right)
27  : node_left_(std::move(node_left)), node_right_(std::move(node_right)) {}
28 
29  void ORGroupDescription::checkAndGetLabelsAndTypes_(std::set<std::string>& usedLabels,
30  std::set<ParameterTypes>& parameterTypes,
31  std::set<ParameterTypes>& wildcardTypes) const {
32  std::set<std::string> labelsLeft;
33  std::set<ParameterTypes> parameterTypesLeft;
34  std::set<ParameterTypes> wildcardTypesLeft;
35  node_left_->checkAndGetLabelsAndTypes(labelsLeft, parameterTypesLeft, wildcardTypesLeft);
36 
37  std::set<std::string> labelsRight;
38  std::set<ParameterTypes> parameterTypesRight;
39  std::set<ParameterTypes> wildcardTypesRight;
40  node_right_->checkAndGetLabelsAndTypes(labelsRight, parameterTypesRight, wildcardTypesRight);
41 
42  throwIfDuplicateLabels(labelsLeft, labelsRight);
43  throwIfDuplicateTypes(wildcardTypesLeft, parameterTypesRight);
44  throwIfDuplicateTypes(wildcardTypesRight, parameterTypesLeft);
45 
46  usedLabels.insert(labelsLeft.begin(), labelsLeft.end());
47  usedLabels.insert(labelsRight.begin(), labelsRight.end());
48 
49  parameterTypes.insert(parameterTypesRight.begin(), parameterTypesRight.end());
50  parameterTypes.insert(parameterTypesLeft.begin(), parameterTypesLeft.end());
51 
52  wildcardTypes.insert(wildcardTypesRight.begin(), wildcardTypesRight.end());
53  wildcardTypes.insert(wildcardTypesLeft.begin(), wildcardTypesLeft.end());
54  }
55 
56  void ORGroupDescription::validate_(ParameterSet& pset, std::set<std::string>& validatedLabels, bool optional) const {
57  bool leftExists = node_left_->exists(pset);
58  bool rightExists = node_right_->exists(pset);
59 
60  if (leftExists || rightExists) {
61  if (leftExists)
62  node_left_->validate(pset, validatedLabels, false);
63  if (rightExists)
64  node_right_->validate(pset, validatedLabels, false);
65  return;
66  }
67 
68  if (optional)
69  return;
70 
71  node_left_->validate(pset, validatedLabels, false);
72  }
73 
74  void ORGroupDescription::writeCfi_(std::ostream& os,
75  bool optional,
76  bool& startWithComma,
77  int indentation,
79  bool& wroteSomething) const {
80  node_left_->writeCfi(os, optional, startWithComma, indentation, options, wroteSomething);
81  }
82 
83  void ORGroupDescription::print_(std::ostream& os, bool optional, bool writeToCfi, DocFormatHelper& dfh) const {
84  if (dfh.parent() == DocFormatHelper::OR) {
85  dfh.decrementCounter();
86  node_left_->print(os, false, true, dfh);
87  node_right_->print(os, false, true, dfh);
88  return;
89  }
90 
91  if (dfh.pass() == 1) {
92  dfh.indent(os);
93  os << "OR group:";
94 
95  if (dfh.brief()) {
96  if (optional)
97  os << " optional";
98 
99  if (!writeToCfi)
100  os << " (do not write to cfi)";
101 
102  os << " see Section " << dfh.section() << "." << dfh.counter() << "\n";
103  }
104  // not brief
105  else {
106  os << "\n";
107  dfh.indent2(os);
108 
109  if (optional)
110  os << "optional";
111  if (!writeToCfi)
112  os << " (do not write to cfi)";
113  if (optional || !writeToCfi) {
114  os << "\n";
115  dfh.indent2(os);
116  }
117 
118  os << "see Section " << dfh.section() << "." << dfh.counter() << "\n";
119 
120  if (!comment().empty()) {
122  }
123  os << "\n";
124  }
125  }
126  }
127 
128  void ORGroupDescription::printNestedContent_(std::ostream& os, bool optional, DocFormatHelper& dfh) const {
129  if (dfh.parent() == DocFormatHelper::OR) {
130  dfh.decrementCounter();
131  node_left_->printNestedContent(os, false, dfh);
132  node_right_->printNestedContent(os, false, dfh);
133  return;
134  }
135 
136  int indentation = dfh.indentation();
137  if (dfh.parent() != DocFormatHelper::TOP) {
139  }
140 
141  std::stringstream ss;
142  ss << dfh.section() << "." << dfh.counter();
143  std::string newSection = ss.str();
144 
146  os << "Section " << newSection << " OR group description:\n";
148  if (optional) {
149  // An optional OR group is kind of pointless, it would be
150  // easier just make the parameters be independent optional parameters
151  // I only allow it to make the behavior analogous to the other groups
152  os << "This optional OR group requires at least one or none of the following to be in the PSet\n";
153  } else {
154  os << "This OR group requires at least 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  return node_left_->exists(pset) || node_right_->exists(pset);
183  }
184 
186 
188 
189  void ORGroupDescription::throwIfDuplicateLabels(std::set<std::string> const& labelsLeft,
190  std::set<std::string> const& labelsRight) const {
191  std::set<std::string> duplicateLabels;
192  std::insert_iterator<std::set<std::string> > insertIter(duplicateLabels, duplicateLabels.begin());
193  std::set_intersection(labelsLeft.begin(), labelsLeft.end(), labelsRight.begin(), labelsRight.end(), insertIter);
194  if (!duplicateLabels.empty()) {
195  std::stringstream ss;
196  for (std::set<std::string>::const_iterator iter = duplicateLabels.begin(), iEnd = duplicateLabels.end();
197  iter != iEnd;
198  ++iter) {
199  ss << " \"" << *iter << "\"\n";
200  }
201  throw edm::Exception(errors::LogicError) << "Labels used in a node of a ParameterSetDescription\n"
202  << "\"or\" expression must be not be the same as labels used\n"
203  << "in other nodes of the expression. The following duplicate\n"
204  << "labels were detected:\n"
205  << ss.str() << "\n";
206  }
207  }
208 
209  void ORGroupDescription::throwIfDuplicateTypes(std::set<ParameterTypes> const& types1,
210  std::set<ParameterTypes> const& types2) const {
211  if (!types1.empty()) {
212  std::set<ParameterTypes> duplicateTypes;
213  std::insert_iterator<std::set<ParameterTypes> > insertIter(duplicateTypes, duplicateTypes.begin());
214  std::set_intersection(types1.begin(), types1.end(), types2.begin(), types2.end(), insertIter);
215  if (!duplicateTypes.empty()) {
216  std::stringstream ss;
217  for (std::set<ParameterTypes>::const_iterator iter = duplicateTypes.begin(), iEnd = duplicateTypes.end();
218  iter != iEnd;
219  ++iter) {
220  ss << " \"" << parameterTypeEnumToString(*iter) << "\"\n";
221  }
223  << "Types used for wildcards in a node of a ParameterSetDescription\n"
224  << "\"or\" expression must be different from types used for other parameters\n"
225  << "in other nodes. The following duplicate types were detected:\n"
226  << ss.str() << "\n";
227  }
228  }
229  }
230 } // namespace edm
void print_(std::ostream &os, bool optional, bool writeToCfi, DocFormatHelper &dfh) const override
int startColumn2() const
static void wrapAndPrintText(std::ostream &os, std::string const &text, size_t indent, size_t suggestedWidth)
edm::value_ptr< ParameterDescriptionNode > node_left_
bool exists_(ParameterSet const &pset) const override
std::string parameterTypeEnumToString(ParameterTypes iType)
size_t commentWidth() const
void setCounter(int value)
void indent2(std::ostream &os) const
void printNestedContent_(std::ostream &os, bool optional, DocFormatHelper &dfh) const override
int howManyXORSubNodesExist_(ParameterSet const &pset) const override
void throwIfDuplicateLabels(std::set< std::string > const &labelsLeft, std::set< std::string > const &labelsRight) const
static int offsetSectionContent()
optional
Definition: Types.py:245
void validate_(ParameterSet &pset, std::set< std::string > &validatedLabels, bool optional) const override
void setPass(int value)
bool partiallyExists_(ParameterSet const &pset) const override
std::string const & section() const
static void printSpaces(std::ostream &os, int n)
ORGroupDescription(ParameterDescriptionNode const &node_left, ParameterDescriptionNode const &node_right)
void throwIfDuplicateTypes(std::set< ParameterTypes > const &types1, std::set< ParameterTypes > const &types2) const
std::string const & comment() const
TEveGeoShape * clone(const TEveElement *element, TEveElement *parent)
Definition: eve_macros.cc:135
bool exists(ParameterSet const &pset) const
HLT enums.
void checkAndGetLabelsAndTypes_(std::set< std::string > &usedLabels, std::set< ParameterTypes > &parameterTypes, std::set< ParameterTypes > &wildcardTypes) const override
void setSection(std::string const &value)
void indent(std::ostream &os) const
edm::value_ptr< ParameterDescriptionNode > node_right_
def move(src, dest)
Definition: eostools.py:511
void setParent(DescriptionParent value)
cfi::CfiOptions CfiOptions
void writeCfi_(std::ostream &os, bool optional, bool &startWithComma, int indentation, CfiOptions &, bool &wroteSomething) const override
DescriptionParent parent() const
void setIndentation(int value)
std::vector< std::string > set_intersection(std::vector< std::string > const &v1, std::vector< std::string > const &v2)