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 
75  std::ostream& os, bool optional, bool& startWithComma, int indentation, bool& wroteSomething) const {
76  node_left_->writeCfi(os, optional, startWithComma, indentation, wroteSomething);
77  }
78 
79  void ORGroupDescription::print_(std::ostream& os, bool optional, bool writeToCfi, DocFormatHelper& dfh) const {
80  if (dfh.parent() == DocFormatHelper::OR) {
81  dfh.decrementCounter();
82  node_left_->print(os, false, true, dfh);
83  node_right_->print(os, false, true, dfh);
84  return;
85  }
86 
87  if (dfh.pass() == 1) {
88  dfh.indent(os);
89  os << "OR group:";
90 
91  if (dfh.brief()) {
92  if (optional)
93  os << " optional";
94 
95  if (!writeToCfi)
96  os << " (do not write to cfi)";
97 
98  os << " see Section " << dfh.section() << "." << dfh.counter() << "\n";
99  }
100  // not brief
101  else {
102  os << "\n";
103  dfh.indent2(os);
104 
105  if (optional)
106  os << "optional";
107  if (!writeToCfi)
108  os << " (do not write to cfi)";
109  if (optional || !writeToCfi) {
110  os << "\n";
111  dfh.indent2(os);
112  }
113 
114  os << "see Section " << dfh.section() << "." << dfh.counter() << "\n";
115 
116  if (!comment().empty()) {
118  }
119  os << "\n";
120  }
121  }
122  }
123 
124  void ORGroupDescription::printNestedContent_(std::ostream& os, bool optional, DocFormatHelper& dfh) const {
125  if (dfh.parent() == DocFormatHelper::OR) {
126  dfh.decrementCounter();
127  node_left_->printNestedContent(os, false, dfh);
128  node_right_->printNestedContent(os, false, dfh);
129  return;
130  }
131 
132  int indentation = dfh.indentation();
133  if (dfh.parent() != DocFormatHelper::TOP) {
135  }
136 
137  std::stringstream ss;
138  ss << dfh.section() << "." << dfh.counter();
139  std::string newSection = ss.str();
140 
142  os << "Section " << newSection << " OR group description:\n";
144  if (optional) {
145  // An optional OR group is kind of pointless, it would be
146  // easier just make the parameters be independent optional parameters
147  // I only allow it to make the behavior analogous to the other groups
148  os << "This optional OR group requires at least one or none of the following to be in the PSet\n";
149  } else {
150  os << "This OR group requires at least one of the following to be in the PSet\n";
151  }
152  if (!dfh.brief())
153  os << "\n";
154 
155  DocFormatHelper new_dfh(dfh);
156  new_dfh.init();
157  new_dfh.setSection(newSection);
160 
161  node_left_->print(os, false, true, new_dfh);
162  node_right_->print(os, false, true, new_dfh);
163 
164  new_dfh.setPass(1);
165  new_dfh.setCounter(0);
166 
167  node_left_->print(os, false, true, new_dfh);
168  node_right_->print(os, false, true, new_dfh);
169 
170  new_dfh.setPass(2);
171  new_dfh.setCounter(0);
172 
173  node_left_->printNestedContent(os, false, new_dfh);
174  node_right_->printNestedContent(os, false, new_dfh);
175  }
176 
178  return node_left_->exists(pset) || node_right_->exists(pset);
179  }
180 
182 
184 
185  void ORGroupDescription::throwIfDuplicateLabels(std::set<std::string> const& labelsLeft,
186  std::set<std::string> const& labelsRight) const {
187  std::set<std::string> duplicateLabels;
188  std::insert_iterator<std::set<std::string> > insertIter(duplicateLabels, duplicateLabels.begin());
189  std::set_intersection(labelsLeft.begin(), labelsLeft.end(), labelsRight.begin(), labelsRight.end(), insertIter);
190  if (!duplicateLabels.empty()) {
191  std::stringstream ss;
192  for (std::set<std::string>::const_iterator iter = duplicateLabels.begin(), iEnd = duplicateLabels.end();
193  iter != iEnd;
194  ++iter) {
195  ss << " \"" << *iter << "\"\n";
196  }
197  throw edm::Exception(errors::LogicError) << "Labels used in a node of a ParameterSetDescription\n"
198  << "\"or\" expression must be not be the same as labels used\n"
199  << "in other nodes of the expression. The following duplicate\n"
200  << "labels were detected:\n"
201  << ss.str() << "\n";
202  }
203  }
204 
205  void ORGroupDescription::throwIfDuplicateTypes(std::set<ParameterTypes> const& types1,
206  std::set<ParameterTypes> const& types2) const {
207  if (!types1.empty()) {
208  std::set<ParameterTypes> duplicateTypes;
209  std::insert_iterator<std::set<ParameterTypes> > insertIter(duplicateTypes, duplicateTypes.begin());
210  std::set_intersection(types1.begin(), types1.end(), types2.begin(), types2.end(), insertIter);
211  if (!duplicateTypes.empty()) {
212  std::stringstream ss;
213  for (std::set<ParameterTypes>::const_iterator iter = duplicateTypes.begin(), iEnd = duplicateTypes.end();
214  iter != iEnd;
215  ++iter) {
216  ss << " \"" << parameterTypeEnumToString(*iter) << "\"\n";
217  }
219  << "Types used for wildcards in a node of a ParameterSetDescription\n"
220  << "\"or\" expression must be different from types used for other parameters\n"
221  << "in other nodes. The following duplicate types were detected:\n"
222  << ss.str() << "\n";
223  }
224  }
225  }
226 } // namespace edm
edm::DocFormatHelper::TOP
Definition: DocFormatHelper.h:17
edm::ORGroupDescription::writeCfi_
void writeCfi_(std::ostream &os, bool optional, bool &startWithComma, int indentation, bool &wroteSomething) const override
Definition: ORGroupDescription.cc:74
edm::DocFormatHelper::init
void init()
Definition: DocFormatHelper.cc:113
edm::DocFormatHelper::setCounter
void setCounter(int value)
Definition: DocFormatHelper.h:67
edm::ParameterDescriptionNode::exists
bool exists(ParameterSet const &pset) const
Definition: ParameterDescriptionNode.h:134
edm::ORGroupDescription::partiallyExists_
bool partiallyExists_(ParameterSet const &pset) const override
Definition: ORGroupDescription.cc:181
edm::ORGroupDescription::ORGroupDescription
ORGroupDescription(ParameterDescriptionNode const &node_left, ParameterDescriptionNode const &node_right)
Definition: ORGroupDescription.cc:13
edm::errors::LogicError
Definition: EDMException.h:37
edm
HLT enums.
Definition: AlignableModifier.h:19
edm::DocFormatHelper::setSection
void setSection(std::string const &value)
Definition: DocFormatHelper.h:44
edm::ORGroupDescription::throwIfDuplicateTypes
void throwIfDuplicateTypes(std::set< ParameterTypes > const &types1, std::set< ParameterTypes > const &types2) const
Definition: ORGroupDescription.cc:205
Types.optional
optional
Definition: Types.py:198
edm::DocFormatHelper::OR
Definition: DocFormatHelper.h:17
edm::DocFormatHelper::parent
DescriptionParent parent() const
Definition: DocFormatHelper.h:71
edm::parameterTypeEnumToString
std::string parameterTypeEnumToString(ParameterTypes iType)
Definition: ParameterDescriptionNode.cc:64
ORGroupDescription.h
EDMException.h
contentValuesCheck.ss
ss
Definition: contentValuesCheck.py:33
edm::DocFormatHelper
Definition: DocFormatHelper.h:15
clone
TEveGeoShape * clone(const TEveElement *element, TEveElement *parent)
Definition: eve_macros.cc:135
edm::ORGroupDescription::node_right_
edm::value_ptr< ParameterDescriptionNode > node_right_
Definition: ORGroupDescription.h:59
edm::DocFormatHelper::startColumn2
int startColumn2() const
Definition: DocFormatHelper.h:37
edm::ORGroupDescription::howManyXORSubNodesExist_
int howManyXORSubNodesExist_(ParameterSet const &pset) const override
Definition: ORGroupDescription.cc:183
edm::ParameterSet
Definition: ParameterSet.h:47
edm::DocFormatHelper::brief
bool brief() const
Definition: DocFormatHelper.h:34
edm::DocFormatHelper::wrapAndPrintText
static void wrapAndPrintText(std::ostream &os, std::string const &text, size_t indent, size_t suggestedWidth)
Definition: DocFormatHelper.cc:97
edm::ORGroupDescription::exists_
bool exists_(ParameterSet const &pset) const override
Definition: ORGroupDescription.cc:177
edm::DocFormatHelper::setParent
void setParent(DescriptionParent value)
Definition: DocFormatHelper.h:72
edm::DocFormatHelper::setIndentation
void setIndentation(int value)
Definition: DocFormatHelper.h:41
edm::DocFormatHelper::decrementCounter
void decrementCounter()
Definition: DocFormatHelper.h:69
edm::DocFormatHelper::indent
void indent(std::ostream &os) const
Definition: DocFormatHelper.cc:133
edm::ORGroupDescription::node_left_
edm::value_ptr< ParameterDescriptionNode > node_left_
Definition: ORGroupDescription.h:58
edm::DocFormatHelper::commentWidth
size_t commentWidth() const
Definition: DocFormatHelper.cc:123
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
edm::ORGroupDescription::printNestedContent_
void printNestedContent_(std::ostream &os, bool optional, DocFormatHelper &dfh) const override
Definition: ORGroupDescription.cc:124
edm::DocFormatHelper::indent2
void indent2(std::ostream &os) const
Definition: DocFormatHelper.cc:139
edm::ParameterDescriptionNode::printSpaces
static void printSpaces(std::ostream &os, int n)
Definition: ParameterDescriptionNode.cc:124
edm::DocFormatHelper::counter
int counter() const
Definition: DocFormatHelper.h:66
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
DocFormatHelper.h
edm::DocFormatHelper::offsetSectionContent
static int offsetSectionContent()
Definition: DocFormatHelper.h:83
edm::DocFormatHelper::pass
int pass() const
Definition: DocFormatHelper.h:46
relativeConstraints.empty
bool empty
Definition: relativeConstraints.py:46
Exception
Definition: hltDiff.cc:245
edm::ORGroupDescription::throwIfDuplicateLabels
void throwIfDuplicateLabels(std::set< std::string > const &labelsLeft, std::set< std::string > const &labelsRight) const
Definition: ORGroupDescription.cc:185
printContent_cfi.indentation
indentation
Definition: printContent_cfi.py:10
edm::DocFormatHelper::setPass
void setPass(int value)
Definition: DocFormatHelper.h:47
edm::ParameterDescriptionNode::comment
std::string const & comment() const
Definition: ParameterDescriptionNode.h:92
edm::DocFormatHelper::section
std::string const & section() const
Definition: DocFormatHelper.h:43
edm::ORGroupDescription::validate_
void validate_(ParameterSet &pset, std::set< std::string > &validatedLabels, bool optional) const override
Definition: ORGroupDescription.cc:56
edm::ParameterDescriptionNode
Definition: ParameterDescriptionNode.h:82
edm::ORGroupDescription::print_
void print_(std::ostream &os, bool optional, bool writeToCfi, DocFormatHelper &dfh) const override
Definition: ORGroupDescription.cc:79
edm::ORGroupDescription::checkAndGetLabelsAndTypes_
void checkAndGetLabelsAndTypes_(std::set< std::string > &usedLabels, std::set< ParameterTypes > &parameterTypes, std::set< ParameterTypes > &wildcardTypes) const override
Definition: ORGroupDescription.cc:29
muonDTDigis_cfi.pset
pset
Definition: muonDTDigis_cfi.py:27
edm::DocFormatHelper::indentation
int indentation() const
Definition: DocFormatHelper.h:36